このページを含むバージョン:
このページを含まないバージョン:
ワールド空間における衝突点
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void OnControllerColliderHit(ControllerColliderHit hit) { Debug.Log("I impacted at: " + hit.point); } }