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

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

81. 实例化 laya.ani.bone.Skeleton 对象报错 [ 64%]

...ani.bone.Skeleton 对象报错 export default class showSpine extends Laya.Script{ constructor() { super(); //创建一个Skeleton对象 //Laya let skeleton: laya.ani.bone.Skeleton = new laya.ani.bone.Skeleton(); } } 实例化报错 为啥 2018-09-28 添加评论 免费帖 --> 分享 微博 QZONE ...

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

82. 微信小游戏,实现监听前后台切换 [ 64%]

...import wxHelper from 'wxhelper' export default class welcome extends Laya.Script { constructor() { super() } onEnable() { wxHelper.onShow(this.resumeGame) wxHelper.onHide(this.pauseGame) } resumeGame () { console.log('resumeGame') } pauseGame () { console.log('pauseGame') } onDestroy () { wxHelper.o...

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

83. 两个移动的简单物体 onTriggerEnter 无法触发 (有悬赏) [ 64%]

...nTriggerEnter,   export default class BulletControlTrigger extends Laya.Script3D { constructor(){ super(); }  /** * 开始触发时执行 * 此方法为虚方法,使用时重写覆盖即可 */ onTriggerEnter(other){ console.log("onTriggerEnter"); };  onTriggerStay(other){ console.log("onTrigg...

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

84. 请问js怎么触发按钮的onclick事件,按教程的写,触发不知道为什么。 [ 63%]

...一个btn1.js 我在这样写的   export default class btn1 extends Laya.Script { constructor(){ alert("1"); //执行后这里触发了 super();} onEnable(){ alert("2"); //执行后这里触发了 } onclick(){ alert("3"); //执行后点击按钮这里没触发,不知道为什么 //Laya.Scene.ope...

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

85. 单选框组组件 · LayaAir3.0文档 · LAYABOX [ 63%]

...oGroup: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { @property({ type: Laya.RadioGroup }) public radiogroup: Laya.RadioGroup; //组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { thi...

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

86. 取色器组件 · LayaAir3.0文档 · LAYABOX [ 62%]

...s, property } = Laya; @regClass() export class UI_ColorPicker extends Laya.Script { private skin: string = "atlas/comp/colorPicker.png"; constructor() { super(); } // 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { Laya.loader.loa...

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

87. 树状列表组件 · LayaAir3.0文档 · LAYABOX [ 62%]

...如下: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { @property({ type: Laya.Tree }) public tree: Laya.Tree; //组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { //初始化树状列...

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

88. 按钮组件 · LayaAir3.0文档 · LAYABOX [ 62%]

...代码: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { @property({ type: Laya.Button }) public btn: Laya.Button; //组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { this.btn.scale(5, ...

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

89. 提示错误在laya.core.js里 [ 61%]

...ty场景导入到laya2.6. export default class SceneLoad extends Laya.Script{     constructor(){         super();     }     onAwake(){         Laya.Scene3D.load("res/LayaScene_demo/Android/demo.ls",Laya.Handler.create(this,function(scene){             Lay...

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

90. [LayaAir3]Laya.loader.loadPackage 加载勾选版本管理的子包失败 [ 61%]

...Class, property } = Laya; @regClass() export class StartScene extends Laya.Script { onAwake(): void { Laya.timer.once(1000, this, () => { Laya.loader.loadPackage("common", "http://127.0.0.1:2840", (p) => { console.log("common", p); }) }); } } 2024-11-04 0 0 分享 微博 QZONE 微信 为什么...

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