コントローラーがヒットしたリジッドボディ
リジッドボディに接触せず、静的コライダーに接触した場合は null
// Activate the gravity of other object we touch function OnControllerColliderHit(hit : ControllerColliderHit) { if(hit != null) { hit.rigidbody.useGravity = true; } }
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void OnControllerColliderHit(ControllerColliderHit hit) { if (hit != null) hit.rigidbody.useGravity = true; } }