Skip to content

Commit

Permalink
Merge pull request #98689 from Meorge/tween-docs
Browse files Browse the repository at this point in the history
Improve `Tween.set_ease` and `Tween.set_trans` documentation
  • Loading branch information
Repiteo committed Nov 12, 2024
2 parents caff0ff + 47be06b commit a5c5504
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions doc/classes/Tween.xml
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,14 @@
<return type="Tween" />
<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].
Sets the default ease type for [PropertyTweener]s and [MethodTweener]s appended after this method.
Before this method is called, the default ease type is [constant EASE_IN_OUT].
[codeblock]
var tween = create_tween()
tween.tween_property(self, "position", Vector2(300, 0), 0.5) # Uses EASE_IN_OUT.
tween.set_ease(Tween.EASE_IN)
tween.tween_property(self, "rotation_degrees", 45.0, 0.5) # Uses EASE_IN.
[/codeblock]
</description>
</method>
<method name="set_loops">
Expand Down Expand Up @@ -271,8 +277,14 @@
<return type="Tween" />
<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].
Sets the default transition type for [PropertyTweener]s and [MethodTweener]s appended after this method.
Before this method is called, the default transition type is [constant TRANS_LINEAR].
[codeblock]
var tween = create_tween()
tween.tween_property(self, "position", Vector2(300, 0), 0.5) # Uses TRANS_LINEAR.
tween.set_trans(Tween.TRANS_SINE)
tween.tween_property(self, "rotation_degrees", 45.0, 0.5) # Uses TRANS_SINE.
[/codeblock]
</description>
</method>
<method name="stop">
Expand Down

0 comments on commit a5c5504

Please sign in to comment.