godot/doc/classes/DampedSpringJoint2D.xml
Hugo Locurcio f7f6115f76
Proofread and improve the whole class reference
- Document a few more properties and methods
- Add more information to many classes
- Fix lots of typos and gramar mistakes
- Use [code] tags for parameters consistently
- Use [b] and [i] tags consistently
- Put "Warning:" and "Note:" on their own line to be more visible,
  and make them always bold
- Tweak formatting in code examples to be more readable
- Use double quotes consistently
- Add more links to third-party technologies
2019-06-27 22:30:19 +02:00

30 lines
1.7 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<class name="DampedSpringJoint2D" inherits="Joint2D" category="Core" version="3.2">
<brief_description>
Damped spring constraint for 2D physics.
</brief_description>
<description>
Damped spring constraint for 2D physics. This resembles a spring joint that always wants to go back to a given length.
</description>
<tutorials>
</tutorials>
<methods>
</methods>
<members>
<member name="damping" type="float" setter="set_damping" getter="get_damping">
The spring joint's damping ratio. A value between [code]0[/code] and [code]1[/code]. When the two bodies move into different directions the system tries to align them to the spring axis again. A high [code]damping[/code] value forces the attached bodies to align faster. Default value: [code]1[/code].
</member>
<member name="length" type="float" setter="set_length" getter="get_length">
The spring joint's maximum length. The two attached bodies cannot stretch it past this value. Default value: [code]50[/code].
</member>
<member name="rest_length" type="float" setter="set_rest_length" getter="get_rest_length">
When the bodies attached to the spring joint move they stretch or squash it. The joint always tries to resize towards this length. Default value: [code]0[/code].
</member>
<member name="stiffness" type="float" setter="set_stiffness" getter="get_stiffness">
The higher the value, the less the bodies attached to the joint will deform it. The joint applies an opposing force to the bodies, the product of the stiffness multiplied by the size difference from its resting length. Default value: [code]20[/code].
</member>
</members>
<constants>
</constants>
</class>