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

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

61. 想用js写一个什么也不继承的类,但每次实例化这个类的时候会报错,是不是这个类写得不对呀 [ 78%]

...的时候会报错,是不是这个类写得不对呀 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

62. laya 2.0 bug onEnable 分离模式节点没有创建 [ 78%]

...加载要时间,如果第二次使用 构造函数因为必须先执行super();才能写其他代码  super();  this.once("onViewCreated",this,this.loader_over); 但在执行 super()时 判断JSON已经加载完毕,直接就触发onViewCreated但这时候还没有监听事件 导致后面监...

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

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

...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

64. 关于环形进度条,进度不能重置问题 [ 78%]

...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

65. 我实现内购的时候,通过ios原生已经成功购买,弹出alert [ 77%]

...么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 super1013 相关问题 微信关系链:LayaAir引擎针对微信小游戏好友关系链实现方案 如何实现微信登录? 有什么容器能够实现当子元素达到显示上限后自动滚屏,使得新添加的元...

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

66. LAYA的AS3项目碰见个问题,求解 [ 77%]

...        public function myTexts()         {             super();         }         override protected function initialize():void         {             super.initialize();         }        private var names:String="";        override public ...

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

67. 2.0按钮添加事件报错 cannot read property 'on' fof undefined [ 77%]

...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

68. 感觉实例之间是关联的,求指教。(已解决) [ 77%]

...   这是场景代码/* * 用户扑克界面; */ 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

69. 模仿教程里的打地鼠写的代码,运行报错 [ 77%]

...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

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

...     })();   //循环滚动的游戏背景 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