大约有 4 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0030 秒)
...load,同时可以加载2D,3D资源 Laya.loader.load(resArr, null, Laya.Handler.create(this, this.onLoading, null, false)).then(() => { // 加载完成后,处理逻辑 this.progress.value = 0.98; console.log("加载结束", this.progress.value); //预加载的东西太少,为了本地看效...
来源: Laya3.0_文档 发布时间: 20241014
...var sp=new Laya.Sprite(); sp.loadImage("res/apes/monkey2.png",0,0,0,0,Laya.Handler.create(this,function() { console.log(sp.width,sp.height); })); Laya.stage.addChild(sp); loadImage在加载完成的回调函数触发之后才可以正确获取宽高。 直接调用size设置: Laya.loader.load("res...
来源: Laya3.0_文档 发布时间: 20241014
...("Game start"); //加载粒子特效资源 Laya.loader.load(this.filePath, Handler.create(this, () => { })); } //每次鼠标点下屏幕后,会创建一个特效 mouseDown(e: Event): void { var particle = Particle3D.Create(this.filePath); this.owner.addChild(particle); } //鼠标抬起后,...
来源: Laya3.0_文档 发布时间: 20241014
... constructParams: [64, 64, 1, false, true] } ]; Laya.loader.load(resource, Handler.create(this, this.onLoadFinish)); } private onLoadFinish(): void { //初始化3D场景 this.scene = (<Scene3D>Laya.stage.addChild(Loader.createNodes("res/threeDimen/scene/TerrainScene/XunLongShi.ls"))); //根据...
来源: Laya3.0_文档 发布时间: 20230303