public Vector3 point ;

Description

世界空间中的撞击点。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnControllerColliderHit(ControllerColliderHit hit) { Debug.Log("I impacted at: " + hit.point); } }