大约有 21 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0031 秒)
...式都有这个问题 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
...请: 与内容相关的链接 提交 1 个回复 bpmf_d 赞同来自: Laya.timer.delta 这个可以拿到两帧之前的时间间隔 然后处理一下就ok了 2019-05-10 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 暖暖 相关问题...
来源: Laya_社区 发布时间: 20181207
...在physics中没有找到这个api,怎么获取这个值呀,就像Laya.timer.delta这种一样
来源: Laya_社区 发布时间: 20181224
...现象 2017-06-24 0 0 分享 微博 QZONE 微信 183*****755 赞同来自: Timer.delta,是两帧率之间的间隔时间,加上这个变量即可。 2017-07-01 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 q755456 相关问题 微...
来源: Laya_社区 发布时间: 20170610
... 2017-11-09 1 2 分享 微博 QZONE 微信 ymsdandan 赞同来自: 你在Timer方法中可以找到这个只读方法可以知道调用间隔,但是不能设置调用时间 2017-11-09 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经被锁定, 无法添...
来源: Laya_社区 发布时间: 20171109
...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
...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
...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
...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
...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