大约有 5 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0027 秒)
...的调试APP,下载页面:https://minigame.vivo.com.cn/documents/#/download/debugger 进入页面后,点击 立即下载 ,即可下载安装。至于如何安装vivo调试APP,这里就不介绍了。 3、下载vivo小游戏引擎 当前调试APP内置的vivo引擎版本是1034,这个版...
来源: Laya3.0_文档 发布时间: 20241014
...@regClass() export class Main extends Laya.Script { onAwake(): void { Laya.loader.load(["resource/AtlasConfig.atlas"], Laya.Handler.create(this, () => { let img = new Laya.Image; Laya.stage.addChild(img); img.pos(500, 100); img.skin = "resources/img_bg.png"; //图集中的图片 })); } onStart() ...
来源: Laya3.0_文档 发布时间: 20241109
.../minidev@1.4.2,也需要在项目目录中使用命令执行:minidev upload -a 2021xxx -v 0.0.1 --game,其中“2021xxx”为3.1节中生成的AppID。上传之后,在开放平台,就可以对上传的版本生成体验码。 发布,审核通过后,在小程序官网进行发布上线...
来源: Laya3.0_文档 发布时间: 20241014
...G * (this.skins.length / this.COLUMNS - 1) - this.BUTTON_HEIGHT) / 2; Laya.loader.load(this.skins).then(() => { this.onUIAssetsLoaded(); }); } private onUIAssetsLoaded(e: any = null): void { for (var i: number = 0, len: number = this.skins.length; i < len; ++i) { var btn: Laya.Button = this.cr...
来源: Laya3.0_文档 发布时间: 20241014
..., offset || Point.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); }); 运行效果: (...
来源: Laya3.0_文档 发布时间: 20241014