大约有 4 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0022 秒)
..._CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#ffffff"; this.showApe(); } private showApe(): void { // 方法1:使用loadImage var ape: Sprite = new Sprite(); ape.pos(100,50); Laya.stage.addChild(ape); ape.loadImage("../../res/apes/monkey3.png"); } } } new laya.Sprite_DisplayIma...
来源: Laya2.0_文档 发布时间: 20210715
...bgColor = "#232628"; Laya.loader.load([texture1, texture2], Handler.create(this, onAssetsLoaded)); })(); function onAssetsLoaded() { ape = new Sprite(); Laya.stage.addChild(ape); ape.pivot(55, 72); ape.pos(200, 200); // 显示默认纹理 switchTexture(); ape.on("click", this, switchTexture); } func...
来源: Laya2.0_文档 发布时间: 20210715
...色动画资源 Laya.loader.create("monkey/monkey.ls",Laya.Handler.create(this,this.onSceneOK)); } onSceneOK() { //添加3D场景 var scene = Laya.loader.getRes("monkey/monkey.ls"); Laya.stage.addChild(scene); //从场景中获取摄像机 var camera = scene.getChildByName("Main Camera"); //后续...
来源: Laya2.0_文档 发布时间: 20210715
...ni", ]; //批量预加载 Laya.loader.create(resource, Laya.Handler.create(this, this.onLoaded)); onLoaded(): void { //加载完成后的处理逻辑…… } ``` 使用预加载资源的示例代码如下: ```typescript //获取预加载的3D场景资源对象 var _Scene3D: Laya.Scene3D = Laya.Loa...
来源: Laya2.0_文档 发布时间: 20210714