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

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

11. 真机下运行帧率不稳定 [ 58%]

...式都有这个问题  class Scene_Test { constructor() { super(); Laya.timer.frameLoop(1,this,this.update); } private update() { let dt = Laya.timer.delta / 1000; console.log("dt="+dt); } } 附件中图1是在iphone6上面运行打印的信息,图2是在模拟下运行打印的信息。   请...

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

12. 请问确定帧率的关键变量是什么 [ 58%]

...请: 与内容相关的链接 提交 1 个回复 bpmf_d 赞同来自: Laya.timer.delta 这个可以拿到两帧之前的时间间隔 然后处理一下就ok了 2019-05-10 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 暖暖 相关问题...

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

13. 怎么获取Box2D物理世界的刷新频率 [ 57%]

...在physics中没有找到这个api,怎么获取这个值呀,就像Laya.timer.delta这种一样

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

14. 如何实现类似unity3dFixedUpdate的每秒固定的帧 [ 53%]

...现象 2017-06-24 0 0 分享 微博 QZONE 微信 183*****755 赞同来自: Timer.delta,是两帧率之间的间隔时间,加上这个变量即可。 2017-07-01 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 q755456 相关问题 微...

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

15. 脚本组件继承于 Laya.Script。 其中的_update方法,多长时间会调用一次? 可以设置调用时间吗? [ 50%]

... 2017-11-09 1 2 分享 微博 QZONE 微信 ymsdandan 赞同来自: 你在Timer方法中可以找到这个只读方法可以知道调用间隔,但是不能设置调用时间 2017-11-09 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经被锁定, 无法添...

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

16. 自定义渲染后,customRender里设置uniform值在ui节点下不生效 [ 49%]

...lightTime")                 gl.uniform1f(u_lightTime, this.timerCount)                 this.timerCount += Laya.timer.delta/1000             }             context.ctx.setIBVB(x, y,this.iBuffer, this.vBuffer,this.iNum,null,this.shader,this.shader...

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

17. 3d中 缓动往一个点转向并移动的问题 [ 48%]

...nLookAt(dir,Vector3.Up,out); Quaternion.slerp(transform.rotation,out, Laya.timer.delta/1000,out1); transform.rotation = out1; transform.translate(v3)   附件中是unity的效果  2018-07-26 添加评论 已悬赏5元 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相...

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

18. 2.0版本可用的CameraMoveScript.ts [ 44%]

...erride*/ onUpdate(): void {         var elapsedTime: number = Laya.timer.delta;         if (!isNaN(this.lastMouseX) && !isNaN(this.lastMouseY) && this.isMouseDown) {             var scene: Laya.Scene3D = this.owner.scene;             var offset...

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

19. 3D中摄像机绕物体旋转该如何实现? [ 37%]

...e.mouseY - this.lastMouseY; } public get deltaTime(): number { return Laya.timer.delta / 1000; } public deltaWheel: number = 0; public FORWORD: Vector3 = new Vector3(); public get GetForward(): Vector3 { this.transform.getForward(this.FORWORD); return this.FORWORD } protected lastMouseX: number = 0;...

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

20. 官方案例里摄像机绕物体旋转脚本的问题 [ 37%]

...e.mouseY - this.lastMouseY; } public get deltaTime(): number { return Laya.timer.delta / 1000; } public deltaWheel: number = 0; public FORWORD: Vector3 = new Vector3(); public get GetForward(): Vector3 { this.transform.getForward(this.FORWORD); return this.FORWORD } protected lastMouseX: number = 0;...

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