大约有 11 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0034 秒)
...- 3.碰撞事件 onCollisionEnter、onCollisionStay、onCollisionExit、onTriggerEnter、onTriggerStay、onTriggerExit。 - 4.物理属性(通过刚体进行设置) restitution弹力、friction摩擦力、mass质量、linearDamping线性阻尼、angularDamping角阻尼、linearVelocity线速...
来源: Laya2.0_文档 发布时间: 20210715
...- 3.碰撞事件 onCollisionEnter、onCollisionStay、onCollisionExit、onTriggerEnter、onTriggerStay、onTriggerExit。 - 4.物理属性(通过刚体进行设置) restitution弹力、friction摩擦力、mass质量、linearDamping线性阻尼、angularDamping角阻尼、linearVelocity线速...
来源: Laya2.0_文档 发布时间: 20210714
...说明 | | -------------- | ---------------------------------------- | | onTriggerEnter | 发生物理碰撞时,也就是碰撞生命周期内的第一次进入碰撞,自动执行的生命周期虚方法。 | | onTriggerStay | 发生持续的物理碰撞时,也就是碰撞生命周期内的第...
来源: Laya2.0_文档 发布时间: 20210715
...执行,只会执行一次 */ onStart() {} /** * 开始触发时执行 */ onTriggerEnter(other) {} /** * 持续触发时执行 */ onTriggerStay(other) {} /** * 结束触发时执行 */ onTriggerExit(other) {} /** * 开始碰撞时执行 */ onCollisionEnter(collision) {} /** * 持续碰撞时执行 ...
来源: Laya2.0_文档 发布时间: 20210714
...一次 */ public onStart():void {} /** * 开始触发时执行 */ public onTriggerEnter(other:Laya.PhysicsComponent):void {} /** * 持续触发时执行 */ public onTriggerStay(other:Laya.PhysicsComponent):void {} /** * 结束触发时执行 */ public onTriggerExit(other:Laya.PhysicsComponent):void ...
来源: Laya2.0_文档 发布时间: 20210715
... onStart():void {} /** * 开始触发时执行 */ public override function onTriggerEnter(other:PhysicsComponent):void {} /** * 持续触发时执行 */ public override function onTriggerStay(other:PhysicsComponent):void {} /** * 结束触发时执行 */ public override function onTriggerExit(other:...
来源: Laya2.0_文档 发布时间: 20210715
...改为绿色 * 注:如相对移动速度过快,可能直接越过 */ onTriggerEnter(other) { this.owner.meshRenderer.sharedMaterial.albedoColor = new Laya.Vector4(0.0, 1.0, 0.0, 1.0); } /** * 当其他碰撞器进入绑定物体碰撞器后逐帧触发(子弹在物品内时) * 注:如相...
来源: Laya2.0_文档 发布时间: 20210715
...绿色 * 注:如相对移动速度过快,可能直接越过 */ public onTriggerEnter(other:Laya.PhysicsComponent):void { ((this.owner as Laya.MeshSprite3D).meshRenderer.sharedMaterial as BlinnPhongMaterial).albedoColor = new Laya.Vector4(0.0, 1.0, 0.0, 1.0); } /** * 当其他碰撞器进入绑...
来源: Laya2.0_文档 发布时间: 20210715
...相对移动速度过快,可能直接越过 */ override public function onTriggerEnter(other:PhysicsComponent):void { ((owner as MeshSprite3D).meshRenderer.sharedMaterial as BlinnPhongMaterial).albedoColor = new Vector4(0.0, 1.0, 0.0, 1.0); } /** * 当其他碰撞器进入绑定物体碰撞器后...
来源: Laya2.0_文档 发布时间: 20210714
...------- | ------------------------------------------------------------ | | onTriggerEnter | **刚发生物体接触时**,也就是触发事件生命周期内的第一次进行接触,自动执行的生命周期虚方法,该方法只会执行一次。 | | onTriggerStay | **持续的物体接触...
来源: Laya2.0_文档 发布时间: 20210715