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

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

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

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

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

2. CPU优化方式(JavaScript-2D进阶篇(JS)-性能优化) [ 99%]

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

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

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

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

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

4. 其它优化策略(JavaScript-2D进阶篇(JS)-性能优化) [ 97%]

...在Timer的循环里创建对象及复杂计算 由于Timer的`loop()`与`frameLoop()`方法里会不断的循环执行,当创建对象及复杂计算时,会导致大量的性能消耗出现在循环里,因此,尽可能不要在循环里创建对象及复杂计算。 ### 4、尽量少用auto...

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

5. 其它优化策略(TypeScript-2D进阶篇(TS)-性能优化) [ 97%]

...在Timer的循环里创建对象及复杂计算 由于Timer的`loop()`与`frameLoop()`方法里会不断的循环执行,当创建对象及复杂计算时,会导致大量的性能消耗出现在循环里,因此,尽可能不要在循环里创建对象及复杂计算。 ### 4、尽量少用auto...

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

6. 其它优化策略(ActionScript-2D进阶篇(AS3)-性能优化) [ 96%]

...在Timer的循环里创建对象及复杂计算 由于Timer的`loop()`与`frameLoop()`方法里会不断的循环执行,当创建对象及复杂计算时,会导致大量的性能消耗出现在循环里,因此,尽可能不要在循环里创建对象及复杂计算。 ### 4、尽量少用auto...

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

7. SkyBoxMaterial材质详解(TypeScript-3D基础(TS)-天空材质详解) [ 84%]

...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

8. SkyBoxMaterial材质详解(JavaScript-3D基础(JS)-天空材质详解) [ 84%]

...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

9. SkyBoxMaterial材质详解(ActionScript-3D基础(AS3)-天空材质详解) [ 83%]

... 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

10. 在Unity中导出拖尾系统(JavaScript-3D基础(JS)-LayaAir3D之拖尾系统) [ 77%]

...为了体现效果,我们移动盒子和摄影机观察效果 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