UnityEngine.CharacterController.INTERNAL_CALL_SimpleMove C# (CSharp) Method

INTERNAL_CALL_SimpleMove() private method

private INTERNAL_CALL_SimpleMove ( CharacterController self, Vector3 &speed ) : bool
self CharacterController
speed Vector3
return bool
        private static extern bool INTERNAL_CALL_SimpleMove(CharacterController self, ref Vector3 speed);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
 public bool SimpleMove(Vector3 speed)
 {
     return(CharacterController.INTERNAL_CALL_SimpleMove(this, ref speed));
 }