大约有 379 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0037 秒)
...件后直接使用changeNormal()来切换一下渲染方式。 例如:onEnable(): void { Laya.loader.load("swk/zhujue_wk.skel", Laya.Handler.create(this, () => { this.owner.getComponent(Laya.Spine2DRenderNode).changeNormal(); })); } 2024-10-10 0 1 分享 微博 QZONE 微信 layabox 赞同...
来源: Laya_社区 发布时间: 20240929
...useManager.multiTouchEnabled = false; this.loadScene("LoginGame.scene"); } onEnable() { SoundManager.playMusic("audio/梅林茂 - 静かな古都.mp3", 0); this.login_game_button.on(Laya.Event.CLICK, this,this.onStartButtonClick); } onStartButtonClick(){ // 创建Video元素 let videoElement = Laya....
来源: Laya_社区 发布时间: 20181124
...super(); } // 组件被启用后执行,例如节点被添加到舞台后 onEnable(): void { // 给List对象赋值 var data: Array<any> = []; for (var m: number = 0; m < 20; m++) { data.push({ m_label: "No." + m }); } this.list.array = data; } } 代码中,m_label的命名要与List列...
来源: Laya3.0_文档 发布时间: 20241014
...动效模板 可能存在bug Laya 2.7.0beta Scene与脚本的onAwake()与onEnable()调用时机存在问题 怎样跨页面执行脚本命令? 脚本组件继承于 Laya.Script。 其中的_update方法,多长时间会调用一次? 可以设置调用时间吗? 问题状态 最新活动: 2018...
来源: Laya_社区 发布时间: 20181214
...a.Script { constructor(){ alert("1"); //执行后这里触发了 super();} onEnable(){ alert("2"); //执行后这里触发了 } onclick(){ alert("3"); //执行后点击按钮这里没触发,不知道为什么 //Laya.Scene.open("_game.scene"); } } 2018-10-28 添加评论 免费帖 --> 分享 微博...
来源: Laya_社区 发布时间: 20181028
...,只会执行一次 */ onStart(): void { } onUpdate(): void { } onEnable(): void { } /** * 手动调用节点销毁时执行 */ onDestroy(): void { } } 编译了,也导出了,脚本是存在的,场景文件用的是分离模式 附件 : --> 2018-10-13 添加评论 免费帖 -->...
来源: Laya_社区 发布时间: 20181013
...Classpublic class CircleColliderInheritanceCircleCollider ColliderBase Component Object 2D圆形碰撞体 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By density : Number密度值,值可以为零或者是正数,建议使用相似的密度...
来源: Laya2.0_api 发布时间: 20190513
...s Accessors active activeInHierarchy boundsMax boundsMin boxProjection components destroyed displayedInStage hideFlags id importance intensity is3D layer numChildren parent probePosition reflectionTexture scene timer transform url Methods _getIndexInReflectionList _initialize _processActive _setInde...
来源: Laya3.0_api 发布时间: 20231102
...取宽高会出现延迟情况 在main执行完成后加载的首个场景onEnable 回调里,以下截图是首次执行 和定时延迟执行后输出的laya.stage.height. 测试机型:ip14 pro 测试系统:16.1.1 其他平台-OV小米-正常 附件 : --> demo.rar 2023-03-16 添加评论 ...
来源: Laya_社区 发布时间: 20230316
[LayaAir3]addComponent(Laya.Rigidbody3D); 报错 //组件被启用后执行,例如节点被添加到舞台后 onEnable(): void { let a = this.owner.getChildByName("Sprite3D") as Laya.Sprite3D; console.log(a,typeof(a)) let aa = a.addComponent(Laya.Rigidbod...
来源: Laya_社区 发布时间: 20240102