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

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

1. TS版本编译后JS在HTML中顺序错乱,有最简DEMO! [ 100%]

...个类,内部没有任何实现,继承关系分别为如下: class V extends Laya.Sprite {} class W extends V {} class L extends W {} 编译后的index.html中,引入顺序错误,如下:     <!--jsfile--startTag-->     <script src="js/W.js"></script>     &lt...

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

2. 分享:关于自定义场景继承的实现 [ 89%]

...继承Laya.Scene BaseScene.tsexport namespace base{ export class BaseScene extends Laya.Scene{ constructor(){ super(); console.log('BaseScene:我是基类BaseScene,我的子类是导出类,我的父类是场景类'); } } } 导出UI 导出后layaMaxUI.ts的内容如下/**This class is automatically...

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

3. @regClass编译报错! [ 86%]

...return result;   };    // src/MachineCtrl.ts   var MachineCtrl = class extends CtrlBase {     constructor() {       super();     }   };   __name(MachineCtrl, "MachineCtrl");    // src/funcccccc.ts   var funzzzzz = class {     constructor() {     }     static run(callBack, calle...

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

4. laya3d物体碰撞与触发检测的问题 [ 86%]

...测的问题 import BoxMove from "./BoxMove"; export default class GameUI extends Laya.Scene { constructor() { super(); //加载场景文件 this.loadScene("test/TestScene.scene"); //添加3D场景 var scene = Laya.stage.addChild(new Laya.Scene3D()); //添加照相机 var camera = (scene.addChild(ne...

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

5. Laya.Script的派生类的_update函数不工作? [ 84%]

Laya.Script的派生类的_update函数不工作? 我从Laya.Scriptextends了一个自己的class,贴在一个物体上,运行的时候脚本的_start函数中的log正常打印出来了,但是_update函数中的log没有打印 _update(state:Laya.RenderState) { console.log("state:", st...

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

6. 新手入坑请教下各位大神关于LayaMaxUI问题 [ 84%]

...Laya.ClassUtils.regClass; export module ui.test { export class TestSceneUI extends Laya.Scene {         public scoreLbl:Laya.Label;         public tipLbll:Laya.Label; constructor(){ super()} createChildren():void { super.createChildren(); this.loadScene("test/TestScene"); } } REG("ui...

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

7. 继承Scene没有onEnable [ 83%]

...ene.root.addChild(t);     } } //激活启动类 new Main();  class tt extends Laya.Node{     constructor(){         super();     }     public onAwake():void{         console.log(1111);     } }   2.继承Sprite 执行后会有onAwake         let t = new ...

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

8. Laya.Script _start和_update以及_lateupdate不执行是什么原因呢? [ 83%]

... _start和_update以及_lateupdate不执行是什么原因呢?  class b extends Laya.Script{    _initialize(owner:Laya.Sprite3D){      super._initialize(owner);      //加打印可以执行    }        _start(state:Laya.RenderState):void{       //加打印不执行     } }   ...

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

9. 请问 layaair2.0的js有没有api可以查询 例如Laya.Script [ 81%]

...法获知,我点的是哪个,代码 如下 export default class btn1 extends Laya.Script { constructor(){super();} onEnable(){} onClick(){ alert("id="+this.id); //这里有一个id,但是系统自动生成的,无法获知这个id代表哪个按钮被点(因为我有4个按钮都绑了这...

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

10. 获取不到父物体 节点 [ 80%]

...手小白 不明白为什么都是null 的export default class startScene extends Laya.Scene { private sp: Sprite; public constructor() { super(); console.log("startScene"); console.log(Laya.stage.name); console.log(Laya.stage.numChildren); console.log(this.numChildren); console.log(this.parent); co...

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