diff options
author | Yuri Rubinsky <chaosus89@gmail.com> | 2022-10-17 08:12:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-17 08:12:34 +0300 |
commit | 0d28820c816fa66b66a98cc6c9df25ff74cbb19f (patch) | |
tree | 16985a35b117fd8f3bb2c3bfc15de7d4400e7208 /doc/classes/PropertyTweener.xml | |
parent | 9afc8337bd1a4420cf6b1d61bd2a25d50317a158 (diff) | |
parent | 0743e334077e2bd1042541a609ec4a538dadd569 (diff) |
Merge pull request #67488 from Iniquitatis/patch-1
Diffstat (limited to 'doc/classes/PropertyTweener.xml')
-rw-r--r-- | doc/classes/PropertyTweener.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/PropertyTweener.xml b/doc/classes/PropertyTweener.xml index 75d9c919aa..78ead65cdd 100644 --- a/doc/classes/PropertyTweener.xml +++ b/doc/classes/PropertyTweener.xml @@ -27,7 +27,7 @@ Sets a custom initial value to the [PropertyTweener]. Example: [codeblock] var tween = get_tree().create_tween() - tween.tween_property(self, "position", Vector2(200, 100), 1).from(Vector2(100, 100) #this will move the node from position (100, 100) to (200, 100) + tween.tween_property(self, "position", Vector2(200, 100), 1).from(Vector2(100, 100)) #this will move the node from position (100, 100) to (200, 100) [/codeblock] </description> </method> |