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

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

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. SkyBoxMaterial材质详解(TypeScript-3D基础(TS)-天空材质详解) [ 97%]

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

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

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

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

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

7. 内存优化方式(JavaScript-2D进阶篇(JS)-性能优化) [ 68%]

...ALL; //背景颜色 Laya.stage.bgColor = "#232628"; //帧循环 Laya.timer.frameLoop(1, this, onFrame); this.createTime = 0; function onFrame() { //如果创建对象时间为100帧间隔后 if (this.createTime >= 100) { //每200帧间隔创建30个雪花 for (var i = 0; i 640 + 20 || img1.scaleX ...

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

8. 内存优化方式(TypeScript-2D进阶篇(TS)-性能优化) [ 68%]

...ALL; //背景颜色 Laya.stage.bgColor = "#232628"; //帧循环 Laya.timer.frameLoop(1, this, this.onFrame); } onFrame(): void { //如果创建对象时间为100帧间隔后 if (this.createTime >= 100) { //每200帧间隔创建30个雪花 for (var i: number = 0; i 640+20||img1.scaleX 在一些特殊...

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

9. 内存优化方式(ActionScript-2D进阶篇(AS3)-性能优化) [ 67%]

...ALL; //背景颜色 Laya.stage.bgColor = "#232628"; //帧循环 Laya.timer.frameLoop(1,this,onFrame); } private function onFrame():void { //如果创建对象时间为100帧间隔后 if(createTime>=100) { //每200帧间隔创建30个雪花 for(var i:int=0;i640+20||img1.scaleX(图2-1) 在一些...

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