InteractiveCloth.isTeared 是否撕裂

var isTeared : bool

Description描述

Did the cloth tear? (Read Only)

布料是否撕裂?(只读)

参见: tearFactor 变量

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Update() {
		if (transform.GetComponent().isTeared)
			Debug.Log("Cloth teared!");

	}
}
function Update() {
	if(transform.GetComponent(InteractiveCloth).isTeared)
		Debug.Log("Cloth teared!");
}
最后修改:2011年3月27日 Sunday 18:39

本脚本参考基于Unity 3.4.1f5

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