大约有 43 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0034 秒)
...("回调方法")来处理加载后的逻辑。 Laya.loader.load(url).then((res)=> {/** 不带类型,用于常规的资源 */}); 完整的脚本示例如下: const { regClass, property } = Laya; @regClass() export class LoaderDemo extends Laya.Script { onAwake(): void { this.loadTexture("resou...
来源: Laya3.0_文档 发布时间: 20241014
...操作。代码如下: var xhr = new XMLHttpRequest(); xhr.open("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onloa...
来源: Laya3.0_文档 发布时间: 20230303
...url = "xxx.png"; var type = Laya.Loader.IMAGE; Laya.loader.load(url).then((res)=> { //不带类型,用于常规的资源 }); Laya.loader.load(url, type).then((res)=> { //带类型,用于区别同一后缀不同作用的资源。 //例如,图片xxx.png被定义为TextureCube,使用load(...
来源: Laya3.0_文档 发布时间: 20230406
...// 图片资源来自“引擎API使用示例” private skins: any[] = [ "resources/res/ui/checkbox (1).png", "resources/res/ui/checkbox (2).png", "resources/res/ui/checkbox (3).png", "resources/res/ui/checkbox (4).png", "resources/res/ui/checkbox (5).png", "resources/res/ui/checkbox (6).png" ]; co...
来源: Laya3.0_文档 发布时间: 20241014
... : (图2-2) js目录 与 libs目录: 项目代码和引擎库。 resources目录 与 Scene.ls: resources资源目录和场景文件Scene.ls,小游戏由于初始包的限制,建议将初始包的内容在规划好,最好能放到统一的目录下,便于初始包的剥离。 game.j...
来源: Laya3.0_文档 发布时间: 20241014
... : (图2-2) js目录 与 libs目录: 项目代码和引擎库。 resources目录 与 Scene.ls: resources资源目录和场景文件Scene.ls,小游戏由于初始包的限制,建议将初始包的内容在规划好,最好能放到统一的目录下,便于初始包的剥离。 game.j...
来源: Laya3.0_文档 发布时间: 20241014
...示。 (图2-2) js目录 与 libs目录: 项目代码和引擎库。 resources目录 与 Scene.ls: resources资源目录和场景文件Scene.ls,小游戏由于初始包的限制,建议将初始包的内容在规划好,最好能放到统一的目录下,便于初始包的剥离。 game...
来源: Laya3.0_文档 发布时间: 20241014
.../ 以下图片资源来自“引擎API使用示例”项目 this.skins = ["resources/res/ui/button-1.png", "resources/res/ui/button-2.png", "resources/res/ui/button-3.png", "resources/res/ui/button-4.png", "resources/res/ui/button-5.png", "resources/res/ui/button-6.png"]; // 计算将Button至于舞...
来源: Laya3.0_文档 发布时间: 20241014
... : (图2-2) js目录 与 libs目录: 项目代码和引擎库。 resources资源目录 与 Scene.ls: resources资源目录和场景文件Scene.ls,小游戏由于初始包的限制,建议将初始包的内容提前规划好,最好能放到统一的目录下,便于初始包的剥离...
来源: Laya3.0_文档 发布时间: 20241014
...: void { //使用Prefab,需要转换根节点为Dialog Laya.loader.load("resources/Prefab2D.lh").then(res => { let dlg: Laya.Dialog = res.create(); dlg.show(); }); } } 运行效果如下: (动图) 二、通过代码创建Dialog 在进行书写代码的时候,免不了通过代码控制U...
来源: Laya3.0_文档 发布时间: 20241014