コライダーがアタッチされているRigidbody
コライダーがRigidbodyをアタッチしていない場合、nullを返します。 コライダーは同じゲームオブジェクトにアタッチされているRigidboy、 または親のゲームオブジェクトに自動的に接続されます。
// Lift the rigidbody attached to the collider. collider.attachedRigidbody.AddForce(0,1,0);
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Example() { collider.attachedRigidbody.AddForce(0, 1, 0); } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as void: collider.attachedRigidbody.AddForce(0, 1, 0)