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

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

21. ProgressBar属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 62%]

...调***/ private function onChange(value:Number):void { trace("进度:" + Math.floor(value * 100) + "%"); } } } ```

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

22. 进度条组件 · LayaAir3.0文档 · LAYABOX [ 61%]

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

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

23. LayaAir和原生DOM交互(ActionScript-2D进阶篇(AS3)-扩展模块) [ 50%]

...yBuffer.getChannelData(channel); for (var i = 0; i < frameCount; i++) { // Math.random() is in [0; 1.0] // audio needs to be in [-1.0; 1.0] nowBuffering[i] = Math.random() * 2 - 1; } } // Get an AudioBufferSourceNode. // This is the AudioNode to use when we want to play an AudioBuffer var source = a...

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

24. 和原生Dom交互 · LayaAir3.0文档 · LAYABOX [ 50%]

...ffer.getChannelData(channel); for (var i = 0; i &lt; frameCount; i++) { // Math.random() is in [0; 1.0] // audio needs to be in [-1.0; 1.0] nowBuffering[i] = Math.random() * 2 - 1; } } // Get an AudioBufferSourceNode. // This is the AudioNode to use when we want to play an AudioBuffer var source = a...

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

25. runTime使用(ActionScript-IDE篇(AS3)-组件化开发相关) [ 48%]

...e game { import laya.display.Sprite; import laya.events.Event; import laya.maths.Rectangle; import laya.ui.Button; import laya.ui.Image; import laya.utils.Tween; /** *ImageRunTime逻辑类 * @author mengjia * */ public class ImageRunTime extends Button { //缩放时间100毫秒 public var scaleTime:...

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

26. 【简单跑酷--JS版】---Lv.6 终篇 [ 47%]

...整个素材是 32 * 20 拼起来的 this.y = 32 * 6 + 32 * parseInt(8 * Math.random()); if(this.bg == null){ //贴图纹理 this.bgTexture = Laya.loader.getRes("res/floor.png"); this.bg = new laya.display.Sprite(); this.bg.graphics.clear(); this.addChild(this.bg); //因为上面的图片是截取...

来源: Laya_社区 发布时间: 20160803

27. 【简单跑酷--JS版】---Lv.5 玩家踩地板 [ 45%]

...整个素材是 32 * 20 拼起来的 this.y = 32 * 6 + 32 * parseInt(8 * Math.random()); if(this.bg == null){ //贴图纹理 this.bgTexture = Laya.loader.getRes("res/floor.png"); this.bg = new laya.display.Sprite(); this.bg.graphics.clear(); this.addChild(this.bg); //因为上面的图片是截取...

来源: Laya_社区 发布时间: 20160801

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

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

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