包含此页的版本:
不含此页的版本:
世界空间中的撞击点。
using UnityEngine;public class Example : MonoBehaviour { void OnControllerColliderHit(ControllerColliderHit hit) { // print the impact point Debug.Log("I impacted at: " + hit.point); } }