class_path.rst 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/Path.xml.
  6. .. _class_Path:
  7. Path
  8. ====
  9. **Inherits:** :ref:`Spatial<class_Spatial>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  10. Contains a :ref:`Curve3D<class_Curve3D>` path for :ref:`PathFollow<class_PathFollow>` nodes to follow.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. Can have :ref:`PathFollow<class_PathFollow>` child nodes moving along the :ref:`Curve3D<class_Curve3D>`. See :ref:`PathFollow<class_PathFollow>` for more information on the usage.
  15. Note that the path is considered as relative to the moved nodes (children of :ref:`PathFollow<class_PathFollow>`). As such, the curve should usually start with a zero vector ``(0, 0, 0)``.
  16. .. rst-class:: classref-reftable-group
  17. Properties
  18. ----------
  19. .. table::
  20. :widths: auto
  21. +-------------------------------+-----------------------------------------+
  22. | :ref:`Curve3D<class_Curve3D>` | :ref:`curve<class_Path_property_curve>` |
  23. +-------------------------------+-----------------------------------------+
  24. .. rst-class:: classref-section-separator
  25. ----
  26. .. rst-class:: classref-descriptions-group
  27. Signals
  28. -------
  29. .. _class_Path_signal_curve_changed:
  30. .. rst-class:: classref-signal
  31. **curve_changed** **(** **)**
  32. Emitted when the :ref:`curve<class_Path_property_curve>` changes.
  33. .. rst-class:: classref-section-separator
  34. ----
  35. .. rst-class:: classref-descriptions-group
  36. Property Descriptions
  37. ---------------------
  38. .. _class_Path_property_curve:
  39. .. rst-class:: classref-property
  40. :ref:`Curve3D<class_Curve3D>` **curve**
  41. .. rst-class:: classref-property-setget
  42. - void **set_curve** **(** :ref:`Curve3D<class_Curve3D>` value **)**
  43. - :ref:`Curve3D<class_Curve3D>` **get_curve** **(** **)**
  44. A :ref:`Curve3D<class_Curve3D>` describing the path.
  45. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  46. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  47. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  48. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`