大约有 1,567 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0058 秒)
Laya_社区(1103) Laya2.0_文档(231) Laya_示例(108) Laya2.0_示例(69) Laya3.0_文档(43) Laya3.0_api(11) Laya2.0_api(2)
...击`保存`,存到**项目目录内**(本例为`项目根目录\bin\h5\res\TiledMap\`),如图3所示。 ![图3](img/3.png) (图3) ### 1.3 修改图集路径和复制Tiled资源 ##### 只是存为json文件还不够,我们还要更改image绝对路径为相对路径。 我们通过IDE,打...
来源: Laya2.0_文档 发布时间: 20210715
...10:09 浏览: 695 关注: 2 人 yaorao • 2018-03-27 10:21 我现在是从res文件夹加载资源,要怎么去改变大小和位置呢? qian • 2018-03-27 10:28 你场景加载出来了么 yaorao • 2018-03-27 10:36 出来了,但是改变位置不知道怎么改。没有回调 qian • 201...
来源: Laya_社区 发布时间: 20180327
...a.BaseMaterial = new WaterMaterial(); Laya.Texture2D.load("res/water1.png", Laya.Handler.create(null, function(tex:Laya.Texture2D) { // material.albedoTexture = tex; material.mainTexture = tex; })); Laya.Texture2D.load("res/FoamTexture.jpg", Laya.Handler.create(null, function(tex:Lay...
来源: Laya_社区 发布时间: 20181030
...); })(); function setup() { var dialog = new Image(); dialog.skin = "../../res/ui/dialog (3).png"; dialog.sizeGrid = "40,40,40,40,0"; dialog.size(500,400); dialog.pos(165, 62.5); Laya.stage.addChild(dialog); } })(); 在你们demo的基础上改的 pc的狐火下有问题 ie下应该也...
来源: Laya_社区 发布时间: 20170828
...失败 ==================test================ >>getMovieClipAtlas: res/swf/bomb.swf true >>onLoadedHandler1: Handler {once: true, _id: 6, caller: LayaSample, args: undefined} >>bomb: MovieClips {frames: 0, callback: null, _isRemove: false, _group: null, _start: 384…} Texture {off...
来源: Laya_社区 发布时间: 20170523
...; var viewRect:Laya.Rectangle = new Laya.Rectangle(); this.tMap.createMap("res/TiledMap/orthogonal-test-movelayer.json",viewRect,Laya.Handler.create(this,this.onMapLoaded)); this.tMap.scale = 1; var ape = new Laya.Sprite(); Laya.stage.addChild(ape); ape.loadImage("res/lhg.png"); ape.pos(0, 0); ...
来源: Laya_社区 发布时间: 20180514
...加载分包和资源 ``` my.loadSubPackage({ name: 'packageA', success: (res) => { this.setData({ subpackageReady:true }) console.log("download success") }, fail: function (res) { console.log(res) console.log("download fail") } }) ``` ## 四、分包构建 完成上述分包配置后,开发者需...
来源: Laya2.0_文档 发布时间: 20210715
...nMain extends Laya.Sprite{ constructor(){ super(); Laya.loader.load([{url:"res/213.part",type:Laya.Loader.JSON}],Laya.Handler.create(this,this.onAssetsLoaded)); } onAssetsLoaded(){ let pg = Laya.loader.getRes("res/213.part"); let pd = new Laya.Particle2D(pg); } }213.part是设计模式下生成 ...
来源: Laya_社区 发布时间: 20181120
...un() { const Templet = Laya.Templet, Event = Laya.Event; const mAniPath = "res/spine/spineRes2/goblins.sk"; mFactory = new Templet(); mFactory.on(Event.COMPLETE, this, this.parseComplete); mFactory.on(Event.ERROR, this, this.onError); mFactory.loadAni(mAniPath); } onError() { trace("error"); } parse...
来源: Laya2.0_示例 发布时间: 20241119
...到但是也能显示! blackMan.json 是一个小黑人 ani not found: res/atlas/default/blackMan.json public static readonly BLACK_MAN = "res/atlas/default/blackMan.json"; this.aniTemp.loadAtlas(ResourcesManager.BLACK_MAN, null, ResourcesManager.BLACK_MAN); json 文件是 {"fra...
来源: Laya_社区 发布时间: 20170824