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

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

1. 陀螺仪与加速计 · LayaAir3.0文档 · LAYABOX [ 100%]

... rotationInfo: Laya.RotationInfo): void { this.info.text = "alpha:" + Math.floor(rotationInfo.alpha) + '\n' + "beta :" + Math.floor(rotationInfo.beta) + '\n' + "gamma:" + Math.floor(rotationInfo.gamma); } } new Gyroscope_Sample(); 2、加速计 ​ Accelerator类定期发送设备的运动传感器...

来源: Laya3.0_文档 发布时间: 20230303

2. 3D灯光与阴影 · LayaAir3.0文档 · LAYABOX [ 59%]

...Z值会影响Cluster接受区域光(点光、聚光)影响的数量,Math.floor(2048 / lightClusterCount.z - 1) * 4 为每个Cluster的最大平均接受区域光数量,如果每个Cluster所接受光源影响的平均数量大于该值,则较远的Cluster会忽略其中多余的光照影响。...

来源: Laya3.0_文档 发布时间: 20241014

3. 3D寻路 · LayaAir3.0文档 · LAYABOX [ 57%]

... cellZ = this.terrainSprite.depth / this.aStarMap.height; var gridX = Math.floor((x - minX) / cellX); var gridZ = Math.floor((z - minZ) / cellZ); var boundWidth = this.aStarMap.width - 1; var boundHeight = this.aStarMap.height - 1; (gridX > boundWidth) && (gridX = boundWidth); (gridZ >...

来源: Laya3.0_文档 发布时间: 20230303

4. 进度条组件 · LayaAir3.0文档 · LAYABOX [ 56%]

...ber): void { // 控制台打印输出进度 console.log("进度:" + Math.floor(value * 100) + "%"); } } 示例效果如下: (动图2-1) ProgressBar的其他属性也可以通过代码来设置,上述示例演示了如何通过代码创建ProgressBar,有兴趣的开发者可以自己通...

来源: Laya3.0_文档 发布时间: 20241014

5. 缓动 · LayaAir3.0文档 · LAYABOX [ 41%]

...动对象 */ private updateColor(txt:Laya.Text):void{ var c:number = Math.floor(Math.random()*3); switch (c) { case 0: txt.color = "#eee000"; break; case 1: txt.color = "#ffffff"; break; case 2: txt.color = "#ff0000"; break; default: txt.color = "#eee000"; break; } } 代码运行时,由于update...

来源: Laya3.0_文档 发布时间: 20241014

6. 项目设置详解 · LayaAir3.0文档 · LAYABOX [ 34%]

...值会决定Cluster受区域光(点光、聚光)影响的数量,Math.floor(2048 / lightClusterCount.z - 1) * 4 为每个Cluster的最大平均接受区域光数量,如果每个Cluster所接受光源影响的平均数量大于该值,则较远的Cluster会忽略其中多余的光照影响。 ...

来源: Laya3.0_文档 发布时间: 20241014

7. 缓存工具-layadcc · LayaAir3.0文档 · LAYABOX [ 29%]

...rl, localfile, (total, now, speed) => { console.log(`downloading:${Math.floor((now / total) * 100)}`) return false;0 }, (curlret, httpret) => { if (curlret != 0 || httpret < 200 || httpret >= 300) { resolve(null); } else { resolve(localfile); } }, 10, 100000000); } ); } let zipfile = awa...

来源: Laya3.0_文档 发布时间: 20241024