diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-06-20 00:35:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-20 00:35:28 +0200 |
commit | 9c182b0f45df0f1a134f047899cdd9291c34f58a (patch) | |
tree | 6735c004f29713e1dde829ee03f7373c6b1e8db8 /doc/classes/Tweener.xml | |
parent | bbf6d645fb324ce73cb3a0141dc508a83f66bd00 (diff) | |
parent | 900b2e0fdcc12d28a744ae36004b9b2dc7f196d1 (diff) |
Merge pull request #41794 from KoBeWi/shiny_new_tweens
Diffstat (limited to 'doc/classes/Tweener.xml')
-rw-r--r-- | doc/classes/Tweener.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/classes/Tweener.xml b/doc/classes/Tweener.xml new file mode 100644 index 0000000000..5cd502ced9 --- /dev/null +++ b/doc/classes/Tweener.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class name="Tweener" inherits="RefCounted" version="4.0"> + <brief_description> + Abstract class for all Tweeners used by [Tween]. + </brief_description> + <description> + 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 [Tween] or [Node]. + </description> + <tutorials> + </tutorials> + <methods> + </methods> + <signals> + <signal name="finished"> + <description> + Emited when the [Tweener] has just finished its job. + </description> + </signal> + </signals> + <constants> + </constants> +</class> |