大约有 3 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0032 秒)
... 触发事件生命周期方法名称 触发事件生命周期方法说明 onTriggerEnter 刚发生物体接触时,也就是触发事件生命周期内的第一次进行接触,自动执行的生命周期虚方法,该方法只会执行一次。 onTriggerStay 持续的物体接触时,也就是...
来源: Laya3.0_文档 发布时间: 20241014
...了标签名后,如图12-6所示。 (图12-6) 应对的示例代码: onTriggerEnter(other: any): void { //other是碰撞到的碰撞体对象,根据碰撞到的标签处理对应的逻辑 if (other.label === "buttle") { //碰撞到子弹后,增加积分,播放声音特效 //省略若干代...
来源: Laya3.0_文档 发布时间: 20241014
...s.owner.getComponent(Laya.RigidBody); rig.setVelocity({ x: 0, y: -10 }); } onTriggerEnter(other: any, self: any, contact: any): void { //如果被碰到,则移除子弹 this.owner.removeSelf(); } onUpdate(): void { //如果子弹超出屏幕,则移除子弹 if ((this.owner as Laya.Sprite).y <...
来源: Laya3.0_文档 发布时间: 20241014