UnityEngine.WheelJoint2D.INTERNAL_CALL_GetMotorTorque C# (CSharp) Method

INTERNAL_CALL_GetMotorTorque() private method

private INTERNAL_CALL_GetMotorTorque ( WheelJoint2D self, float timeStep ) : float
self WheelJoint2D
timeStep float
return 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));
 }