大约有 426 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0048 秒)
关于super的疑惑 自从使用Laya以来按照教程使用固定格式,在构造函数里.super(this),说是调用父类的构造方法,搜了一下引擎的core.js,没有找到关于这个方法的实现,百度了一下这个super应该是一个关键字吧 Laya怎么做到的 2017-09...
来源: Laya_社区 发布时间: 20170901
...: 与内容相关的链接 提交 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
...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
...问题 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
...独用在其它文件也是没有反应, 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
...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
...的回调 if (this.connected) return; super.connect(IP, PORT); } //////////////////////////////////// protected _onOpen(...args: any[]): void { super._onOpen(args); this.state_ = EConnectionSt...
来源: Laya_社区 发布时间: 20170602
...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
...链接 提交 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
... })(); //循环滚动的游戏背景 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