Version: 2017.1
public Vector3 moveDirection ;

Description

The direction the CharacterController was moving in when the collision occured.

Данное свойство можно использовать для нахождения направления, в котором будут приложены силы, к коснувшимся rigidbodies.

Note that this is not necessarily the same as the movement vector passed to CharacterController.Move or CharacterController.SimpleMove. The CharacterController uses a sequence of motions to perform a move in accordance with the move direction and the step Offset, in order to step over obstacles. moveDirection will be the direction of the motion during which the collision was detected.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnControllerColliderHit(ControllerColliderHit hit) { Debug.Log(hit.moveDirection); } }