大约有 4,338 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0074 秒)
Laya_社区(2450) Laya3.0_api(673) Laya2.0_api(357) laya_api(289) Laya2.0_文档(271) Laya_示例(157) Laya2.0_示例(116) Laya3.0_文档(25)
...line && this.drawUnderline(textAlgin,x,y,i); __proto.drawUnderline=function(align,x,y,lineIndex){ var lineWidth=this._lineWidths[lineIndex]; switch (align){ case 'center': ...
来源: Laya_社区 发布时间: 20171019
...ity:Vector3重力值。Constructor DetailPhysics3DUtils()Constructorpublic function Physics3DUtils() 创建一个 Physics 实例。 Method DetailgetIColliderCollision()method public static function getIColliderCollision(collider1:PhysicsComponent, collider2:PhysicsComponent):Boolean 获取是否忽...
来源: Laya2.0_api 发布时间: 20190513
...aterialScene/Showcase.ls")); scene.once(Laya.Event.HIERARCHY_LOADED, this, function () { var camera = scene.getChildByName("Main Camera"); camera.addComponent(CameraMoveScript); camera.clearFlag = Laya.BaseCamera.CLEARFLAG_SKY; var skyBox = new Laya.SkyBox(); camera.sky = skyBox; skyBox.textureCube ...
来源: Laya_示例 发布时间: 20241128
...t; public class MainUi extends Sprite { private var testPan:Sprite; public function MainUi() { super(); this.graphics.drawRect(0,0,500,500,"#fff0cc"); testPan = new Sprite(); testPan.name = "testPan"; this.addChild( testPan ); testPan.pos( 300,300); testPan.graphics.drawRect(0,0,90,100,"#faaff0"); t...
来源: Laya_社区 发布时间: 20161124
... * @return 动画片段。 */ public function getClip(playName:String):AnimationClip { var index:int = _clipNames.indexOf(playName); if (index !== -1) { return _clips[index]; ...
来源: Laya_社区 发布时间: 20180425
...ueContainsError); trace("\n"); proessXML(xmlValue); } // 使用xml private function proessXML(source:String):void { try { var xml:XmlDom = Utils.parseXMLFromString(source); } catch (e:Error) { trace(e.massage); return; } printDirectChildren(xml); } // 打印直接子级 private function printDirectC...
来源: Laya2.0_示例 发布时间: 20241128
...如下: module.js:472 throw err; ^ Error: Cannot find module 'colors' at Function.Module._resolveFilename (module.js:470:15) at Function.Module._load (module.js:418:25) at Module.require (module.js:498:17) at require (internal/module.js:20:19) at Object.<anonymous> 请问怎么解决? 2017...
来源: Laya_社区 发布时间: 20170827
...url为“”的时候,会执行this.onLoaded(null)这一步_ _proto.load=function(url,type,cache,group,ignoreCache,useWorkerLoader){ (cache===void 0)&& (cache=true); (ignoreCache===void 0)&& (ignoreCache=false); (useWorkerLoader===voi...
来源: Laya_社区 发布时间: 20200427
...layaair中特别的语法规则在哪里统一可以找到 var LoginView = function () { LoginView.super(this); this.btnReg.on(Laya.Event.CLICK, null, function () { console.log("on btReg event") }); } 目前编辑的代码辅助,好像还是无法获得父类的...
来源: Laya_社区 发布时间: 20170317
...gb2312 unicode转换表然后,自己写算法查找和装换吧. public function readMultiByte (length:int, charSet:String):String { if(charSet=="UNICODE" || charSet=="unicode") { return readUnicode(length); ...
来源: Laya_社区 发布时间: 20160606