大约有 395 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0039 秒)
关于js继承类class的参数问题 Laya.class(LoginView, "LoginView", LoginUI) ; // 设置继承关系. 括号里第一个参数是一个方法,第三个是要继承的对象,第二个参数字符串是什么意思啊。 自己写了一个继承,Laya.class(LayaIndex,"LayaIndex",indexUI);...
来源: Laya_社区 发布时间: 20180426
...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
新手入坑请教下各位大神关于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
...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
...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
...分享 微博 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
... 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
...ount = function(){ //----- } } Laya.class(FactionListItem,"FactionListItem",FactionMainNodeUI); return FactionListItem; })(); 在一个类里。。我可以用this.这样直接调用方法吗?我现在调用了会报错? 2017-11-27 添加评...
来源: Laya_社区 发布时间: 20171127
...博 QZONE 微信 Calvin 赞同来自: 可以证实的,有如下场景: class PageList extends laya.ui.List { constructor() { super(); } protected initialize():void { super.initialize(); this...
来源: Laya_社区 发布时间: 20180810
... 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