大约有 486 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)
...的时候会报错,是不是这个类写得不对呀 var Test = (function(_super){ function Test(){ Test.super(this); console.log("执行测试构造函数"); } //注册类 Laya.class(Test,"Test",_super); //获取执行域 var _proto = Test.prototype; //_proto. return Test; }...
来源: Laya_社区 发布时间: 20180605
...加载要时间,如果第二次使用 构造函数因为必须先执行super();才能写其他代码 super(); this.once("onViewCreated",this,this.loader_over); 但在执行 super()时 判断JSON已经加载完毕,直接就触发onViewCreated但这时候还没有监听事件 导致后面监...
来源: Laya_社区 发布时间: 20190718
...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
...2 个回复 cuixueying 赞同来自: gls_laybox var IndexView = (function(_super){ this.angle; this.draw; this.box; this.circle; function IndexView(){ IndexView.super(this); this.angle = 0; Laya.timer.loop(200,this,this.loadProgress) var Sprite = Laya.Sprite; this.box = new Sprite(); this.box.cacheA...
来源: Laya_社区 发布时间: 20170807
...么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 super1013 相关问题 微信关系链:LayaAir引擎针对微信小游戏好友关系链实现方案 如何实现微信登录? 有什么容器能够实现当子元素达到显示上限后自动滚屏,使得新添加的元...
来源: Laya_社区 发布时间: 20180205
... public function myTexts() { super(); } override protected function initialize():void { super.initialize(); } private var names:String=""; override public ...
来源: Laya_社区 发布时间: 20170703
...of undefined class GameLogin extends ui.login.login_bgUI { constructor() { super(); this.btn_register.on("click", this, this.ToRegisterPage); } ToRegisterPage() : void { this.loadScene("login/register_page"); } } //调用on的时候 直接会报Cannot read property 'on' of undefined 我再把...
来源: Laya_社区 发布时间: 20181207
... 这是场景代码/* * 用户扑克界面; */ var Panel1 = (function (_super) { function Panel1() { Panel1.super(this); //this.poke_a.x=0; } Laya.class(Panel1, "Panel1", _super); var _proto = Panel1.prototype; //======================================= //将指定的牌显示到桌面上 //======...
来源: Laya_社区 发布时间: 20180130
...G); } })();在background.js里是这样写的 var background = (function (_super) { function background() { background.super(this); } Laya.class(background,"background",_super); return background; })(ui.backgroundUI);backgound.ui也在场景编辑器里编辑并导出了。 然后运行的时候...
来源: Laya_社区 发布时间: 20180129
... })(); //循环滚动的游戏背景 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