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

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

101. 发射射线检测不到,物体有包围盒 [ 69%]

...了Scene3d             scene3d.name = 'good';             self.owner.addChild(scene3d);              var lv = scene3d.getChildByName("--- GAMEPLAY ---").getChildByName("Levels Parent");              // Laya.Sprite3D.load("res/prefabs/Conventional/prefabs.lh", Laya.Handler.c...

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

102. 取色器组件 · LayaAir3.0文档 · LAYABOX [ 69%]

...eHandler = new Laya.Handler(this, this.onChangeColor, [colorPicker]); this.owner.addChild(colorPicker); this.onChangeColor(colorPicker); } private onChangeColor(colorPicker: Laya.ColorPicker, e: any = null): void { console.log(colorPicker.selectedColor); } } 运行效果如下动图所示: (动...

来源: Laya3.0_文档 发布时间: 20241014

103. 关于TS get/set重写问题 [ 69%]

...: 参考下https://ldc.layabox.com/doc/?nav=zh-ts-2-4-2这篇文档中的owner方法 2018-03-05 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 radyslove 相关问题 发起问题须知,必看!!!不按提问规则的,官方拒...

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

104. 内置骨骼动画 · LayaAir3.0文档 · LAYABOX [ 68%]

...ture.x = 300; this.mArmature.y = 350; this.mArmature.scale(0.5, 0.5); this.owner.addChild(this.mArmature); //设置动画播放完成后,调用completeHandler继续播放下一个动画 this.mArmature.on(Laya.Event.STOPPED, this, this.completeHandler); this.play(); }); } private completeHandler():...

来源: Laya3.0_文档 发布时间: 20230303

105. 动画加载完成的监听是怎样写? [ 68%]

...样写? let fly = Laya.Pool.getItemByCreateFun("fly", this.fly, this); owner.addChild(fly); fly.play(0, true, "ani1");   fly() { let ani = new Laya.Animation(); ani.loadAnimation("plaen4.ani"); return ani; }   这样写是可以正常播放,但是会有这个警告 ani not found: plaen4.ani#an...

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

106. [LayaAir3]clickHandler只会执行一次,之后点击不再触发 laya.3.0.9 [ 68%]

...                let btn:Laya.Button = LayaUtil.GetChildByPath(this.owner, "CreatePanel/BtnCreate");                 btn.clickHandler = Laya.Handler.create(this, this.onClickCreate)                 this.drawGrid();     }      onClickCreate()     {         // ()=>...

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

107. [LayaAir3]给box设置filters,里面的spine无效或者无法显示 [ 67%]

...updateWorldTransform(); this.spineItem.render(this._currentPlayTime); this.owner.repaint(); } layabox • 2024-11-09 14:19 @136*****142:我们是用你的示例工程实测没问题的,可能是你不太会弄,给搞错了。那你联系右下角的引擎客服微信,要一个内部的安装...

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

108. Shader预编译解决方案 [ 67%]

...= Shader3D._debugShaderVariantInfo;     var debugSubShader = this._owner;     var debugShader = debugSubShader._owner;     var deugDefines = ShaderPass._debugDefineString;     //将defineDatas抓换成宏定义数组     Shader3D._getNamesByDefineData(compileDefine, de...

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

109. 如何通过代码控制prefab上面的时间轴动画animation? [ 67%]

...作。 ... ani_show:Laya.FrameAnimation; onAwake(){ this.ani_show = this.owner["play"] as Laya.FrameAnimation; // 在onAwake中添加播放完成事件,基于某些原因,可能在onDisable的时候被移除,如果发现异常,可以选择在onEnable里面添加事件 this.ani_show.on(Laya.E...

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

110. 垂直布局容器组件 · LayaAir3.0文档 · LAYABOX [ 67%]

...n(() => { this.createBtn(); this.createvbox(); // 添加VBox组件 this.owner.addChild(this.vbox); }); } // 创建Button组件 private createBtn(): void { this.btn1 = new Laya.Button(this.skins); this.btn2 = new Laya.Button(this.skins); this.btn3 = new Laya.Button(this.skins); } // 创建VBox组...

来源: Laya3.0_文档 发布时间: 20241014