class_tweener.rst 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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/Tweener.xml.
  6. .. _class_Tweener:
  7. Tweener
  8. =======
  9. **Inherits:** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
  10. **Inherited By:** :ref:`CallbackTweener<class_CallbackTweener>`, :ref:`IntervalTweener<class_IntervalTweener>`, :ref:`MethodTweener<class_MethodTweener>`, :ref:`PropertyTweener<class_PropertyTweener>`
  11. Abstract class for all Tweeners used by :ref:`Tween<class_Tween>`.
  12. Description
  13. -----------
  14. Tweeners are objects that perform a specific animating task, e.g. interpolating a property or calling a method at a given time. A ``Tweener`` can't be created manually, you need to use a dedicated method from :ref:`Tween<class_Tween>`.
  15. Signals
  16. -------
  17. .. _class_Tweener_signal_finished:
  18. - **finished** **(** **)**
  19. Emitted when the ``Tweener`` has just finished its job.
  20. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  21. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  22. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  23. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  24. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  25. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`