UnityEngine.SliderJoint2D.INTERNAL_CALL_GetMotorForce C# (CSharp) Method

INTERNAL_CALL_GetMotorForce() private method

private INTERNAL_CALL_GetMotorForce ( SliderJoint2D self, float timeStep ) : float
self SliderJoint2D
timeStep float
return float
        private static extern float INTERNAL_CALL_GetMotorForce(SliderJoint2D self, float timeStep);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
 public float GetMotorForce(float timeStep)
 {
     return(SliderJoint2D.INTERNAL_CALL_GetMotorForce(this, timeStep));
 }