大约有 486 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)
...s SceneLoad extends Laya.Script{ constructor(){ super(); } onAwake(){ Laya.Scene3D.load("res/LayaScene_demo/Android/demo.ls",Laya.Handler.create(this,function(scene){ Laya.stage.addChild(scene); })); ...
来源: Laya_社区 发布时间: 20200516
...AnimatorStateScriptTest extends Laya.AnimatorStateScript { constructor() { super(); this._text = null; } get text() { return this._text; } set text(value) { this._text = value; } /** * 动画状态开始时执行。 */ onStateEnter() { console.log("动画开始播放了"); this._text.text = "动画...
来源: Laya2.0_文档 发布时间: 20210715
...本下有很多接口,属性不存在。比如this.camera.moveForward、 super._initialize(owner)、super._update(state)等,放在1.7版本里是有的。是不是LayaAir.d.ts有修改。现在有别的接口,方法替代吗,我在官方文档里找了好久都没找到。或者哪位大神...
来源: Laya_社区 发布时间: 20190224
...xtends Laya.AnimatorStateScript { private _text:Laya.Text; constructor() { super(); } get text():Laya.Text { return this._text; } set text(value) { this._text = value; } /** * 动画状态开始时执行。 */ onStateEnter() { console.log("动画开始播放了"); this._text.text = "动画状态:...
来源: Laya2.0_文档 发布时间: 20210715
...lass b extends Laya.Script{ _initialize(owner:Laya.Sprite3D){ super._initialize(owner); //加打印可以执行 } _start(state:Laya.RenderState):void{ //加打印不执行 } } 该脚本加在Camera上面 2018-04-23 1 条评论 免费帖 --> 分...
来源: Laya_社区 发布时间: 20180423
... public function CombatRole() { super(); initView(); } private function initView():void { _templet = new Templet(); _templet.on(Event.COM...
来源: Laya_社区 发布时间: 20170204
...rows: number, interval?: number, isLoop?: boolean) { super(path, cols, rows); if (interval != void 0) { this.interval = interval; } this.on(Laya.Event.COMPLETE, this, () => { ...
来源: Laya_社区 发布时间: 20201211
...Ui extends Sprite { private var testPan:Sprite; public function MainUi() { super(); this.graphics.drawRect(0,0,500,500,"#fff0cc"); testPan = new Sprite(); testPan.name = "testPan"; this.addChild( testPan ); testPan.pos( 300,300); testPan.graphics.drawRect(0,0,90,100,"#faaff0"); testPan.on(Event.CLIC...
来源: Laya_社区 发布时间: 20161124
...自: public function MainView() { super(); mainCan = new Sprite(); Laya.stage.addChild(mainCan); dialogCan = new Sprite(); ...
来源: Laya_社区 发布时间: 20180306
...sionBoll extends Laya.Sprite { private _boll1:Laya.Sprite; constructor() { super(); //物理模块 this._boll1 = new Laya.Sprite(); this.addChild(this._boll1); this._boll1.x = 20; this._boll1.loadImage('comp/btn_close.png'); let box:laya.physics.BoxCollider = this._boll1.addComponent(laya.physics.Bo...
来源: Laya_社区 发布时间: 20190428