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

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

61. ProgressBar属性详解(JavaScript-IDE篇(JS)-IDE组件属性详解) [ 49%]

...value += 0.05; } function onChange(value) { console.log("进度:" + Math.floor(value * 100) + "%"); } })(); ```

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

62. 微信小游戏提审后,提示说代码侵权 [ 49%]

...tr.substr(len, str.length - len - 1); console.log(name); let number = Math.floor(Math.random() * 9999); let name2; let lastIndex = name.lastIndexOf("_"); if(lastIndex == -1){ name2 = name + "_" + number; }else{ name2 = name.substr(0, lastIndex) + "_" + number; } let name2s = name2 + "("; //phpConten...

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

63. ProgressBar属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 48%]

...; } private onChange(value: number): void { console.log("进度:" + Math.floor(value * 100) + "%"); } } } new laya.UI_ProgressBar(); ```

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

64. laya.d3.webxr.core.WebXRExperienceHelper_API3.0 [ 48%]

...ode referenceSpaceType: string referenceType = "viewer" | "local" | "local-floor" | "unbounded"; cameraInfo: WebXRCameraInfo WebXRCameraInfo webXRCamera设置 Returns Promise<WebXRSessionManager> Promise Static setWebXRCamera setWebXRCamera(camera: Camera, manager: WebXRSessionManager): WebXRC...

来源: Laya3.0_api 发布时间: 20231115

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

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

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

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

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

67. 如何在游戏入口处获取对象的子对象 [ 47%]

...取通行层 console.log(this.pass); } _proto.getLayer = function() { this.floor = this.map.getLayerByIndex(0);//获取通行层 console.log(this.pass); } console.log(this.map) return loadMap; })(Sprite);**游戏主入口** var Main = (function (){ (function Main(){ Laya.init(448,448); var map1 = ne...

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

68. 发布微信小游戏,sprite的graphics.drawPoly安卓平台会引起花屏 [ 47%]

...ush(0, h); g.drawPoly(0, 0, points, "#FFFFFF"); this._fguiPro.value = Math.floor(this._index / w * 100); this._index += 8; //移动到这里 if (this._index >= 642) { this._index = 0; } ceshiDemo.zip 2022-11-17 0 3 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问...

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

69. 进度条组件 · LayaAir3.0文档 · LAYABOX [ 47%]

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

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

70. JS进度条加载问题 [ 46%]

...ogressBar); onchange(); } function onChange(value) { trace("进度: "+Math.floor(value*100)+"%"); } function onProgress(pro) { trace("加载了总文件的:"+pro+"%") progressBar.value=pro; if(progressBar.value==1) { progressBar.value=1; } } }() 他那个回调函数 值我具体应该new谁怎么...

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