From a1134e861efda2bc23e6f7427b70f0caf2438a54 Mon Sep 17 00:00:00 2001 From: Fluffel Date: Sat, 11 Aug 2018 08:42:44 -0500 Subject: [PATCH] [DOCS] get_indexed, tween (cherry picked from commit a164d593c092874ecb9eb09d28ba94788a86da75) --- doc/classes/Object.xml | 2 ++ doc/classes/Tween.xml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/classes/Object.xml b/doc/classes/Object.xml index 7726f9039c..5ba1ba16a4 100644 --- a/doc/classes/Object.xml +++ b/doc/classes/Object.xml @@ -184,6 +184,8 @@ + Get indexed object property by String. + Property indices get accessed with colon seperation, for example: [code]position:x[/code] diff --git a/doc/classes/Tween.xml b/doc/classes/Tween.xml index 228ed5ce74..3653deb97d 100644 --- a/doc/classes/Tween.xml +++ b/doc/classes/Tween.xml @@ -170,7 +170,7 @@ - Animates [code]property[/code] of [code]object[/code] from [code]initial_val[/code] to [code]final_val[/code] for [code]duration[/code] seconds, [code]delay[/code] seconds later. + Animates [code]property[/code] of [code]object[/code] from [code]initial_val[/code] to [code]final_val[/code] for [code]duration[/code] seconds, [code]delay[/code] seconds later. Setting the initial value to [code]null[/code] uses the current value of the property. Use [enum TransitionType] for [code]trans_type[/code] and [enum EaseType] for [code]ease_type[/code] parameters. These values control the timing and direction of the interpolation. See the class description for more information