123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- :github_url: hide
- .. DO NOT EDIT THIS FILE!!!
- .. Generated automatically from Godot engine sources.
- .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
- .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/DampedSpringJoint2D.xml.
- .. _class_DampedSpringJoint2D:
- DampedSpringJoint2D
- ===================
- **Inherits:** :ref:`Joint2D<class_Joint2D>` **<** :ref:`Node2D<class_Node2D>` **<** :ref:`CanvasItem<class_CanvasItem>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
- A physics joint that connects two 2D physics bodies with a spring-like force.
- .. rst-class:: classref-introduction-group
- Description
- -----------
- A physics joint that connects two 2D physics bodies with a spring-like force. This resembles a spring that always wants to stretch to a given length.
- .. rst-class:: classref-reftable-group
- Properties
- ----------
- .. table::
- :widths: auto
- +---------------------------+--------------------------------------------------------------------+----------+
- | :ref:`float<class_float>` | :ref:`damping<class_DampedSpringJoint2D_property_damping>` | ``1.0`` |
- +---------------------------+--------------------------------------------------------------------+----------+
- | :ref:`float<class_float>` | :ref:`length<class_DampedSpringJoint2D_property_length>` | ``50.0`` |
- +---------------------------+--------------------------------------------------------------------+----------+
- | :ref:`float<class_float>` | :ref:`rest_length<class_DampedSpringJoint2D_property_rest_length>` | ``0.0`` |
- +---------------------------+--------------------------------------------------------------------+----------+
- | :ref:`float<class_float>` | :ref:`stiffness<class_DampedSpringJoint2D_property_stiffness>` | ``20.0`` |
- +---------------------------+--------------------------------------------------------------------+----------+
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Property Descriptions
- ---------------------
- .. _class_DampedSpringJoint2D_property_damping:
- .. rst-class:: classref-property
- :ref:`float<class_float>` **damping** = ``1.0`` :ref:`🔗<class_DampedSpringJoint2D_property_damping>`
- .. rst-class:: classref-property-setget
- - |void| **set_damping**\ (\ value\: :ref:`float<class_float>`\ )
- - :ref:`float<class_float>` **get_damping**\ (\ )
- The spring joint's damping ratio. A value between ``0`` and ``1``. When the two bodies move into different directions the system tries to align them to the spring axis again. A high :ref:`damping<class_DampedSpringJoint2D_property_damping>` value forces the attached bodies to align faster.
- .. rst-class:: classref-item-separator
- ----
- .. _class_DampedSpringJoint2D_property_length:
- .. rst-class:: classref-property
- :ref:`float<class_float>` **length** = ``50.0`` :ref:`🔗<class_DampedSpringJoint2D_property_length>`
- .. rst-class:: classref-property-setget
- - |void| **set_length**\ (\ value\: :ref:`float<class_float>`\ )
- - :ref:`float<class_float>` **get_length**\ (\ )
- The spring joint's maximum length. The two attached bodies cannot stretch it past this value.
- .. rst-class:: classref-item-separator
- ----
- .. _class_DampedSpringJoint2D_property_rest_length:
- .. rst-class:: classref-property
- :ref:`float<class_float>` **rest_length** = ``0.0`` :ref:`🔗<class_DampedSpringJoint2D_property_rest_length>`
- .. rst-class:: classref-property-setget
- - |void| **set_rest_length**\ (\ value\: :ref:`float<class_float>`\ )
- - :ref:`float<class_float>` **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.
- .. rst-class:: classref-item-separator
- ----
- .. _class_DampedSpringJoint2D_property_stiffness:
- .. rst-class:: classref-property
- :ref:`float<class_float>` **stiffness** = ``20.0`` :ref:`🔗<class_DampedSpringJoint2D_property_stiffness>`
- .. rst-class:: classref-property-setget
- - |void| **set_stiffness**\ (\ value\: :ref:`float<class_float>`\ )
- - :ref:`float<class_float>` **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.
- .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
- .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
- .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
- .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
- .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
- .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
- .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
- .. |void| replace:: :abbr:`void (No return value.)`
|