.. Generated automatically by doc/tools/makerst.py in Godot's source tree. .. DO NOT EDIT THIS FILE, but the doc/base/classes.xml source instead. .. _class_PathFollow2D: PathFollow2D ============ **Inherits:** :ref:`Node2D` **<** :ref:`CanvasItem` **<** :ref:`Node` **<** :ref:`Object` **Category:** Core Brief Description ----------------- Point sampler for a :ref:`Path2D`. Member Functions ---------------- +----------------------------+-------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`get_cubic_interpolation` **(** **)** const | +----------------------------+-------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_h_offset` **(** **)** const | +----------------------------+-------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_offset` **(** **)** const | +----------------------------+-------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_unit_offset` **(** **)** const | +----------------------------+-------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_v_offset` **(** **)** const | +----------------------------+-------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`has_loop` **(** **)** const | +----------------------------+-------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_rotating` **(** **)** const | +----------------------------+-------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_cubic_interpolation` **(** :ref:`bool` enable **)** | +----------------------------+-------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_h_offset` **(** :ref:`float` h_offset **)** | +----------------------------+-------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_loop` **(** :ref:`bool` loop **)** | +----------------------------+-------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_offset` **(** :ref:`float` offset **)** | +----------------------------+-------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_rotate` **(** :ref:`bool` enable **)** | +----------------------------+-------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_unit_offset` **(** :ref:`float` unit_offset **)** | +----------------------------+-------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_v_offset` **(** :ref:`float` v_offset **)** | +----------------------------+-------------------------------------------------------------------------------------------------------------------------+ Description ----------- This node takes its parent :ref:`Path2D`, and returns the coordinates of a point within it, given a distance from the first vertex. It is useful for making other nodes follow a path, without coding the movement pattern. For that, the nodes must be descendants of this node. Then, when setting an offset in this node, the descendant nodes will move accordingly. Member Function Description --------------------------- .. _class_PathFollow2D_get_cubic_interpolation: - :ref:`bool` **get_cubic_interpolation** **(** **)** const This method returns whether the position between two cached points (see :ref:`set_cubic_interpolation`) is interpolated linearly, or cubicly. .. _class_PathFollow2D_get_h_offset: - :ref:`float` **get_h_offset** **(** **)** const Returns the horizontal displacement this node has from its parent :ref:`Path2D`. .. _class_PathFollow2D_get_offset: - :ref:`float` **get_offset** **(** **)** const Returns the distance along the path in pixels. .. _class_PathFollow2D_get_unit_offset: - :ref:`float` **get_unit_offset** **(** **)** const Returns the distance along the path as a number in the range 0.0 (for the first vertex) to 1.0 (for the last). .. _class_PathFollow2D_get_v_offset: - :ref:`float` **get_v_offset** **(** **)** const Returns the vertical displacement this node has from its parent :ref:`Path2D`. .. _class_PathFollow2D_has_loop: - :ref:`bool` **has_loop** **(** **)** const Returns whether this node wraps its offsets around, or truncates them to the path ends. .. _class_PathFollow2D_is_rotating: - :ref:`bool` **is_rotating** **(** **)** const Returns whether this node rotates to follow the path. .. _class_PathFollow2D_set_cubic_interpolation: - void **set_cubic_interpolation** **(** :ref:`bool` enable **)** The points along the :ref:`Curve2D` of the :ref:`Path2D` are precomputed before use, for faster calculations. The point at the requested offset is then calculated interpolating between two adjacent cached points. This may present a problem if the curve makes sharp turns, as the cached points may not follow the curve closely enough. There are two answers to this problem: Either increase the number of cached points and increase memory consumption, or make a cubic interpolation between two points at the cost of (slightly) slower calculations. This method controls whether the position between two cached points is interpolated linearly, or cubicly. .. _class_PathFollow2D_set_h_offset: - void **set_h_offset** **(** :ref:`float` h_offset **)** Moves this node horizontally. As this node's position will be set every time its offset is set, this allows many PathFollow2D to share the same curve (and thus the same movement pattern), yet not return the same position for a given path offset. A similar effect may be achieved moving this node's descendants. .. _class_PathFollow2D_set_loop: - void **set_loop** **(** :ref:`bool` loop **)** If set, any offset outside the path's length (whether set by :ref:`set_offset` or :ref:`set_unit_offset` will wrap around, instead of stopping at the ends. Set it for cyclic paths. .. _class_PathFollow2D_set_offset: - void **set_offset** **(** :ref:`float` offset **)** Sets the distance from the first vertex, measured in pixels along the path. This sets this node's position to a point within the path. .. _class_PathFollow2D_set_rotate: - void **set_rotate** **(** :ref:`bool` enable **)** If set, this node rotates to follow the path, making its descendants rotate. .. _class_PathFollow2D_set_unit_offset: - void **set_unit_offset** **(** :ref:`float` unit_offset **)** Sets the distance from the first vertex, considering 0.0 as the first vertex and 1.0 as the last. This is just another way of expressing the offset within the path, as the offset supplied is multiplied internally by the path's length. .. _class_PathFollow2D_set_v_offset: - void **set_v_offset** **(** :ref:`float` v_offset **)** Moves the PathFollow2D vertically, for the same reasons of :ref:`set_h_offset`.