Moai SDK
1.5 revision 1 (MoaiEdition)
|
See Box2D documentation.
function getJointSpeed ( MOAIBox2DWheelJoint self )
self | ( MOAIBox2DWheelJoint ) |
See Box2D documentation.
function getJointTranslation ( MOAIBox2DWheelJoint self )
self | ( MOAIBox2DWheelJoint ) |
See Box2D documentation.
function getMaxMotorTorque ( MOAIBox2DWheelJoint self )
self | ( MOAIBox2DWheelJoint ) |
See Box2D documentation.
function getMotorSpeed ( MOAIBox2DWheelJoint self )
self | ( MOAIBox2DWheelJoint ) |
See Box2D documentation.
function getMotorTorque ( MOAIBox2DWheelJoint self )
self | ( MOAIBox2DWheelJoint ) |
See Box2D documentation.
function getSpringDampingRatio ( MOAIBox2DWheelJoint self )
self | ( MOAIBox2DWheelJoint ) |
See Box2D documentation.
function getSpringFrequencyHz ( MOAIBox2DWheelJoint self )
self | ( MOAIBox2DWheelJoint ) |
See Box2D documentation.
function isMotorEnabled ( MOAIBox2DWheelJoint self )
self | ( MOAIBox2DWheelJoint ) |
See Box2D documentation.
function setMaxMotorTorque ( MOAIBox2DWheelJoint self [, number maxMotorTorque ] )
self | ( MOAIBox2DWheelJoint ) |
maxMotorTorque | ( number ) Optional. in (kg * units / s^2) * units, converted to N-m. Default value is 0. |
See Box2D documentation. If speed is determined to be zero, the motor is disabled, unless forceEnable is set.
function setMotor ( MOAIBox2DWheelJoint self [, number speed, number maxMotorTorque, boolean forceEnable ] )
self | ( MOAIBox2DWheelJoint ) |
speed | ( number ) Optional. in degrees/s, converted to radians/s. Default value is 0. |
maxMotorTorque | ( number ) Optional. in (kg * units / s^2) * units, converted from N-m. Default value is 0. |
forceEnable | ( boolean ) Optional. Default value is false. |
See Box2D documentation.
function setMotorEnabled ( MOAIBox2DWheelJoint self [, boolean enabled ] )
self | ( MOAIBox2DWheelJoint ) |
enabled | ( boolean ) Optional. Default value is 'true' |
See Box2D documentation.
function setMotorSpeed ( MOAIBox2DWheelJoint self [, number motorSpeed ] )
self | ( MOAIBox2DWheelJoint ) |
motorSpeed | ( number ) Optional. in degrees/s, converted to radians/s. Default value is 0. |
See Box2D documentation.
function setSpringDampingRatio ( MOAIBox2DWheelJoint self [, number dampingRatio ] )
self | ( MOAIBox2DWheelJoint ) |
dampingRatio | ( number ) Optional. Default value is 0. |
See Box2D documentation.
function setSpringFrequencyHz ( MOAIBox2DWheelJoint self [, number springFrequencyHz ] )
self | ( MOAIBox2DWheelJoint ) |
springFrequencyHz | ( number ) Optional. in Hz. Default value is 0. |