大约有 69 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0041 秒)
...个类,内部没有任何实现,继承关系分别为如下: class V extends Laya.Sprite {} class W extends V {} class L extends W {} 编译后的index.html中,引入顺序错误,如下: <!--jsfile--startTag--> <script src="js/W.js"></script> <...
来源: Laya_社区 发布时间: 20181030
...继承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
...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
...测的问题 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
Laya.Script的派生类的_update函数不工作? 我从Laya.Script类extends了一个自己的class,贴在一个物体上,运行的时候脚本的_start函数中的log正常打印出来了,但是_update函数中的log没有打印 _update(state:Laya.RenderState) { console.log("state:", st...
来源: Laya_社区 发布时间: 20180614
...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
...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
... _start和_update以及_lateupdate不执行是什么原因呢? class b extends Laya.Script{ _initialize(owner:Laya.Sprite3D){ super._initialize(owner); //加打印可以执行 } _start(state:Laya.RenderState):void{ //加打印不执行 } } ...
来源: Laya_社区 发布时间: 20180423
...法获知,我点的是哪个,代码 如下 export default class btn1 extends Laya.Script { constructor(){super();} onEnable(){} onClick(){ alert("id="+this.id); //这里有一个id,但是系统自动生成的,无法获知这个id代表哪个按钮被点(因为我有4个按钮都绑了这...
来源: Laya_社区 发布时间: 20181029
...手小白 不明白为什么都是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