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

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

41. LayaAir引擎1.7 之后as转换js,出现问题 [ 72%]

... 1.7之前的转换 __getset(0,__proto,'visible',function(){ return _super.prototype._$get_visible.call(this); },function(value){ _super.prototype._$set_visible.call(this,value); if (value) this._mcAni.removeFromParent(); });       2018-02-27 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...

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

42. 对游戏中各种控件字体样式使用“白鹭style”样式表 [ 72%]

...项加载内容加载完成均可以设置一个回调 Laya.LoaderManager.prototype["_loadAssets"] = function (arr, complete, progress, type, priority, cache, group) { (priority === void 0) && (priority = 1); (cache === void 0) && (cache = true); var itemCount = arr.length; var loade...

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

43. 感觉实例之间是关联的,求指教。(已解决) [ 72%]

...is.poke_a.x=0; } Laya.class(Panel1, "Panel1", _super); var _proto = Panel1.prototype; //======================================= //将指定的牌显示到桌面上 //======================================= _proto.start = function () { var tempReturnString = "101,201,301,401,501"; var tempStringArray...

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

44. 【简单跑酷--JS版】---Lv.6 终篇 [ 71%]

...ype_speed"; //Hp Laya.class(Hp,"Hp", laya.display.Sprite); var _proto = Hp.prototype; _proto.init = function(type){ this.width = 180; this.height = 21; var texture1 = Laya.loader.getRes("res/hp_bg.png"); var texture2; switch (type) { case Hp.HP_TYPE_ENERGY: texture2 = Laya.loader.getRes("res/en_bar....

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

45. 在微信分享成功的回调函数里,Laya播放音效失败。 [ 70%]

...ountDown = 15; // console.log(gameex.snakeSelf) } })     //暂停 GameEx.prototype.pause = function () { console.log("停止播放音乐") Laya.SoundManager.stopMusic(); //停止游戏主循环 Laya.timer.clear(this, this.onLoop); //移除舞台的鼠标移动事件 Laya.stage.off(Laya.Event.MOUSE...

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

46. 【简单跑酷--JS版】---Lv.2 类之间的引用以及背景滚动实现 [ 70%]

...rite Laya.class(RunGame,"RunGame", laya.display.Sprite); //定义RunGame的prototype var _proto = RunGame.prototype; //初始化 _proto.init = function(){ console.log('RunGame Init'); } })(); 此处我们要说一下  Laya.class(RunGame,"RunGame", laya.display.Sprite); 这是JS特有的继承写法...

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

47. 打飞机点开始游戏加载飞机动画不出来,点重新开始,才出来,新手求助! [ 70%]

....call(this); this.fly(); } Laya.class(Hero,"Hero", Air); var _proto = Hero.prototype; _proto.fly = function() { this.playAction("fly") } })(); air类: (function() { function Air(type, hp) { this.hp = hp; this.type = type; this.body = null; Air.__super.call(this); this.init(); } Laya.class(Air,"Air...

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

48. LIST renderHandler的ITEM高度自定义后,设置content变更其内部容器大小不生效 [ 70%]

...设置content变更其内部容器大小不生效 ViewActivityLimitedTask.prototype.initComp = function() { this.list_view.vScrollBarSkin = ""; this.list_view.scrollBar.elasticBackTime = ListConst.elasticBackTime; this.list_view.scrollBar.elasticDistance = ListConst.elasticDistance; this.list_view.r...

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

49. 请问UI之间的场景切换要怎么写 [ 70%]

...this.reset(); } Laya.class(sg_sign,"sg_sign",_super); var _proto = sg_sign.prototype; _proto.reset = function(){ Laya.SoundManager.playMusic('res/sound/sign_bgm.mp3',0); } _proto.onWxSign = function(e){ onWxSign1(); } return sg_sign; })(ui.sg_signUI); var sg_index = (function(_super){ function sg_in...

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

50. httpRequest send返回Request failed Status:0 [ 70%]

... this.errorHandler); xhr.send(url, "", "get", "arraybuffer"); } } GameMain.prototype.completeHandler = function (URL, id, data) { // private completeHandler(data: Object, URL: string, id: number): void { //加载完成返回的data是arraybuffer; //......这里处理我们加密的图片数据,...

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