2D ゲームプレイで使用されるコライダー型の親クラス
| attachedRigidbody | The Rigidbody2D attached to the Collider2D. | 
| bounciness | Get the bounciness used by the collider. | 
| bounds | コライダーのワールド座標のバウンディング空間 | 
| composite | Get the CompositeCollider2D that is available to be attached to the collider. | 
| density | 質量の計算に使用されるコライダーの密度( auto mass が有効の場合) | 
| friction | Get the friction used by the collider. | 
| isTrigger | コライダーはトリガーとして設定されているかどうか | 
| offset | コライダージオメトリのローカルでのオフセット。 | 
| shapeCount | コライダーに含まれる領域の数 | 
| sharedMaterial | The PhysicsMaterial2D that is applied to this collider. | 
| usedByComposite | Sets whether the Collider will be used or not used by a CompositeCollider2D. | 
| usedByEffector | コライダーが Effector をアタッチしているかどうか。 | 
| Cast | Casts the Collider shape into the Scene starting at the Collider position ignoring the Collider itself. | 
| ClosestPoint | Returns a point on the perimeter of this Collider that is closest to the specified position. | 
| CreateMesh | Creates a planar Mesh that is identical to the area defined by the Collider2D geometry. | 
| Distance | Calculates the minimum separation of this collider against another collider. | 
| GetContacts | Retrieves all contact points for this Collider. | 
| GetShapeHash | Generates a simple hash value based upon the geometry of the Collider2D. | 
| IsTouching | このコライダーが コライダー に触れているかをチェックします | 
| IsTouchingLayers | このコライダーが指定した レイヤーマスク のコライダーに触れているかをチェックします | 
| OverlapCollider | Get a list of all colliders that overlap this collider. | 
| OverlapPoint | 空間上でコライダーがある地点を含むかチェックします | 
| Raycast | Casts a ray into the Scene that starts at the Collider position and ignores the Collider itself. | 
| OnCollisionEnter2D | オブジェクトのコライダーが別のコライダーに衝突したときに呼び出されます(2D 物理挙動のみ) | 
| OnCollisionExit2D | オブジェクトのコライダーと別のオブジェクトコライダーが衝突から離れた瞬間に呼び出されます(2D 物理挙動のみ) | 
| OnCollisionStay2D | オブジェクトのコライダーと別のオブジェクトのコライダーが衝突している間、毎フレーム呼び出され続けます(2D 物理挙動のみ) | 
| OnTriggerEnter2D | オブジェクトにアタッチしたトリガーの中に別のオブジェクトが入ったときに呼び出されます。(2D 物理挙動のみ) | 
| OnTriggerExit2D | トリガー状態のオブジェクトのコライダーと別のオブジェクトのコライダーが衝突から離れた瞬間に、呼び出されます。(2D 物理挙動のみ) | 
| OnTriggerStay2D | トリガー状態のオブジェクトのコライダーと別のオブジェクトのコライダー衝突している間、毎フレーム呼び出され続けます。(2D 物理挙動のみ) | 
| enabled | 有効であれば更新され、無効であれば更新されません。 | 
| isActiveAndEnabled | Has the Behaviour had active and enabled called? | 
| gameObject | このコンポーネントはゲームオブジェクトにアタッチされます。コンポーネントはいつもゲームオブジェクトにアタッチされています。 | 
| tag | ゲームオブジェクトのタグ | 
| transform | The Transform attached to this GameObject. | 
| hideFlags | Should the object be hidden, saved with the Scene or modifiable by the user? | 
| name | オブジェクト名 | 
| BroadcastMessage | ゲームオブジェクトまたは子オブジェクトにあるすべての MonoBehaviour を継承したクラスにある methodName 名のメソッドを呼び出します。 | 
| CompareTag | このゲームオブジェクトは tag とタグ付けされているかどうか | 
| GetComponent | Returns the component of Type type if the GameObject has one attached, null if it doesn't. Will also return disabled components. | 
| GetComponentInChildren | GameObject や深さ優先探索を活用して、親子関係にある子オブジェクトから type のタイプのコンポーネントを取得します。 | 
| GetComponentInParent | GameObject や深さ優先探索を活用して、親子関係にある親オブジェクトから type のタイプのコンポーネントを取得します。 | 
| GetComponents | GameObject から type のタイプのコンポーネントを「すべて」取得します。 | 
| GetComponentsInChildren | Returns all components of Type type in the GameObject or any of its children. Works recursively. | 
| GetComponentsInParent | GameObject や深さ優先探索を活用して、親子関係にある親オブジェクトから type のタイプのコンポーネントを「すべて」取得します。 | 
| SendMessage | ゲームオブジェクトにアタッチされているすべての MonoBehaviour にある methodName と名付けたメソッドを呼び出します | 
| SendMessageUpwards | ゲームオブジェクトと親(の親、さらに親 ... )にアタッチされているすべての MonoBehaviour にある methodName と名付けたメソッドを呼び出します | 
| TryGetComponent | Gets the component of the specified type, if it exists. | 
| GetInstanceID | オブジェクトのインスタンス ID を返します | 
| ToString | Returns the name of the object. | 
| Destroy | Removes a GameObject, component or asset. | 
| DestroyImmediate | Destroys the object obj immediately. You are strongly recommended to use Destroy instead. | 
| DontDestroyOnLoad | Do not destroy the target Object when loading a new Scene. | 
| FindObjectOfType | タイプ type から最初に見つけたアクティブのオブジェクトを返します | 
| FindObjectsOfType | Gets a list of all loaded objects of Type type. | 
| Instantiate | original のオブジェクトをクローンします | 
| bool | オブジェクトが存在するかどうか | 
| operator != | 二つのオブジェクトが異なるオブジェクトを参照しているか比較します | 
| operator == | 2つのオブジェクト参照が同じオブジェクトを参照しているか比較します。 |