私が望むのは、三人称カメラがキューブに触れたときにキューブを破壊することです...しかし、これまでに試したことはすべて失敗しました...
これが私が試したコードです:
#pragma strict
var other : GameObject;
function Start () {
}
function Update () {
}
function OnCollisionEnter ( collision : Collision) {
if (collision.tag == "Character")
Destroy (collision.gameObject);
}
ご提案ありがとうございます。