Difference between revisions of "Joint"

(added enums (well, enum))
(using the proper semantic syntax for getting the subtypes)
Line 11: Line 11:
 
}}
 
}}
 
== Subtypes ==
 
== Subtypes ==
[[DistanceJoint]]
+
{{#ask: [[Category:Types]] [[parent::Joint]]
[[GearJoint]]
+
| headers=hide
[[MouseJoint]]
+
| ?Description
[[PrismaticJoint]]
+
}}
[[PulleyJoint]]
 
[[RevoluteJoint]]
 
 
== See Also ==
 
== See Also ==
 
* [[parent::love.physics]]
 
* [[parent::love.physics]]
 
[[Category:Types]]
 
[[Category:Types]]
 
{{#set:Description=Attach multiple bodies together to interact in unique ways.}}
 
{{#set:Description=Attach multiple bodies together to interact in unique ways.}}

Revision as of 09:19, 16 October 2010

Attach multiple bodies together to interact in unique ways.

Functions

Joint:destroyExplicitly destroys the Joint.
Joint:getAnchorsGet the anchor points of the joint.
Joint:getBodiesGets the bodies that the Joint is attached to.
Joint:getCollideConnectedGets whether the connected Bodies collide.
Joint:getReactionForceReturns the reaction force on the second body.
Joint:getReactionTorqueReturns the reaction torque on the second body.
Joint:getTypeGets a string representing the type.
Joint:getUserDataReturns the Lua value associated with this Joint.
Joint:isDestroyedGets whether the Joint is destroyed.
Joint:setCollideConnectedSets whether the connected Bodies should collide with each other.
Joint:setUserDataAssociates a Lua value with the Joint.

Enums

JointTypeDifferent types of joints.

Subtypes

DistanceJointKeeps two bodies at the same distance.
FrictionJointA FrictionJoint applies friction to a body.
GearJointKeeps bodies together in such a way that they act like gears.
MotorJointControls the relative motion between two Bodies
MouseJointFor controlling objects with the mouse.
PrismaticJointRestricts relative motion between Bodies to one shared axis.
PulleyJointAllows you to simulate bodies connected through pulleys.
RevoluteJointAllow two Bodies to revolve around a shared point.
RopeJointEnforces a maximum distance between two points on two bodies.
WeldJointA WeldJoint essentially glues two bodies together.
WheelJointRestricts a point on the second body to a line on the first body.

See Also