INTERNAL_CALL_GetMotorTorque() private method

private INTERNAL_CALL_GetMotorTorque ( HingeJoint2D self, float timeStep ) : float
self HingeJoint2D
timeStep float
return float
コード例 #1
0
 /// <summary>
 ///   <para>Gets the motor torque of the joint given the specified timestep.</para>
 /// </summary>
 /// <param name="timeStep">The time to calculate the motor torque for.</param>
 public float GetMotorTorque(float timeStep)
 {
     return(HingeJoint2D.INTERNAL_CALL_GetMotorTorque(this, timeStep));
 }