• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 1,567 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0058 秒)

601. 用LayaAir引擎解析Tiled Map地图(TypeScript-2D进阶篇(TS)-扩展模块) [ 68%]

...击`保存`,存到**项目目录内**(本例为`项目根目录\bin\h5\res\TiledMap\`),如图3所示。 ![图3](img/3.png) (图3) ### 1.3 修改图集路径和复制Tiled资源 ##### 只是存为json文件还不够,我们还要更改image绝对路径为相对路径。 我们通过IDE,打...

来源: Laya2.0_文档 发布时间: 20210715

602. HIERARCHY_LOADED函数不回调 [ 68%]

...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

603. WaterPrimaryMaterial的使用 [ 68%]

...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

604. 适配模式在 showall 模式下火狐(PC)的sizeGrid 特别容易出现间隙 [ 68%]

...); })(); 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

605. movieclip destroy 后重新加载失败 [ 68%]

...失败 ==================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

606. Tiled Map 为啥始终显示在最上面,求解 [ 68%]

...; 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

607. 淘宝创意互动分包指南(TypeScript-小游戏适配文档-淘宝创意互动) [ 68%]

...加载分包和资源 ``` 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

608. 2.0版本,Particle2D is not a constructor [ 68%]

...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

609. 骨骼动画-换装 [ 68%]

...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

610. 提示资源找不到但是也能显示! [ 68%]

...到但是也能显示! 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