summaryrefslogtreecommitdiffstats
path: root/doc/classes/AnimationMixer.xml
diff options
context:
space:
mode:
authorAshish Kumar <ashishkumar901336@gmail.com>2024-07-01 20:55:26 +0530
committerAshish Kumar <ashishkumar901336@gmail.com>2024-07-01 22:18:44 +0530
commit87b0796e8ad2e277c3458e745c747d1239aed2c3 (patch)
treeaed90e7c96389630d95cffe3ca59db030bcf576b /doc/classes/AnimationMixer.xml
parent446e7a7c228d19341392ec3b02417244fe7dfe03 (diff)
downloadredot-engine-87b0796e8ad2e277c3458e745c747d1239aed2c3.tar.gz
Fix Info about Global library on add_animation_library method in doc/classes/AnimationMixer.xml
Fix Info about Global library on add_animation_library method in doc/classes/AnimationMixer.xml Fix Info about Global library on add_animation_library method Co-authored-by: Silc Lizard (Tokage) Renew <tokage.it.lab@gmail.com>
Diffstat (limited to 'doc/classes/AnimationMixer.xml')
-rw-r--r--doc/classes/AnimationMixer.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/classes/AnimationMixer.xml b/doc/classes/AnimationMixer.xml
index c635eba2ab..25fcecda4b 100644
--- a/doc/classes/AnimationMixer.xml
+++ b/doc/classes/AnimationMixer.xml
@@ -27,6 +27,13 @@
<param index="1" name="library" type="AnimationLibrary" />
<description>
Adds [param library] to the animation player, under the key [param name].
+ AnimationMixer has a global library by default with an empty string as key. For adding an animation to the global library:
+ [codeblocks]
+ [gdscript]
+ var global_library = mixer.get_animation_library("")
+ global_library.add_animation("animation_name", animation_resource)
+ [/gdscript]
+ [/codeblocks]
</description>
</method>
<method name="advance">