summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-12-02 12:24:32 +0100
committerRémi Verschelde <rverschelde@gmail.com>2022-12-02 12:24:32 +0100
commit8c094207a0ae486ab0e81290bd9d48bfb56dd0c3 (patch)
tree1ffa673fa3ab7873373f0a7a095a21c5473a681f /doc
parent10e9a85607d85264d5bf4ffd5af1987057ed712e (diff)
parentf8021dae9c5e654a4e2475d8d73ab587c9429f82 (diff)
Merge pull request #61958 from jtnicholl/animation_connections
Add `animation_changed` signal to `AnimationLibrary`, have `AnimationPlayer` connect to it instead of `Animation`'s `changed`
Diffstat (limited to 'doc')
-rw-r--r--doc/classes/AnimationLibrary.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/classes/AnimationLibrary.xml b/doc/classes/AnimationLibrary.xml
index 769b338063..9be4cda5d6 100644
--- a/doc/classes/AnimationLibrary.xml
+++ b/doc/classes/AnimationLibrary.xml
@@ -65,6 +65,13 @@
Emitted when an [Animation] is added, under the key [param name].
</description>
</signal>
+ <signal name="animation_changed">
+ <param index="0" name="name" type="StringName" />
+ <description>
+ Emitted when there's a change in one of the animations, e.g. tracks are added, moved or have changed paths. [param name] is the key of the animation that was changed.
+ See also [signal Resource.changed], which this acts as a relay for.
+ </description>
+ </signal>
<signal name="animation_removed">
<param index="0" name="name" type="StringName" />
<description>