大约有 1,567 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0055 秒)
Laya_社区(1103) Laya2.0_文档(231) Laya_示例(108) Laya2.0_示例(69) Laya3.0_文档(43) Laya3.0_api(11) Laya2.0_api(2)
...unction createMap() { tiledMap = new TiledMap(); tiledMap.createMap("../../res/tiledMap/perspective_walls.json", new Rectangle(0, 0, Laya.stage.width, Laya.stage.height), null); } })();module laya { import Stage = Laya.Stage; import TiledMap = Laya.TiledMap; import Rectangle = Laya.Rectangle; import...
来源: Laya_示例 发布时间: 20241118
...his.setup(); } setup() { const Image = Laya.Image; let dialog = new Image("res/ui/dialog (3).png"); Laya.stage.addChild(dialog); dialog.pos(165, 62.5); } } new UI_Image();module laya { import Stage = Laya.Stage; import Image = Laya.Image; import WebGL = Laya.WebGL; export class UI_Image { constructo...
来源: Laya2.0_示例 发布时间: 20241118
...232628"; Stat.show(); // create a background texture Laya.stage.loadImage("res/pixi/laserBG.jpg"); Laya.stage.frameLoop(1, this, this.animate); } animate() { const Sprite = Laya.Sprite, Point = Laya.Point; let laser; if (tick > frequency) { tick = 0; // iterate through the dudes and update the posit...
来源: Laya2.0_示例 发布时间: 20241118
...信提供了50M的缓存区域 在开发者工具下看到目录是usr/res 而项目的资源目录是 game/res 问题来了 请教下 如何让包体尽量达到4M后多出来的资源进行缓存 如3D资源 目前发现的问题是 引擎的loader方法无法访问usr目录 除非修改 Lay...
来源: Laya_社区 发布时间: 20190525
...function() { var guideSteps = [ { x: 151, y: 575, radius: 150, tip: "../../res/guide/help6.png", tipx: 200, tipy: 250 }, { x: 883, y: 620, radius: 100, tip: "../../res/guide/help4.png", tipx: 730, tipy: 380 }, { x: 1128, y: 583, radius: 110, tip: "../../res/guide/help3.png", tipx: 900, tipy: 300 } ]...
来源: Laya_社区 发布时间: 20171031
...置文件?在laya是可以 public initConfig(){ this.configAsset=[ {url:"res/config/playerCard.json",type:laya.net.Loader.TEXT} ]; Laya.loader.load(this.configAsset,Handler.create(this,this.loadConfigCallBack)) } public loadConfigCallBack(str:boolean){ if(str){ var config; config=laya.net.Loader.g...
来源: Laya_社区 发布时间: 20180117
...fairyGUI的时候资源加载方式? Laya.loader.load([{ url: "res/Basics_atlas0.png", type: laya.net.Loader.IMAGE }, { url: "res/Basics.fui", type: laya.net.Loader.BUFFER }, { url: "res/MainMenu_atlas0.png", type: laya.net.Loader.IMAGE }, { url: "res/MainMenu.fui", type: l...
来源: Laya_社区 发布时间: 20191107
... Background.js 将我们需要的素材放到项目目录下面bin -> res RunGame.js是我们游戏的入口类 //后面会提到具体的作用 Background,js 是我们的背景类 //======================= 美丽的分割线 ======================== 加载图片并且测试图片是...
来源: Laya_社区 发布时间: 20160722
... Laya.loader.create([ { url: "res/Sword 10 Blue Gold.lmat", type: Laya.Loader.MATERIAL}, { url: "res/Sword 10 Blue Gold.jpg", type: Laya.Loader.IMAGE} ]); 附件 : --> Test.zip 2022-01-07 添加评论 ...
来源: Laya_社区 发布时间: 20220107
...age({ name: 'stage1', // name 可以填 name 或者 root success: function(res) { // 分包加载成功后通过 success 回调 }, fail: function(res) { // 分包加载失败通过 fail 回调 } }) ``` 加载成功的同时,wx.loadSubpackage 会返回一个 [LoadSubpackageTask](https://developers....
来源: Laya2.0_文档 发布时间: 20210715