PrismaticJoint:isLimitsEnabled

PrismaticJoint:isLimitsEnabled Removed in LÖVE 0.8.0 This function is not supported in that and later versions. Checks whether limits are enabled. Function Synopsis enabled = PrismaticJoint:isLimitsEnabled( ) Arguments None. Returns boolean enabled True if enabled, false otherwise. See Also PrismaticJoint

PrismaticJoint:isLimitEnabled

PrismaticJoint:isLimitEnabled Available since LÖVE 0.8.0 This function is not supported in earlier versions. Removed in LÖVE 0.9.0 It has been renamed to PrismaticJoint:hasLimitsEnabled. Checks whether the limits are enabled. Function Synopsis enabled = PrismaticJoint:isLimitEnabled( ) Arguments None. Returns boolean enabled True if enabled, false otherwise. See Also PrismaticJoint

PrismaticJoint:hasLimitsEnabled

PrismaticJoint:hasLimitsEnabled Available since LÖVE 0.9.0 This function is not supported in earlier versions. Checks whether the limits are enabled. Function Synopsis enabled = PrismaticJoint:hasLimitsEnabled( ) Arguments None. Returns boolean enabled True if enabled, false otherwise. See Also PrismaticJoint

PrismaticJoint:getUpperLimit

PrismaticJoint:getUpperLimit Gets the upper limit. Function Synopsis upper = PrismaticJoint:getUpperLimit( ) Arguments None. Returns number upper The upper limit, usually in meters. See Also PrismaticJoint

PrismaticJoint:getMotorSpeed

PrismaticJoint:getMotorSpeed Gets the motor speed. Function Synopsis s = PrismaticJoint:getMotorSpeed( ) Arguments None. Returns number s The motor speed, usually in meters per second. See Also PrismaticJoint

PrismaticJoint:getMotorForce

PrismaticJoint:getMotorForce Returns the current motor force. Function Available since LÖVE 0.8.0 This variant is not supported in earlier versions. Synopsis force = PrismaticJoint:getMotorForce( invdt ) Arguments number invdt How long the force applies. Usually the inverse time step or 1/dt. Returns number force The force on the motor in newtons. Function Removed in LÖVE 0.8.0 This variant is not supported in that and later versions. Synopsis f = PrismaticJoint:getMotorForce( )

PrismaticJoint:getMaxMotorForce

PrismaticJoint:getMaxMotorForce Gets the maximum motor force. Function Synopsis f = PrismaticJoint:getMaxMotorForce( ) Arguments None. Returns number f The maximum motor force, usually in N. See Also PrismaticJoint

PrismaticJoint:getLowerLimit

PrismaticJoint:getLowerLimit Gets the lower limit. Function Synopsis lower = PrismaticJoint:getLowerLimit( ) Arguments None. Returns number lower The lower limit, usually in meters. See Also PrismaticJoint

PrismaticJoint:getLimits

PrismaticJoint:getLimits Gets the joint limits. Function Synopsis lower, upper = PrismaticJoint:getLimits( ) Arguments None. Returns number lower The lower limit, usually in meters. number upper The upper limit, usually in meters. See Also PrismaticJoint

PrismaticJoint:getJointTranslation

PrismaticJoint:getJointTranslation Get the current joint translation. Function Synopsis t = PrismaticJoint:getJointTranslation( ) Arguments None. Returns number t Joint translation, usually in meters.. See Also PrismaticJoint