MonoBehaviour.OnJointBreak 当关节断开

function OnJointBreak (breakForce : float) : void

Description描述

Called when a joint attached to the same game object broke.

当附在同一对象上的关节被断开时调用。

When a force that is higher than the breakForce of the joint, the joint will break off. When the joint breaks off, OnJointBreak will be called and the break force applied to the joint will be passed in. After OnJointBreak the joint will automatically be removed from the game object and deleted.

当一个力大于这个关节的承受力时,关节将被断开。此时OnJointBreak将被调用,应用到关节的力将被传入。之后这个关节将自动从游戏对象中移除并删除。

参见: Joint.breakForce

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnJointBreak(float breakForce) {
		Debug.Log("Joint Broke!, force: " + breakForce);
	}
}
function OnJointBreak(breakForce : float) {
	Debug.Log("Joint Broke!, force: " + breakForce);
}
最后修改:2011年1月2日 Sunday 20:41

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。