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

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

81. zip更新模式缓存是怎么读取的?? [ 40%]

... (total:number,now:number,speed:number)=>{ onEvent('downloading',Math.floor((now/total)*100),null); return false; }, //完成回调 (curlret:number,httpret:number)=>{ if(curlret!=0 || httpret<200||httpret>=300){ onEvent('downloadError'); //throw 'download error'; }else{ onEvent('download...

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

82. js环境下使用Loader加载图片在Sprite对象的.on函数无效 [ 38%]

...ng(progress)     {         console.log("加载进度: " + Math.floor(progress*100)+"%");     }     function onError(err)     {         console.log("加载失败: " + err);     }     function readnext(){         console.log("readnext");         ...

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

83. 自从layaflash起,就一直存在的bug [ 37%]

...画卡住 2. 如图2所示,这段代码有问题 3. 如图3所示,把floor改成round,动画正常播放     另外一个非常重要的建议: 2.2的layaair,as3.0已经不开源了吗?希望能继续开源。。。。。。 因为有些bug还得手动改底层进行测试,是自己...

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

84. 【简单跑酷--JS版】---Lv.4 添加玩家 [ 34%]

...]; asset.push({ url : [ "res/background.png", "res/m_background.png", "res/floor.png" ], type : Laya.Loader.IMAGE }); //加载图集资源 asset.push({ url:"res/player.json", type : Laya.Loader.ATLAS }); //加载图集资源 Laya.loader.load(asset, laya.utils.Handler.create(this, onLoaded), laya.uti...

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

85. ts加密md5码封装 [ 31%]

..., 6, 10, 15, 21, 6, 10, 15, 21, 6, 10, 15, 21 ] T(i: number) { return Math.floor(Math.pow(2, 32) * Math.abs(Math.sin(i + 1))); } x_index(i: number) { if (i >= 0 && i <= 15) return i; if (i >= 16 && i <= 31) return (5 * i + 1) % 16; if (i >= 32 && i <= 47) re...

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

86. laya.d3.webxr.core.WebXRSessionManager_API3.0 [ 30%]

...he xr session Parameters Default value referenceSpaceType: string = "local-floor" space to set Returns Promise<any> a promise that will resolve once the reference space has been set updateRenderStateAsync updateRenderStateAsync(state: any): any Defined in laya/d3/WebXR/core/WebXRSessionManager...

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

87. 缓动动画(JavaScript-LayaAir基础篇(JS)-动画基础) [ 28%]

...更新方法 * txt 缓动对象 */ function updateColor(txt){ var c = 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; } } /** * 缓动完成后的回调...

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

88. 分享,扩展Laya.Text组件实现简单的富文本 [ 28%]

...overflow != Text.VISIBLE) { var func = this.overflow == Text.HIDDEN ? Math.floor : Math.ceil; lineCount = Math.min(lineCount, func((this.height - this.padding[0] - this.padding[2]) / (this.leading + this._charSize.height))); }; var startLine = this.scrollY / (this._charSize.height + this.leading) | ...

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

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

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

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

90. 缓动动画(TypeScript-LayaAir基础篇(TS)-动画基础) [ 27%]

...动对象 */ 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; } } /** * 缓动完成后的回调...

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