大约有 154 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0045 秒)
Laya_社区(56) Laya_示例(36) Laya2.0_示例(20) Laya3.0_api(13) Laya2.0_api(12) Laya3.0_文档(9) Laya2.0_文档(6) laya_api(2)
...Handler.create(this, onLoaded), laya.utils.Handler.create(this, onLoading, null, false)); //加载进度 function onLoading(progress){ console.log("onLoading: " + progress); } //加载完毕 function onLoaded(){ console.log("onLoaded"); } 我们刷新页面看看有什么效果 如下图所示 我...
来源: Laya_社区 发布时间: 20160722
...m frw 文件访问接口,不同的平台需要不同的实现。如果为null,则自动选择网页或者native两个平台 * @param dccurl dcc的服务器地址 */ constructor(dccurl:string, frw:new ()=>IGitFSFileIO|null, logger:ICheckLog=null) enableLog(b:boolean) /** * 初始化,下载...
来源: Laya3.0_文档 发布时间: 20241024
...ler.create(this, onTextureLoaded)); } private function onTextureLoaded(e:*=null):void { maggotTexture = Laya.loader.getRes(texturePath); initMaggots(); Laya.timer.frameLoop(1, this, animate); } private function initMaggots():void { var maggotContainer:Sprite; for (var i:int = 0; i wb.x + wb.width) x...
来源: Laya_示例 发布时间: 20241125
...AppConfirm = document.getElementById("AppConfirm"); if (this.AppConfirm == null) { this.AppConfirm = document.createElement("div"); document.body.appendChild(this.AppConfirm); this.AppConfirm.id = "AppConfirm"; } this.modlueDiv = document.getElementById("modlue"); if (this.modlueDiv == null) { thi...
来源: Laya_社区 发布时间: 20181214
... Sprite; private totalBox = 200; private label: Label; Main: typeof Main = null; constructor(maincls: typeof Main) { this.Main = maincls; Laya.Config.isAntialias = true; Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Stat.show(); Physics.enable({ gravity: 0 }); PhysicsDebugDraw.enable(...
来源: Laya2.0_示例 发布时间: 20241125
...Text.y = 300; //Tween.from(letterText, { y : 100 }, 3000, Ease.elasticOut, null, i * 1000);//注释本行改为将Tween.from改变为Tween.to Tween.to(letterText, { y : 100 }, 3000, Ease.elasticOut, null, i * 1000); ``` 运行效果如动图3所示 ![动图3.gif](img/3.gif)(动图3) 结合代码...
来源: Laya2.0_文档 发布时间: 20210715
...ler.create(this, onTextureLoaded)); } private function onTextureLoaded(e:*=null):void { maggotTexture = Laya.loader.getRes(texturePath); initMaggots(); Laya.timer.frameLoop(1, this, animate); } private function initMaggots():void { var maggotContainer:Sprite; for (var i:int = 0; i wb.x + wb.width) x...
来源: Laya2.0_示例 发布时间: 20241125
...a.loader.load(["../../../../res/threeDimen/ui/button.png"], Handler.create(null, function():void { changeActionButton = Laya.stage.addChild(new Button("../../../../res/threeDimen/ui/button.png", "切换动作")) as Button; changeActionButton.size(160, 40); changeActionButton.labelBold = true; change...
来源: Laya_示例 发布时间: 20241125
..."res/TiledMap/orthogonal.json",viewRect, Handler.create(this,onMapLoaded), null, gridSize) ``` ### 3.3 合并图层 #### 3.3.1 开启合并图层 当TiledMap里有多个图层时,开启合并图层的属性enableMergeLayer,可以将图层合并,会对性能有所提高。 开启的方式为:...
来源: Laya2.0_文档 发布时间: 20210714
..., texture: Texture2D, minHeight: number, maxHeight: number, name: string = null): MeshTerrainSprite3D { var meshTerrainSprite3D: MeshTerrainSprite3D = new MeshTerrainSprite3D(mesh, null, name); meshTerrainSprite3D._initCreateFromMeshHeightMap(texture, minHeight, maxHeight); return meshTerrainSprite3...
来源: Laya3.0_文档 发布时间: 20230303