diff options
Diffstat (limited to 'doc/classes/AnimationMixer.xml')
-rw-r--r-- | doc/classes/AnimationMixer.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/classes/AnimationMixer.xml b/doc/classes/AnimationMixer.xml index 31308c4e20..d17e9377da 100644 --- a/doc/classes/AnimationMixer.xml +++ b/doc/classes/AnimationMixer.xml @@ -36,6 +36,18 @@ Manually advance the animations by the specified time (in seconds). </description> </method> + <method name="capture"> + <return type="void" /> + <param index="0" name="name" type="StringName" /> + <param index="1" name="duration" type="float" /> + <param index="2" name="trans_type" type="int" enum="Tween.TransitionType" default="0" /> + <param index="3" name="ease_type" type="int" enum="Tween.EaseType" default="0" /> + <description> + If the animation track specified by [param name] has an option [constant Animation.UPDATE_CAPTURE], stores current values of the objects indicated by the track path as a cache. If there is already a captured cache, the old cache is discarded. + After this it will interpolate with current animation blending result during the playback process for the time specified by [param duration], working like a crossfade. + You can specify [param trans_type] as the curve for the interpolation. For better results, it may be appropriate to specify [constant Tween.TRANS_LINEAR] for cases where the first key of the track begins with a non-zero value or where the key value does not change, and [constant Tween.TRANS_QUAD] for cases where the key value changes linearly. + </description> + </method> <method name="clear_caches"> <return type="void" /> <description> |