From fdc2bb1952c14ac9b738b560820232761e4cbe3b Mon Sep 17 00:00:00 2001 From: Chris Bradfield Date: Sun, 26 Aug 2018 15:31:09 -0700 Subject: [PATCH] [DOCS] Corrections and clarifications (cherry picked from commit 285234e8d908a9dad0cda568e98f777ff002481e) --- doc/classes/Vector2.xml | 4 ++-- doc/classes/Vector3.xml | 4 ++-- doc/classes/VideoStream.xml | 1 + doc/classes/ViewportContainer.xml | 3 +++ doc/classes/WindowDialog.xml | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/doc/classes/Vector2.xml b/doc/classes/Vector2.xml index cf324e8fc36..38bc866f00f 100644 --- a/doc/classes/Vector2.xml +++ b/doc/classes/Vector2.xml @@ -100,7 +100,7 @@ - Cubicly interpolates between this vector and [code]b[/code] using [code]pre_a[/code] and [code]post_b[/code] as handles, and returns the result at position [code]t[/code]. [code]t[/code] is in the range of [code]0.0 - 1.0[/code], or a percentage of how far along the interpolation is. + Cubicly interpolates between this vector and [code]b[/code] using [code]pre_a[/code] and [code]post_b[/code] as handles, and returns the result at position [code]t[/code]. [code]t[/code] is in the range of [code]0.0 - 1.0[/code], representing the amount of interpolation. @@ -166,7 +166,7 @@ - Returns the result of the linear interpolation between this vector and [code]b[/code] by amount [code]t[/code]. [code]t[/code] is in the range of [code]0.0 - 1.0[/code], a percentage of how far along the interpolation is. + Returns the result of the linear interpolation between this vector and [code]b[/code] by amount [code]t[/code]. [code]t[/code] is in the range of [code]0.0 - 1.0[/code], representing the amount of interpolation. diff --git a/doc/classes/Vector3.xml b/doc/classes/Vector3.xml index c116eb26d37..95cc7127dfa 100644 --- a/doc/classes/Vector3.xml +++ b/doc/classes/Vector3.xml @@ -78,7 +78,7 @@ - Performs a cubic interpolation between vectors [code]pre_a[/code], [code]a[/code], [code]b[/code], [code]post_b[/code] ([code]a[/code] is current), by the given amount (t). (t) should be a float of 0.0-1.0, a percentage of how far along the interpolation is. + Performs a cubic interpolation between vectors [code]pre_a[/code], [code]a[/code], [code]b[/code], [code]post_b[/code] ([code]a[/code] is current), by the given amount [code]t[/code]. [code]t[/code] is in the range of [code]0.0 - 1.0[/code], representing the amount of interpolation. @@ -151,7 +151,7 @@ - Returns the result of the linear interpolation between this vector and [code]b[/code] by amount [code]t[/code]. [code]t[/code] is in the range of [code]0.0 - 1.0[/code], a percentage of how far along the interpolation is. + Returns the result of the linear interpolation between this vector and [code]b[/code] by amount [code]t[/code]. [code]t[/code] is in the range of [code]0.0 - 1.0[/code], representing the amount of interpolation.. diff --git a/doc/classes/VideoStream.xml b/doc/classes/VideoStream.xml index 13149faec5b..a245eecbd14 100644 --- a/doc/classes/VideoStream.xml +++ b/doc/classes/VideoStream.xml @@ -1,6 +1,7 @@ + Base resource for video streams. diff --git a/doc/classes/ViewportContainer.xml b/doc/classes/ViewportContainer.xml index 7e0364abf81..6aa065cdd65 100644 --- a/doc/classes/ViewportContainer.xml +++ b/doc/classes/ViewportContainer.xml @@ -1,8 +1,10 @@ + Control for holding [Viewport]s. + A [Container] node that holds a [Viewport], automatically setting its size. @@ -12,6 +14,7 @@ + If [code]true[/code] the viewport will be scaled to the control's size. Default value:[code]false[/code]. diff --git a/doc/classes/WindowDialog.xml b/doc/classes/WindowDialog.xml index 099ab92dc34..a8cc414b289 100644 --- a/doc/classes/WindowDialog.xml +++ b/doc/classes/WindowDialog.xml @@ -24,7 +24,7 @@ If [code]true[/code] the user can resize the window. Default value: [code]false[/code]. - The text displayed in the window's title bar. Default value: "Save a File". + The text displayed in the window's title bar.