• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 66 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0032 秒)

21. 关于骨骼动画的复用问题 [ 88%]

...i",LayaWrap.creatHandlerCall(this,(aniClip)=>{ //创建动作状态 let state1 = new Laya.AnimatorState(); //动作名称 state1.name = "hello"; //动作播放起始时间 state1.clipStart = 0 / 90; //动作播放结束时间 state1.clipEnd = 90/ 90; //设置动作 state1.clip = aniClip; //设置...

来源: Laya_社区 发布时间: 20190613

22. iPhone6 ios 8.3系统 最新的QQ 锁屏再解锁 游戏闪退 [ 87%]

...直接贴代码吧 // 各种浏览器兼容 var hidden:String = "hidden", state:String = "visibilityState", visibilityChange:String = "visibilitychange"; var document:* = window.document; if (typeof document.hidden !== "undefined") { visibilityChange = "visibilitychange"; state = "visibilityState"; ...

来源: Laya_社区 发布时间: 20171011

23. Button点击函数逻辑bug [ 85%]

...& this._clickHandler.run(); return; } !this._selected && (this.state = Button.stateMap[e.type]); }上面逻辑当clickHander只执行一次的时候逻辑上有bug,Hander的run执行的时候如果只执行一次会被回收,这个时候button又持有引用,如果其他地方用...

来源: Laya_社区 发布时间: 20191112

24. Cannot read property 'toDefault' of undefined报错是什么原因 [ 85%]

...ya.PhasorSpriter3D(); } MousePickingScene.prototype.lateRender = function (state) { MousePickingScene.__super.prototype.lateRender.call(state); //从屏幕空间生成射线 this.point.elements[0] = Laya.stage.mouseX; this.point.elements[1] = Laya.stage.mouseY; this.camera.viewportPointToRay(this.po...

来源: Laya_社区 发布时间: 20170323

25. 资源加载(TypeScript-3D基础(TS)-LayaAir3D之资源加载) [ 84%]

...i", Laya.Handler.create(null, function(aniClip) { //创建动作状态 var state1 = new Laya.AnimatorState(); //动作名称 state1.name = "hello"; //动作播放起始时间 state1.clipStart = 0 / 581; //动作播放结束时间 state1.clipEnd = 581 / 581; //设置动作 state1.clip = aniClip; //...

来源: Laya2.0_文档 发布时间: 20210715

26. 关于3d项目中component的问题 [ 84%]

...e._initialize.call(this, owner); } CmpScript.prototype._update = function (state) { CmpScript.__super.prototype._update.call(this, state); if (this.owner) { this.x += 1; var translate = new Laya.Vector3(this.x, 500, 0); Laya.Utils3D.convert3DCoordTo2DScreenCoord(translate, convertTranslate); this.ow...

来源: Laya_社区 发布时间: 20161126

27. Laya.MovieClip() new的时候崩溃了,在线等,很急!!!! [ 83%]

...但不是必现的这是代码 //swf动画 createSWFAnimoton(strSWF,strImg,state):any{ this.swfAni = new Laya.MovieClip(); this.swfAni.load(strSWF,true,strImg); this.swfAni.x = (Laya.stage.width -1900) / 2; this.swfAni.y = (Laya.stage.height - 1200) / 2; this.swfAni.zOrder = 3; this.swfAni.loop = fa...

来源: Laya_社区 发布时间: 20170505

28. laya.spine.js问题以及spine.core.js问题 [ 82%]

...              spine-core-3.7.js问题: 代理里有语法错误,state  !== status   }, (state, responseText) => { this.errors[path] = `Couldn't load texture atlas ${path}: status ${status}, ${responseText}`; if (error) error(path, `Couldn't load texture atlas ${path}: status ${status...

来源: Laya_社区 发布时间: 20220122

29. 新手,如何看懂官方代码? [ 81%]

...不是var lastMouseX = NaN; CameraMoveScript.prototype._update = function (state){...}像这句,prototype是什么,_update 又是什么,这些都可以直接点出来的,但又查不到API,怎么学?还有state这参数又是什么,请问我要在哪查找或者说怎样查找到这类...

来源: Laya_社区 发布时间: 20170315

30. socket无法连接服务器 [ 81%]

...         return NetSocket._instance;         }         private state_: EConnectionState = EConnectionState.eDistconnected;         private initSocket(): void {             this.on(Laya.Event.OPEN, this, this.onConected);             this.on(Laya.Event.ERROR, this, this.on...

来源: Laya_社区 发布时间: 20170602