大约有 5 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0030 秒)
...class LoaderDemo extends Laya.Script { onAwake(): void { this.loadTexture("resources/image/monkey2.png", 500);//需要在resources/image放入相应的资源 this.loadTexture("https://layaair.com/3.x/demo/resources/res/apes/monkey2.png"); } /**加载并显示图片 */ loadTexture(url: string, x: num...
来源: Laya3.0_文档 发布时间: 20241014
...ld(sp1); sp1.pos(200, 190); // 加载并显示一个图片1 sp1.loadImage("resources/layabox.png", null); //需要在resources文件夹下放入layabox.png图片 let sp2 = new Laya.Sprite(); Laya.stage.addChild(sp2); // 加载并显示一个图片2 sp2.loadImage("atlas/comp/image.png", null); // 设...
来源: Laya3.0_文档 发布时间: 20241014
...包括使用纹理压缩信息,打开.json文件如下: { "files": { "resources": [ "layabox.png" ] }, "config": [ { "sRGB": true, "filterMode": 1, "mipmap": true, "pma": false, "files": [ { "file": "0", "ext": "dds", "format": 3 }, { "file": "", "ext": "png", "format": 1 } ], "platforms": { "0"...
来源: Laya3.0_文档 发布时间: 20241109
...据是在图片的前面写入了四个字节的数据 Laya.loader.fetch("resources/res/test.bin","arraybuffer").then((res)=>{ //获得res的ArrayBuffer数据 let arraybuffer: ArrayBuffer = res; //Byte数组接收arraybuffer let byte:Byte = new Byte(arraybuffer); //从第四个字节开始读取...
来源: Laya3.0_文档 发布时间: 20230303
...oint.EMPTY, color)); else return null; } 代码示例: Laya.loader.load("resources/layaAir.png").then((res: Laya.Texture) => { let sp = new Laya.Sprite(); // 绘制填充纹理 sp.graphics.fillTexture(res, 0, 0, 500, 500, "repeat"); this.owner.addChild(sp); }); 运行效果: (图8-2) 九...
来源: Laya3.0_文档 发布时间: 20241014