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

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

621. 粒子中引用的图片能合图吗 [ 68%]

...LE; Laya.stage.alignV = Laya.Stage.ALIGN_CENTER; Laya.loader.load([{ url: "res/atlas/comp.json", type: Loader.ATLAS }], Handler.create(this, this.onLoaded)); function onLoaded(): void {     Laya.loader.load("res/comp/dian.part", Handler.create(this, this.onPartLoaded)); } function onPartLoaded(da...

来源: Laya_社区 发布时间: 20170803

622. 分享:IDE使用SWF动画的销毁与反复创建 [ 68%]

...具体结构请参考附件             Laya.loader.load([{url: "res/atlas/flicker/image.json", type: Loader.ATLAS}], Handler.create(this, onLoaded));         }         private function onLoaded():void {             //实例UI界面             var testView:Tes...

来源: Laya_社区 发布时间: 20170608

623. 骨骼动画进阶(TypeScript-2D进阶篇(TS)-动画进阶) [ 68%]

...is.templet.on(Laya.Event.ERROR, this, this.onError); this.templet.loadAni("res/spine/goblins/goblins.sk"); } onError() { console.log("parse error"); } parseComplete() { //创建第一个动画 var skeleton0: Laya.Skeleton; //从动画模板创建动画播放对象 skeleton0 = this.templet.buildArmat...

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

624. TimeLineUI不存在的问题 [ 68%]

...)"; //加载图集成功后,执行onLoaded回调方法 Laya.loader.load("res/atlas/apes.atlas", Laya.Handler.create(this, onLoaded)); function onLoaded() { //创建一个UI实例 var plan = new ui.TimeLineUI(); //添加到舞台 Laya.stage.addChild(plan); //播放UI场景中的动画 plan.crashed....

来源: Laya_社区 发布时间: 20190217

625. 异步加载一个UI对象时的问题 [ 68%]

...; } createChildren():void { super.createChildren(); let assets = [ { url: "res/atlas/ui/shared.atlas", type: Loader.ATLAS }, { url: "res/atlas/ui/myview.atlas", type: Loader.ATLAS }, { url: "view/MyView.json", type: Loader.JSON }, ] Laya.loader.load(assets, Handler.create(this, this.onLoaded)); } pr...

来源: Laya_社区 发布时间: 20180113

626. 【BUG】加载的url中有错误url时,laya偶现加载complete不回调 [ 68%]

...的demo。原因是onerror时没有重置customParse属性为false。 var res3DArr = [ { url: this.error_PATH }, { url: this.zombie_anim_path1 }, { url: this.zombie_anim_path2 }, { url: this.zombie_anim_path3 }, { url: this.zombie_anim_path4 }, { url: this.zombie_anim_path5 }, ]; Laya.loader.retryNu...

来源: Laya_社区 发布时间: 20180305

627. Sprite3D的克隆(ActionScript-3D基础(AS3)-LayaAir3D之精灵) [ 68%]

...=Sprite3DClone)) ```typescript { ...... //加载模型 Laya.loader.create("res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh", Handler.create(this, onComplete)); } ////完成回调 public function onComplete():void { //获取资源 var layaMonkey:Sprite3D = scene.addChild(Loader.getRes("res/threeDim...

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

628. 创建一个空项目,一个about.ui,拖一个控件,f12后,atlas目录没有生成对于的图集 [ 68%]

...目 2、切换到ui界面,创建一个ui 3、按f12导出资源 4、bin/res/atlas 目录有生成,就没有文件 2017-03-16 1 条评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 3 个回复 cuixueying 赞同来自: 最好可以...

来源: Laya_社区 发布时间: 20170316

629. RopeJoint代码动态创建 无法设置otherbody等属性 [ 68%]

...e = new Sprite(); //加载显示图片,坐标位于100,50 img.loadImage("res/layabox.png"); img.x=(Laya.stage.width-256)/2; //添加到舞台 Laya.stage.addChild(img); var img2:Sprite = new Sprite(); //加载显示图片,坐标位于100,50 img2.loadImage("res/layabox.png"); img2.x=(Laya.stage.wi...

来源: Laya_社区 发布时间: 20200217

630. Laya.Handler.create 回调参数问题 [ 68%]

...addChild(ape); var ag = ["lsd",ape,1,"str"]; ape.loadImage("../laya/assets/res/to1.png",0,0,0,0,Laya.Handler.create(this,graphicsImg,ag));   graphicsImg(ag); }  function graphicsImg(args) { console.log(args); }   //loadImage 的回调函数只传递出来了第一个参数 //输出结果是 [lsd,...

来源: Laya_社区 发布时间: 20180510