class_skeletonmodification3dstackholder.rst 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SkeletonModification3DStackHolder.xml.
  6. .. _class_SkeletonModification3DStackHolder:
  7. SkeletonModification3DStackHolder
  8. =================================
  9. **Inherits:** :ref:`SkeletonModification3D<class_SkeletonModification3D>` **<** :ref:`Resource<class_Resource>` **<** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
  10. A modification that holds and executes a :ref:`SkeletonModificationStack3D<class_SkeletonModificationStack3D>`.
  11. Description
  12. -----------
  13. This :ref:`SkeletonModification3D<class_SkeletonModification3D>` holds a reference to a :ref:`SkeletonModificationStack3D<class_SkeletonModificationStack3D>`, allowing you to use multiple modification stacks on a single :ref:`Skeleton3D<class_Skeleton3D>`.
  14. \ **Note:** The modifications in the held :ref:`SkeletonModificationStack3D<class_SkeletonModificationStack3D>` will only be executed if their execution mode matches the execution mode of the SkeletonModification3DStackHolder.
  15. Methods
  16. -------
  17. +-----------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  18. | :ref:`SkeletonModificationStack3D<class_SkeletonModificationStack3D>` | :ref:`get_held_modification_stack<class_SkeletonModification3DStackHolder_method_get_held_modification_stack>` **(** **)** |const| |
  19. +-----------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  20. | void | :ref:`set_held_modification_stack<class_SkeletonModification3DStackHolder_method_set_held_modification_stack>` **(** :ref:`SkeletonModificationStack3D<class_SkeletonModificationStack3D>` held_modification_stack **)** |
  21. +-----------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  22. Method Descriptions
  23. -------------------
  24. .. _class_SkeletonModification3DStackHolder_method_get_held_modification_stack:
  25. - :ref:`SkeletonModificationStack3D<class_SkeletonModificationStack3D>` **get_held_modification_stack** **(** **)** |const|
  26. Returns the :ref:`SkeletonModificationStack3D<class_SkeletonModificationStack3D>` that this modification is holding.
  27. ----
  28. .. _class_SkeletonModification3DStackHolder_method_set_held_modification_stack:
  29. - void **set_held_modification_stack** **(** :ref:`SkeletonModificationStack3D<class_SkeletonModificationStack3D>` held_modification_stack **)**
  30. Sets the :ref:`SkeletonModificationStack3D<class_SkeletonModificationStack3D>` that this modification is holding. This modification stack will then be executed when this modification is executed.
  31. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  32. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  33. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  34. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  35. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  36. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`