summaryrefslogtreecommitdiff
path: root/doc/classes/PropertyTweener.xml
diff options
context:
space:
mode:
authorDominus Iniquitatis <Iniquitatis@users.noreply.github.com>2022-10-16 15:36:32 +0300
committerGitHub <noreply@github.com>2022-10-16 15:36:32 +0300
commit0743e334077e2bd1042541a609ec4a538dadd569 (patch)
treed942ed82c2dddaf01efc78540f1b81c55d3219cf /doc/classes/PropertyTweener.xml
parent767f8fb483851a210f170956e238e8b0cefa3834 (diff)
Fix missing parenthesis in the documentation
Diffstat (limited to 'doc/classes/PropertyTweener.xml')
-rw-r--r--doc/classes/PropertyTweener.xml2
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>