123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447 |
- :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/Curve.xml.
- .. _class_Curve:
- Curve
- =====
- **Inherits:** :ref:`Resource<class_Resource>` **<** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
- A mathematical curve.
- .. rst-class:: classref-introduction-group
- Description
- -----------
- This resource describes a mathematical curve by defining a set of points and tangents at each point. By default, it ranges between ``0`` and ``1`` on the Y axis and positions points relative to the ``0.5`` Y position.
- See also :ref:`Gradient<class_Gradient>` which is designed for color interpolation. See also :ref:`Curve2D<class_Curve2D>` and :ref:`Curve3D<class_Curve3D>`.
- .. rst-class:: classref-reftable-group
- Properties
- ----------
- .. table::
- :widths: auto
- +---------------------------+--------------------------------------------------------------+---------+
- | :ref:`int<class_int>` | :ref:`bake_resolution<class_Curve_property_bake_resolution>` | ``100`` |
- +---------------------------+--------------------------------------------------------------+---------+
- | :ref:`float<class_float>` | :ref:`max_value<class_Curve_property_max_value>` | ``1.0`` |
- +---------------------------+--------------------------------------------------------------+---------+
- | :ref:`float<class_float>` | :ref:`min_value<class_Curve_property_min_value>` | ``0.0`` |
- +---------------------------+--------------------------------------------------------------+---------+
- | :ref:`int<class_int>` | :ref:`point_count<class_Curve_property_point_count>` | ``0`` |
- +---------------------------+--------------------------------------------------------------+---------+
- .. rst-class:: classref-reftable-group
- Methods
- -------
- .. table::
- :widths: auto
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`add_point<class_Curve_method_add_point>` **(** :ref:`Vector2<class_Vector2>` position, :ref:`float<class_float>` left_tangent=0, :ref:`float<class_float>` right_tangent=0, :ref:`TangentMode<enum_Curve_TangentMode>` left_mode=0, :ref:`TangentMode<enum_Curve_TangentMode>` right_mode=0 **)** |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`bake<class_Curve_method_bake>` **(** **)** |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`clean_dupes<class_Curve_method_clean_dupes>` **(** **)** |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`clear_points<class_Curve_method_clear_points>` **(** **)** |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`TangentMode<enum_Curve_TangentMode>` | :ref:`get_point_left_mode<class_Curve_method_get_point_left_mode>` **(** :ref:`int<class_int>` index **)** |const| |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_point_left_tangent<class_Curve_method_get_point_left_tangent>` **(** :ref:`int<class_int>` index **)** |const| |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Vector2<class_Vector2>` | :ref:`get_point_position<class_Curve_method_get_point_position>` **(** :ref:`int<class_int>` index **)** |const| |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`TangentMode<enum_Curve_TangentMode>` | :ref:`get_point_right_mode<class_Curve_method_get_point_right_mode>` **(** :ref:`int<class_int>` index **)** |const| |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_point_right_tangent<class_Curve_method_get_point_right_tangent>` **(** :ref:`int<class_int>` index **)** |const| |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`remove_point<class_Curve_method_remove_point>` **(** :ref:`int<class_int>` index **)** |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`sample<class_Curve_method_sample>` **(** :ref:`float<class_float>` offset **)** |const| |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`sample_baked<class_Curve_method_sample_baked>` **(** :ref:`float<class_float>` offset **)** |const| |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_point_left_mode<class_Curve_method_set_point_left_mode>` **(** :ref:`int<class_int>` index, :ref:`TangentMode<enum_Curve_TangentMode>` mode **)** |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_point_left_tangent<class_Curve_method_set_point_left_tangent>` **(** :ref:`int<class_int>` index, :ref:`float<class_float>` tangent **)** |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`set_point_offset<class_Curve_method_set_point_offset>` **(** :ref:`int<class_int>` index, :ref:`float<class_float>` offset **)** |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_point_right_mode<class_Curve_method_set_point_right_mode>` **(** :ref:`int<class_int>` index, :ref:`TangentMode<enum_Curve_TangentMode>` mode **)** |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_point_right_tangent<class_Curve_method_set_point_right_tangent>` **(** :ref:`int<class_int>` index, :ref:`float<class_float>` tangent **)** |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_point_value<class_Curve_method_set_point_value>` **(** :ref:`int<class_int>` index, :ref:`float<class_float>` y **)** |
- +--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Signals
- -------
- .. _class_Curve_signal_range_changed:
- .. rst-class:: classref-signal
- **range_changed** **(** **)**
- Emitted when :ref:`max_value<class_Curve_property_max_value>` or :ref:`min_value<class_Curve_property_min_value>` is changed.
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Enumerations
- ------------
- .. _enum_Curve_TangentMode:
- .. rst-class:: classref-enumeration
- enum **TangentMode**:
- .. _class_Curve_constant_TANGENT_FREE:
- .. rst-class:: classref-enumeration-constant
- :ref:`TangentMode<enum_Curve_TangentMode>` **TANGENT_FREE** = ``0``
- The tangent on this side of the point is user-defined.
- .. _class_Curve_constant_TANGENT_LINEAR:
- .. rst-class:: classref-enumeration-constant
- :ref:`TangentMode<enum_Curve_TangentMode>` **TANGENT_LINEAR** = ``1``
- The curve calculates the tangent on this side of the point as the slope halfway towards the adjacent point.
- .. _class_Curve_constant_TANGENT_MODE_COUNT:
- .. rst-class:: classref-enumeration-constant
- :ref:`TangentMode<enum_Curve_TangentMode>` **TANGENT_MODE_COUNT** = ``2``
- The total number of available tangent modes.
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Property Descriptions
- ---------------------
- .. _class_Curve_property_bake_resolution:
- .. rst-class:: classref-property
- :ref:`int<class_int>` **bake_resolution** = ``100``
- .. rst-class:: classref-property-setget
- - void **set_bake_resolution** **(** :ref:`int<class_int>` value **)**
- - :ref:`int<class_int>` **get_bake_resolution** **(** **)**
- The number of points to include in the baked (i.e. cached) curve data.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_property_max_value:
- .. rst-class:: classref-property
- :ref:`float<class_float>` **max_value** = ``1.0``
- .. rst-class:: classref-property-setget
- - void **set_max_value** **(** :ref:`float<class_float>` value **)**
- - :ref:`float<class_float>` **get_max_value** **(** **)**
- The maximum value the curve can reach.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_property_min_value:
- .. rst-class:: classref-property
- :ref:`float<class_float>` **min_value** = ``0.0``
- .. rst-class:: classref-property-setget
- - void **set_min_value** **(** :ref:`float<class_float>` value **)**
- - :ref:`float<class_float>` **get_min_value** **(** **)**
- The minimum value the curve can reach.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_property_point_count:
- .. rst-class:: classref-property
- :ref:`int<class_int>` **point_count** = ``0``
- .. rst-class:: classref-property-setget
- - void **set_point_count** **(** :ref:`int<class_int>` value **)**
- - :ref:`int<class_int>` **get_point_count** **(** **)**
- The number of points describing the curve.
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Method Descriptions
- -------------------
- .. _class_Curve_method_add_point:
- .. rst-class:: classref-method
- :ref:`int<class_int>` **add_point** **(** :ref:`Vector2<class_Vector2>` position, :ref:`float<class_float>` left_tangent=0, :ref:`float<class_float>` right_tangent=0, :ref:`TangentMode<enum_Curve_TangentMode>` left_mode=0, :ref:`TangentMode<enum_Curve_TangentMode>` right_mode=0 **)**
- Adds a point to the curve. For each side, if the ``*_mode`` is :ref:`TANGENT_LINEAR<class_Curve_constant_TANGENT_LINEAR>`, the ``*_tangent`` angle (in degrees) uses the slope of the curve halfway to the adjacent point. Allows custom assignments to the ``*_tangent`` angle if ``*_mode`` is set to :ref:`TANGENT_FREE<class_Curve_constant_TANGENT_FREE>`.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_bake:
- .. rst-class:: classref-method
- void **bake** **(** **)**
- Recomputes the baked cache of points for the curve.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_clean_dupes:
- .. rst-class:: classref-method
- void **clean_dupes** **(** **)**
- Removes duplicate points, i.e. points that are less than 0.00001 units (engine epsilon value) away from their neighbor on the curve.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_clear_points:
- .. rst-class:: classref-method
- void **clear_points** **(** **)**
- Removes all points from the curve.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_get_point_left_mode:
- .. rst-class:: classref-method
- :ref:`TangentMode<enum_Curve_TangentMode>` **get_point_left_mode** **(** :ref:`int<class_int>` index **)** |const|
- Returns the left :ref:`TangentMode<enum_Curve_TangentMode>` for the point at ``index``.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_get_point_left_tangent:
- .. rst-class:: classref-method
- :ref:`float<class_float>` **get_point_left_tangent** **(** :ref:`int<class_int>` index **)** |const|
- Returns the left tangent angle (in degrees) for the point at ``index``.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_get_point_position:
- .. rst-class:: classref-method
- :ref:`Vector2<class_Vector2>` **get_point_position** **(** :ref:`int<class_int>` index **)** |const|
- Returns the curve coordinates for the point at ``index``.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_get_point_right_mode:
- .. rst-class:: classref-method
- :ref:`TangentMode<enum_Curve_TangentMode>` **get_point_right_mode** **(** :ref:`int<class_int>` index **)** |const|
- Returns the right :ref:`TangentMode<enum_Curve_TangentMode>` for the point at ``index``.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_get_point_right_tangent:
- .. rst-class:: classref-method
- :ref:`float<class_float>` **get_point_right_tangent** **(** :ref:`int<class_int>` index **)** |const|
- Returns the right tangent angle (in degrees) for the point at ``index``.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_remove_point:
- .. rst-class:: classref-method
- void **remove_point** **(** :ref:`int<class_int>` index **)**
- Removes the point at ``index`` from the curve.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_sample:
- .. rst-class:: classref-method
- :ref:`float<class_float>` **sample** **(** :ref:`float<class_float>` offset **)** |const|
- Returns the Y value for the point that would exist at the X position ``offset`` along the curve.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_sample_baked:
- .. rst-class:: classref-method
- :ref:`float<class_float>` **sample_baked** **(** :ref:`float<class_float>` offset **)** |const|
- Returns the Y value for the point that would exist at the X position ``offset`` along the curve using the baked cache. Bakes the curve's points if not already baked.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_set_point_left_mode:
- .. rst-class:: classref-method
- void **set_point_left_mode** **(** :ref:`int<class_int>` index, :ref:`TangentMode<enum_Curve_TangentMode>` mode **)**
- Sets the left :ref:`TangentMode<enum_Curve_TangentMode>` for the point at ``index`` to ``mode``.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_set_point_left_tangent:
- .. rst-class:: classref-method
- void **set_point_left_tangent** **(** :ref:`int<class_int>` index, :ref:`float<class_float>` tangent **)**
- Sets the left tangent angle for the point at ``index`` to ``tangent``.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_set_point_offset:
- .. rst-class:: classref-method
- :ref:`int<class_int>` **set_point_offset** **(** :ref:`int<class_int>` index, :ref:`float<class_float>` offset **)**
- Sets the offset from ``0.5``.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_set_point_right_mode:
- .. rst-class:: classref-method
- void **set_point_right_mode** **(** :ref:`int<class_int>` index, :ref:`TangentMode<enum_Curve_TangentMode>` mode **)**
- Sets the right :ref:`TangentMode<enum_Curve_TangentMode>` for the point at ``index`` to ``mode``.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_set_point_right_tangent:
- .. rst-class:: classref-method
- void **set_point_right_tangent** **(** :ref:`int<class_int>` index, :ref:`float<class_float>` tangent **)**
- Sets the right tangent angle for the point at ``index`` to ``tangent``.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Curve_method_set_point_value:
- .. rst-class:: classref-method
- void **set_point_value** **(** :ref:`int<class_int>` index, :ref:`float<class_float>` y **)**
- Assigns the vertical position ``y`` to the point at ``index``.
- .. |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.)`
|