Hinge Joint
Manual     Reference     Scripting   
Reference Manual > Components > Physics Components > Hinge Joint

Hinge Joint

The Hinge Joint groups together two Rigidbodies, constraining them to move like they are connected by a hinge. It is perfect for doors, but can also be used to model chains, pendulums, etc.


The Hinge Joint Inspector

Properties

Connected BodyOptional reference to the Rigidbody that the joint is dependent upon. If not set, the joint connects to the world.
AnchorThe position of the axis around which the body swings. The position is defined in local space.
AxisThe direction of the axis around which the body swings. The direction is defined in local space.
Use SpringSpring makes the Rigidbody reach for a specific angle compared to its connected body.
SpringProperties of the Spring that are used if Use Spring is enabled.
SpringThe force the object asserts to move into the position.
DamperThe higher this value, the more the object will slow down.
Target PositionTarget angle of the spring. The spring pulls towards this angle measured in degrees.
Use MotorThe motor makes the object spin around.
MotorProperties of the Motor that are used if Use Motor is enabled.
Target VelocityThe speed the object tries to attain.
ForceThe force applied in order to attain the speed.
Free SpinIf enabled, the motor is never used to brake the spinning, only accelerate it.
Use LimitsIf enabled, the angle of the hinge will be restricted within the Min & Max values.
Limits Properties of the Limits that are used if Use Limits is enabled.
MinThe lowest angle the rotation can go.
MaxThe highest angle the rotation can go.
Min BounceHow much the object bounces when it hits the minimum stop.
Max BounceHow much the object bounces when it hits the maximum stop.
Break ForceThe force that needs to be applied for this joint to break.
Break TorqueThe torque that needs to be applied for this joint to break.

Details

A single Hinge Joint should be applied to a GameObject. The hinge will rotate at the point specified by the Anchor property, moving around the specified Axis property. You do not need to assign a GameObject to the joint's Connected Body property. You should only assign a GameObject to the Connected Body property if you want the joint's Transform to be dependent on the attached object's Transform.

Think about how the hinge of a door works. The Axis in this case is up, positive along the Y axis. The Anchor is placed somewhere at the intersection between door and wall. You would not need to assign the wall to the Connected Body, because the joint will be connected to the world by default.

Now think about a doggy door hinge. The doggy door's Axis would be sideways, positive along the relative X axis. The main door should be assigned as the Connected Body, so the doggy door's hinge is dependent on the main door's Rigidbody.

Chains

Multiple Hinge Joints can also be strung together to create a chain. Add a joint to each link in the chain, and attach the next link as the Connected Body.

Hints

Page last updated: 2007-09-14