From ba67217f6d714796e56be19d827728e55c3cd3a2 Mon Sep 17 00:00:00 2001 From: kobewi Date: Mon, 16 May 2022 20:04:38 +0200 Subject: [PATCH] Clarify seek() in relation to animation_finished (cherry picked from commit 74e135c90bad1dcaacc3b718deb8ec39318760ee) --- doc/classes/AnimationPlayer.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/classes/AnimationPlayer.xml b/doc/classes/AnimationPlayer.xml index 21d376eb6..f64885746 100644 --- a/doc/classes/AnimationPlayer.xml +++ b/doc/classes/AnimationPlayer.xml @@ -144,6 +144,7 @@ Seeks the animation to the [code]seconds[/code] point in time (in seconds). If [code]update[/code] is [code]true[/code], the animation updates too, otherwise it updates at process time. Events between the current frame and [code]seconds[/code] are skipped. + [b]Note:[/b] Seeking to the end of the animation doesn't emit [signal animation_finished]. If you want to skip animation and emit the signal, use [method advance].