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

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

21. TypeError: Failed to execute 'texImage2D' on 'WebGLRenderingContext' [ 67%]

...roperty 'pivotX' of null 打开弹窗UI时报错 Uncaught TypeError: Class constructor Component cannot be invoked without 'new' TypeError: Cannot read property 'length' of null TypeError: Cannot read property 'getSubShaderAt' of undefined Uncaught TypeError: Cannot read property 'indexCount' Uncaug...

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

22. 实例化 laya.ani.bone.Skeleton 对象报错 [ 66%]

....Skeleton 对象报错 export default class showSpine extends Laya.Script{ constructor() { super(); //创建一个Skeleton对象 //Laya let skeleton: laya.ani.bone.Skeleton = new laya.ani.bone.Skeleton(); } } 实例化报错 为啥 2018-09-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没...

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

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

...的,有如下场景: class PageList extends laya.ui.List {        constructor()      {           super();       }        protected initialize():void        {              super.initialize();              this.itemRender = PageRender;//错误,因为_cells...

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

24. @regClass编译报错! [ 63%]

... // src/MachineCtrl.ts   var MachineCtrl = class extends CtrlBase {     constructor() {       super();     }   };   __name(MachineCtrl, "MachineCtrl");    // src/funcccccc.ts   var funzzzzz = class {     constructor() {     }     static run(callBack, caller, time) {       new M...

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

25. Laya2.2问题,有没有遇到的? [ 63%]

...? 子域所有代码 (function () { 'use strict';  class GameConfig { constructor() { } static init() { var reg = Laya.ClassUtils.regClass; } } GameConfig.width = 640; GameConfig.height = 1136; GameConfig.scaleMode = "fixedwidth"; GameConfig.screenMode = "none"; GameConfig.alignV = "top"; GameCon...

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

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

... property 'on' fof 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 undefin...

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

27. js继承模式 [ 63%]

...) { (b.hasOwnProperty(p)) && (d[p] = b[p]); } function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; var BackGround = (function() { __extends(Class, Laya.Sprite); function Class() { Laya.Sprite.call(this); this.img = [...

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

28. Laya2.4版本,场景为内嵌时layaMaxUI类中没有声明场景中的Button等控件? [ 62%]

...el":"label"},"compId":3}],"loadList":["comp/button.png"],"loadList3D":[]}; constructor(){ super()} createChildren():void { super.createChildren(); this.createView(GameSceneuiUI.uiView); } } REG("ui.GameSceneuiUI",GameSceneuiUI); export class GameViewUI extends Laya.View { public static uiView:any ={...

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

29. Laya2.4版本,场景为内嵌时layaMaxUI类中没有声明场景中的Button等控件? [ 62%]

...mpId":3}],"loadList":["comp/button.png"],"loadList3D":[]};         constructor(){ super()}         createChildren():void {             super.createChildren();             this.createView(GameSceneuiUI.uiView);         }     }     REG("ui.Game...

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

30. ts继承后,代码压缩的问题 [ 62%]

...b[p] } ; return function(d, b) { extendStatics(d, b); function __() { this.constructor = d } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __) } }(); 然后运行代码会报Uncaught TypeError: LayerManager is not a constructor的错误 我看到Laya有一个Laya.cla...

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