UnityEngine.WheelJoint2D.INTERNAL_CALL_GetMotorTorque C# (CSharp) 메소드

INTERNAL_CALL_GetMotorTorque() 개인적인 메소드

private INTERNAL_CALL_GetMotorTorque ( WheelJoint2D self, float timeStep ) : float
self WheelJoint2D
timeStep float
리턴 float
        private static extern float INTERNAL_CALL_GetMotorTorque(WheelJoint2D self, float timeStep);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

예제 #1
0
 public float GetMotorTorque(float timeStep)
 {
     return(WheelJoint2D.INTERNAL_CALL_GetMotorTorque(this, timeStep));
 }