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

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

471. 按照打地鼠教程来无法正常加载资源 [ 63%]

...            ];             Laya.loader.load(resArr,Handler.create(this,this.onLoaded));         }         private function onLoaded():void{             //显示界面             var gameView:GameView = new GameView();         ...

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

472. 新人求教!!! [ 63%]

...添加到舞台      Laya.loader.load([this.monkey1,this.monkey2],Laya.Handler.create(this,this.graphicsImg)); } private graphicsImg():void{    //创建一个实例    this.img = new Laya.Sprite();    //添加到舞台    Laya.stage.addChild(this.img);    //显示初始化绘制的图...

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

473. 如何获取unity导出的摄像机 [ 63%]

...是我自己慢慢研究的 Laya.loader.create([{url:"land/main.lh"}],Laya.Handler.create(this,this.onCreateComplete));   再单独写个这个 onCreateComplete(){ var land = Laya.loader.getRes("land/main.lh"); this.scene.addChild(land); var camera = land.getChildByName("Camera"); camera.addCompone...

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

474. Texture自动恢复还是存在另外的问题 [ 63%]

...itmap.destroyed)&& url){             Laya.loader.load(url,Handler.create(this,function(bitmap){                 _$this._bitmap=bitmap;             }),null,"htmlimage",1,false,null,true);         }     }   Laya.loader.load的cache参数为什么设置...

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

475. 关于stage的size问题 [ 63%]

...aya.loader.load([{ url: "res/atlas/comp.json", type: Loader.ATLAS }], Laya.Handler.create(this, this.onLoaded)); function onLoaded(): void { var sprite = new Laya.Sprite(); sprite.loadImage('comp/bg.png'); Laya.stage.addChild(sprite); } 上面这段代码如果把Laya.stage.size这行的注释去掉...

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

476. 二次开发 异步回调没反应 [ 63%]

...没反应 ts: /**视频广告 */ public static showVideoAd(success: Laya.Handler, type: string): void { if (GameConfig.ins.isDev) { success.runWith(1); return; } var VGUtil = Laya.PlatformClass.createClass("com.szdn.game.fkzy.VGUtil"); VGUtil.callWithBack(back, "showVideoAd", type);  function back(...

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

477. [Laya2.3] 天空盒在微信上的显示问题 [ 63%]

...         }          Laya.loader.create(sceneUrl,new Laya.Handler(this,completeFunc)); 附件 : --> scene1.zip 2019-10-12 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复 为什么被折叠? 0 个回...

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

478. 自适应问题 [ 63%]

... Laya.loader.load("http://localhost/layabox/layabox/layabox/res/bg.png'", Handler.create(this, function () {         var t = Laya.loader.getRes(skin);         var _sprite = new Sprite();         _sprite.graphics.drawTexture(t, 0, 0);         Laya.stage.addChild(_sprite); }); 但是...

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

479. radioGroup设置labels后,每个radio的icon皮肤无法显示了 [ 63%]

...口文件: Laya.loader.load("res/atlas/template/QuestionDialog.atlas", Handler.create(null)); 对应的场景代码里: var dialog = new QuestionDialogUI();          Laya.stage.addChild(dialog);          dialog.popup();          dialog.btn_question_dialog_next.on(Laya.Eve...

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

480. layaAir TS项目如何引用protoBuf库? [ 63%]

...= Laya.Loader;         var Browser = Laya.Browser;         var Handler = Laya.Handler;         var ProtoBuf = Browser.window.protobuf;         Laya.init(550, 400);         //加载协议文件,相当于加载那个资源         ProtoBuf.load("../laya/proto/awes...

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