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

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

271. 提示错误在laya.core.js里 [ 52%]

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

272. 动画状态脚本(JavaScript-3D基础(JS)-LayaAir3D之Animator动画) [ 52%]

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

273. 官方案例里摄像机绕物体旋转脚本的问题 [ 52%]

...本下有很多接口,属性不存在。比如this.camera.moveForward、 super._initialize(owner)、super._update(state)等,放在1.7版本里是有的。是不是LayaAir.d.ts有修改。现在有别的接口,方法替代吗,我在官方文档里找了好久都没找到。或者哪位大神...

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

274. 动画状态脚本(TypeScript-3D基础(TS)-LayaAir3D之Animator动画) [ 52%]

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

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

...lass b extends Laya.Script{    _initialize(owner:Laya.Sprite3D){      super._initialize(owner);      //加打印可以执行    }        _start(state:Laya.RenderState):void{       //加打印不执行     } }   该脚本加在Camera上面 2018-04-23 1 条评论 免费帖 --> 分...

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

276. 解析sk资源报错 [ 52%]

...     public function CombatRole()         {             super();             initView();         }                  private function initView():void         {             _templet = new Templet();             _templet.on(Event.COM...

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

277. Clip组件Bug:Play方法无法结束循环 [ 52%]

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

278. 鼠标事件能否在有图形的区域感应,特别是子项坐标为负数时(已经找到问题) [ 52%]

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

279. 打包app后可以横屏旋转 [ 52%]

...自: public function MainView()         {             super();                          mainCan = new Sprite();             Laya.stage.addChild(mainCan);                          dialogCan = new Sprite();        ...

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

280. [LayaAir 2.0] 如何用代码为Spirte添加2d物理特性 [ 51%]

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