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

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

71. Laya.loader.load怎么停止回调 [ 67%]

...人 150*****705 相关问题 骨骼动画播放完后的回调时间 Laya.timer.loop()如何停止 ios原生回调问题 求教: soundManager如何停止正在播放的背景音乐 Laya拖尾怎么停止或清除,比如要瞬移角色的时候停止。伤脑壳~~!! 使用FBXTools转换文件...

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

72. 摄像机lookAt如何围绕一个模型做Tween动画? [ 67%]

摄像机lookAt如何围绕一个模型做Tween动画? var y = 1; Laya.timer.frameLoop(30, this, function () { y = y + 1; camera.transform.lookAt(model.transform.position, new Laya.Vector3(0, 1, 0), false); camera.transform.rotate(new Laya.Vector3(0, y, 3), false, false); }); 我想让摄像机...

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

73. 要做一个方形倒计时,请问该怎么实现,不知道该怎么做 [ 67%]

...Game.GetServerTime() : startTime_ ); this.endTime = startTime + time; Laya.timer.loop(1,this,ef); isCd = true; } public function stop():void { this.set360(-1); Laya.timer.clear(this,ef); isCd = false; } } }   2017-11-24 1 2 分享 微博 QZONE 微信 wudi199553 赞同来自: 计时器属于简单...

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

74. lose skin null [ 67%]

...yer value can be null. 射线检测报错,outHitInfo.sprite3D=null; Laya.timer.loop() 报错 Cannot read property 'loop' of null Laya.stage报null 问题状态 最新活动: 2018-01-27 15:19 浏览: 2146 关注: 2 人 helegame • 2018-01-29 20:26 好 谢谢 ssss111 • 2018-03-28 20:47 没显示...

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

75. CPU优化方式(ActionScript-2D进阶篇(AS3)-性能优化) [ 66%]

...器 ​ LayaAir提供两种计时器循环来执行代码块。 1. `Laya.timer.frameLoop`执行频率依赖于帧频率,可通过Stat.FPS查看当前帧频。 2. `Laya.timer.loop`执行频率依赖于参数指定时间。 ```javascript Laya.timer.frameLoop(1, this, animateFrameRateBased); Laya.s...

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

76. CPU优化方式(TypeScript-2D进阶篇(TS)-性能优化) [ 66%]

...计时器 LayaAir提供两种计时器循环来执行代码块。 1. `Laya.timer.frameLoop`执行频率依赖于帧频率,可通过Stat.FPS查看当前帧频。 1. `Laya.timer.loop`执行频率依赖于参数指定时间。 ```typescript Laya.timer.frameLoop(1, this, this.animateFrameRateBased); L...

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

77. laya1.0 绘制物理引擎? [ 66%]

...PDynamic.b2DebugDraw.e_jointBit); this.world.SetDebugDraw(debugDraw); Laya.timer.loop(1000/60,this,this.updateWorld); }    this.world.Step(1/30,10,10); this.world.DrawDebugData(); this.world.ClearForces(); // 清除作用力   不知道有什么办法 可以绘制出来 看看效果.... 2019-04-0...

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

78. 关于资源回收的问题 [ 66%]

关于资源回收的问题 JS下的Timer这个类,还有Tween,执行完后是否需要手动调用释放资源还是依赖的caller在destroy阶段会释放掉这部分资源?如果需要手动回收的话,调用clear和clearAll即可还是需要调用其他函数? Video的对象destroy...

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

79. var mid=method.$_TID || (method.$_TID=(this._mid++)*100000); [ 66%]

...l不能使用 reflection error: can not find method signature 反射错误 Timer.clear清理同caller同method的多个loop 问题状态 最新活动: 2019-05-21 20:59 浏览: 815 关注: 2 人

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

80. 两个物体 ,如果在update里修改其中一个物体的rotationEuler,会触发另一个物体的onTriggerEnter回调 [ 66%]

...tPosEnemy; // 调用这个方法会触发 onTriggerEnter BUG,看下面Laya.timer.loop里的注释 let pTriggerBug = function () { let vRE = pEnemyObj.transform.rotationEuler; // 这个值估计改成多少都会触发这个BUG vRE.y = -166; pEnemyObj.transform.rotationEuler = vRE; } setTimeout(() =&...

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