ControllerColliderHit.normal Manual     Reference     Scripting  
Scripting > Runtime Classes > ControllerColliderHit
ControllerColliderHit.normal

var normal : Vector3

Description

The normal of the surface we collided with in world space

JavaScript
// print the point's normal we impacted
function OnControllerColliderHit(hit : ControllerColliderHit) {
Debug.Log("Normal vector we collided at: " + hit.normal);
}