diff options
author | Stephen Rice <sarice8@gmail.com> | 2023-02-26 21:42:49 -0800 |
---|---|---|
committer | Stephen Rice <sarice8@gmail.com> | 2023-02-26 21:42:49 -0800 |
commit | c4de2d433aa07f29d723621eb370b3d58d4782d3 (patch) | |
tree | 067cd40d0ea8b637f8735a544253eb0e9aa1e56b | |
parent | 0cd148313213e2923004be65bafd6a3781c917ec (diff) |
Document default values for transition type and ease type.
-rw-r--r-- | doc/classes/Tween.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/classes/Tween.xml b/doc/classes/Tween.xml index 16e4ce3714..704430a1c2 100644 --- a/doc/classes/Tween.xml +++ b/doc/classes/Tween.xml @@ -214,6 +214,7 @@ <param index="0" name="ease" type="int" enum="Tween.EaseType" /> <description> Sets the default ease type for [PropertyTweener]s and [MethodTweener]s animated by this [Tween]. + If not specified, the default value is [constant EASE_IN_OUT]. </description> </method> <method name="set_loops"> @@ -260,6 +261,7 @@ <param index="0" name="trans" type="int" enum="Tween.TransitionType" /> <description> Sets the default transition type for [PropertyTweener]s and [MethodTweener]s animated by this [Tween]. + If not specified, the default value is [constant TRANS_LINEAR]. </description> </method> <method name="stop"> |