UnityEngine.SliderJoint2D.INTERNAL_CALL_GetMotorForce C# (CSharp) 메소드

INTERNAL_CALL_GetMotorForce() 개인적인 메소드

private INTERNAL_CALL_GetMotorForce ( SliderJoint2D self, float timeStep ) : float
self SliderJoint2D
timeStep float
리턴 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));
 }