大约有 26 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0027 秒)
... LayaAir提供两种计时器循环来执行代码块。 1. `Laya.timer.frameLoop`执行频率依赖于帧频率,可通过Stat.FPS查看当前帧频。 2. `Laya.timer.loop`执行频率依赖于参数指定时间。 ```javascript Laya.timer.frameLoop(1, this, animateFrameRateBased); Laya.stage...
来源: Laya2.0_文档 发布时间: 20210715
...器 LayaAir提供两种计时器循环来执行代码块。 1. `Laya.timer.frameLoop`执行频率依赖于帧频率,可通过Stat.FPS查看当前帧频。 1. `Laya.timer.loop`执行频率依赖于参数指定时间。 ```javascript Laya.timer.frameLoop(1, this, animateFrameRateBased); Laya.stage.o...
来源: Laya2.0_文档 发布时间: 20210715
...器 LayaAir提供两种计时器循环来执行代码块。 1. `Laya.timer.frameLoop`执行频率依赖于帧频率,可通过Stat.FPS查看当前帧频。 1. `Laya.timer.loop`执行频率依赖于参数指定时间。 ```typescript Laya.timer.frameLoop(1, this, this.animateFrameRateBased); Laya.st...
来源: Laya2.0_文档 发布时间: 20210714
...在Timer的循环里创建对象及复杂计算 由于Timer的`loop()`与`frameLoop()`方法里会不断的循环执行,当创建对象及复杂计算时,会导致大量的性能消耗出现在循环里,因此,尽可能不要在循环里创建对象及复杂计算。 ### 4、尽量少用auto...
来源: Laya2.0_文档 发布时间: 20210715
...在Timer的循环里创建对象及复杂计算 由于Timer的`loop()`与`frameLoop()`方法里会不断的循环执行,当创建对象及复杂计算时,会导致大量的性能消耗出现在循环里,因此,尽可能不要在循环里创建对象及复杂计算。 ### 4、尽量少用auto...
来源: Laya2.0_文档 发布时间: 20210714
...在Timer的循环里创建对象及复杂计算 由于Timer的`loop()`与`frameLoop()`方法里会不断的循环执行,当创建对象及复杂计算时,会导致大量的性能消耗出现在循环里,因此,尽可能不要在循环里创建对象及复杂计算。 ### 4、尽量少用auto...
来源: Laya2.0_文档 发布时间: 20210715
...erial = mat; //用于记录曝光强度 var exposureNumber = 0; Laya.timer.frameLoop(1, this, function() { //设置曝光强度 mat.exposure = Math.sin(exposureNumber += 0.01) + 1; mat.rotation += 0.01; }); })); ``` ![](img/1.gif)(图1)
来源: Laya2.0_文档 发布时间: 20210715
...erial = mat; //用于记录曝光强度 var exposureNumber = 0; Laya.timer.frameLoop(1, this, function() { //设置曝光强度 mat.exposure = Math.sin(exposureNumber += 0.01) + 1; mat.rotation += 0.01; }); })); ``` ![](img/1.gif)(图1)
来源: Laya2.0_文档 发布时间: 20210715
... mat; //用于记录曝光强度 var exposureNumber:Number = 0; Laya.timer.frameLoop(1, this, function():void { //设置曝光强度 mat.exposure = Math.sin(exposureNumber += 0.01) + 1; mat.rotation += 0.01; }); })); ``` ![](img/1.gif)(图1)
来源: Laya2.0_文档 发布时间: 20210715
...为了体现效果,我们移动盒子和摄影机观察效果 Laya.timer.frameLoop(1,this,function(){ //使用差速来体现移动 box.transform.translate(new Laya.Vector3(0,0.05,0),false); camera.transform.translate(new Laya.Vector3(0,04,0),false); }); })); ``` ![](img/3.gif)(图3)
来源: Laya2.0_文档 发布时间: 20210715