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

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

11. 关于js继承类class的参数问题 [ 94%]

关于js继承类class的参数问题 Laya.class(LoginView, "LoginView", LoginUI) ; // 设置继承关系. 括号里第一个参数是一个方法,第三个是要继承的对象,第二个参数字符串是什么意思啊。 自己写了一个继承,Laya.class(LayaIndex,"LayaIndex",indexUI);...

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

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

...on 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=null; GameUI.__super.call(this); } CLASS$(GameUI,'ui.GameUI',_super); var __proto__=GameUI...

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

13. 新手入坑请教下各位大神关于LayaMaxUI问题 [ 94%]

新手入坑请教下各位大神关于LayaMaxUI问题 /**This class is automatically generated by LayaAirIDE, please do not make any modifications. */ import View=Laya.View; import Dialog=Laya.Dialog; import Scene=Laya.Scene; var REG: Function = Laya.ClassUtils.regClass; export module ui.test { ex...

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

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

...t1 */ var t2 = (function (_super) { function t2() { t2.super(this); } Laya.class(t2,'t2',_super); t2.prototype.a = function(){ console.log('2222'); } return t2; }(t1)); gls_laybox • 2018-01-04 11:35 额,你可能没仔细看我的代码,我的那个是自己写的类,如果是继承官方的...

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

15. Uncaught TypeError: Game.super is not a function [ 90%]

...n var Game = (function(_super){ function Game() { Game.super(this); } Laya.ClassUtils(Game,"Game",_super) return Game; })(ui.GameUI) 2017-10-12 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Monica - 知识达人 ...

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

16. 2.0 Beta3版本中,runtime脚本的的问题 [ 90%]

...分享 微博 QZONE 微信 Laya_Aaron 赞同来自: /*layaMaxUI.ts  *This class is automatically generated by LayaAirIDE, please do not make any modifications. */ import View=Laya.View; import Dialog=Laya.Dialog; import Scene=Laya.Scene; export module ui { export class BGPageUI extends View { const...

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

17. 继承Scene没有onEnable [ 90%]

... Laya.Scene.root.addChild(t);     } } //激活启动类 new Main();  class tt extends Laya.Node{     constructor(){         super();     }     public onAwake():void{         console.log(1111);     } }   2.继承Sprite 执行后会有onAwake         let...

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

18. 关于类中方法的调用 [ 89%]

...ount = function(){         //-----         }     }     Laya.class(FactionListItem,"FactionListItem",FactionMainNodeUI);     return FactionListItem; })();       在一个类里。。我可以用this.这样直接调用方法吗?我现在调用了会报错? 2017-11-27 添加评...

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

19. 升级引擎到1.7.19.1beta List报错问题 [ 89%]

...博 QZONE 微信 Calvin 赞同来自: 可以证实的,有如下场景: class PageList extends laya.ui.List {        constructor()      {           super();       }        protected initialize():void        {              super.initialize();              this...

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

20. 对话框点击空白处无法关闭 [ 89%]

... testUI=(function(_super){ function testUI(){ testUI.__super.call(this); } CLASS$(testUI,'ui.testUI',_super); var __proto__=testUI.prototype; __proto__.createChildren=function(){ laya.ui.Component.prototype.createChildren.call(this); this.createView(testUI.uiView); } testUI.uiView={"type":"Dialog","...

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