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

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

11. 跟着老师打地鼠游戏写的代码,JS为什么会出错 [ 91%]

...师打地鼠游戏写的代码,JS为什么会出错 var Game=(function(_super){ function Game(){ Game.super(this); this.mole=new Mole() //这里会报错 } Laya.class(Game,"Game",_super); return Game; })(ui.GameUI) var GameUI=(function(_super){ function GameUI(){ this.btn_start=null; this.audio=nu...

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

12. 这个写法是什么意思,能否解释一下,谢谢 [ 91%]

...s.bg2 = null;         //初始化父类         BackGround.__super.call(this);         this.init();     }     //注册类 BackGround     Laya.class(BackGround, "BackGround", laya.display.Sprite);   问题: 1.Laya.class(BackGround, "BackGround", laya.display.Sprite); ...

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

13. 续飞机大战 [ 91%]

...); var gameInstance = new Game();BackGround.jsvar BackGround = (function (_super) { function BackGround() { BackGround.__super.call(this); //创建背景1 this.bg1 = new Laya.Sprite(); //加载并显示背景图 this.bg1.loadImage("war/background.png"); //把背景1放到容器内 this.addChild(this...

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

14. 引用的类库问题 [ 90%]

引用的类库问题 var ViewStack=(function(_super){ function ViewStack(){ this._items=null; this._selectedIndex=0; ViewStack.__super.call(this); this._setIndexHandler=Handler.create(this,this.setIndex,null,false); } __class(ViewStack,'laya.ui.ViewStack',_super); 1. ViewStack.__super.call(this); ...

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

15. as3代码编译错误.100%重现,有测试代码.结果影响很大. [ 90%]

...现,有测试代码.结果影响很大. 就是一句代码,出现连续的super调用的时候,会被编译成错误代码. addFootPrintMagic(super.x,super.y, now); 被编译成addFootPrintMagic(laya.display.Sprite.prototype.x,_super.prototype.y,now); 下面是我写的测试代码,也被编译错...

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

16. 构造函数的__super.call(this)以及调用基类方法的laya.ui.Component.prototype.onCompResize.call(this);在2.0是怎么写的 [ 90%]

构造函数的__super.call(this)以及调用基类方法的laya.ui.Component.prototype.onCompResize.call(this);在2.0是怎么写的 语言:js 2019-03-22 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复 为什...

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

17. 如何复制一段文字到剪切板 [ 89%]

...么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 super1013 相关问题 3D文字怎么做 Morn UI中的Label文字颜色显示不正确 Unity导出模型资源可以加载但不能被复制? 引擎中有使得Label中文字逐字显示的方法吗? Unity中的文字可以...

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

18. 扩展脚本问题,麻烦帮看下 [ 89%]

...下  module game { export class testbox extends Laya.Box { constructor(){ super(); console.log(this.getChildByName('btnName')) } } export class testImg extends Laya.Image { constructor(){ super(); console.log(this.getChildByName('name')) console.log(this) } } } 我这两个分别绑定在了image...

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

19. 1.5.0 LayaAir IDE发布UI资源缺失! [ 89%]

...ar View=laya.ui.View; var Dialog=laya.ui.Dialog; var ABCPanelUI=(function(_super){         function ABCPanelUI(){                          ABCPanelUI.__super.call(this);         }         CLASS$(ABCPanelUI,'ui.abc.ABCPanelUI',_super);         var __proto__=A...

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

20. 分包后, 资源加载问题 [ 89%]

...) //class loading100 extends laya.display.Sprite var loading100=(function(_super){ console.log("kk4") function loading100(){ loading100.__super.call(this); this.load=new loadingUI(); this.addChild(this.load); } console.log("kk5") __class(loading100,'loading100',_super); console.log("kk6") var __prot...

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