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

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

21. 关于super的疑惑 [ 87%]

关于super的疑惑 自从使用Laya以来按照教程使用固定格式,在构造函数里.super(this),说是调用父类的构造方法,搜了一下引擎的core.js,没有找到关于这个方法的实现,百度了一下这个super应该是一个关键字吧  Laya怎么做到的 2017-09...

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

22. 请问laya中js如何继承自己写的类 [ 87%]

...: 与内容相关的链接 提交 3 个回复 gls_laybox 赞同来自: t2.super(this);也是报错的,说没有构造方法 2018-01-04 0 0 分享 微博 QZONE 微信 qian 赞同来自: 建议参考https://ask.layabox.com/question/811 2018-01-04 0 6 分享 微博 QZONE 微信 gls_laybox 赞同来...

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

23. 关于3d项目中component的问题 [ 87%]

...ertTranslate = new Laya.Vector3(0, 0, 0); function CmpScript() { CmpScript.super(this); this.x = 0; } Laya.class(CmpScript, "CmpScript", Laya.Script) CmpScript.prototype._initialize = function (owner) { var _this = this; CmpScript.__super.prototype._initialize.call(this, owner); } CmpScript.prototyp...

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

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

...问题 as 代码 override public function get visible():Boolean  { return super.visible; } override public function set visible(value:Boolean):void  { super.visible = value; if (value) _mcAni.removeFromParent(); }   1.7之后的转换 __getset(0,__proto,'visible',function(){ return Laya.superGet(...

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

25. http无响应 [ 86%]

...独用在其它文件也是没有反应,  var LoginView = (function (_super) { function LoginView() { LoginView.super(this); //调用父类构造函数 this.dlg; } function connect() { var hr = new Laya.HttpRequest(); hr.once(Event.PROGRESS, this, onHttpRequestProgress); hr.once(Event.COMPLETE, t...

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

26. 通过laya设计模式制作的,要怎么给按钮绑定事件呢? [ 86%]

...91859396用户 • 2020-06-11 15:11 @Laya_Aaron:var MainSceneUI=(function(_super){ function MainSceneUI(){ this.Btn_Task=null; MainSceneUI.__super.call(this); } CLASS$(MainSceneUI,'ui.MainSceneUI',_super); var __proto__=MainSceneUI.prototype; __proto__.createChildren=function(){ _super.prototype.cre...

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

27. socket无法连接服务器 [ 86%]

...的回调             if (this.connected) return;             super.connect(IP, PORT);         }         ////////////////////////////////////         protected _onOpen(...args: any[]): void {             super._onOpen(args);             this.state_ = EConnectionSt...

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

28. 官方视频教程中飞机大战 "this.addChild is not a function" [ 86%]

...ddChild(this.bg); })(); })(); src/BackGround.jsvar BackGround = (function(_super){ function BackGround(){ BackGround.super(this); this.bg1 = new Laya.Sprite(); this.bg1.loadImage("war/background.png"); this.addChild(this.bg1); } Laya.class(BackGround,"BackGround",_super); return BackGround; })(Laya....

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

29. 新手,图片加载不进去,没有报错。很疑问 [ 85%]

...链接 提交 1 个回复 Laya_XS 赞同来自: var BackGround=(function(_super){ function BackGround(){ BackGround.__super.call(this); this.bg1 = new Laya.Sprite(); this.bg1.loadImage("comp/bg.png"); this.addChild(this.bg1); } Laya.class(BackGround,"BackGround",_super); return BackGround; })(Laya.S...

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

30. 飞机大战出现的问题注册了类New的时候报错未定义 [ 85%]

...     })();   //循环滚动的游戏背景 var BackGround = (function(_super){ function BackGround(){ BackGround.super(this); //创建游戏背景1 this.bg1 = new Laya.Sprite(); //加载并显示背景图 this.bg1.loadImage("war/bc.png"); //把背景1放在容器中 this.addChild(this.bg1); //...

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