diff --git a/doc/classes/PoolByteArray.xml b/doc/classes/PoolByteArray.xml index 4e5b86ee0a3..9301e4ff11b 100644 --- a/doc/classes/PoolByteArray.xml +++ b/doc/classes/PoolByteArray.xml @@ -125,7 +125,7 @@ - Returns the size of the array. + Returns the number of elements in the array. diff --git a/doc/classes/PoolColorArray.xml b/doc/classes/PoolColorArray.xml index 4fe42de6ac8..f0b413bb333 100644 --- a/doc/classes/PoolColorArray.xml +++ b/doc/classes/PoolColorArray.xml @@ -76,7 +76,7 @@ - Returns the size of the array. + Returns the number of elements in the array. diff --git a/doc/classes/PoolIntArray.xml b/doc/classes/PoolIntArray.xml index 55d0bf97bab..e19ba1409db 100644 --- a/doc/classes/PoolIntArray.xml +++ b/doc/classes/PoolIntArray.xml @@ -78,7 +78,7 @@ - Returns the array size. + Returns the number of elements in the array. diff --git a/doc/classes/PoolRealArray.xml b/doc/classes/PoolRealArray.xml index 2bd9050283c..fcb0678f64e 100644 --- a/doc/classes/PoolRealArray.xml +++ b/doc/classes/PoolRealArray.xml @@ -78,7 +78,7 @@ - Returns the size of the array. + Returns the number of elements in the array. diff --git a/doc/classes/PoolStringArray.xml b/doc/classes/PoolStringArray.xml index f1932559ad9..84036af5547 100644 --- a/doc/classes/PoolStringArray.xml +++ b/doc/classes/PoolStringArray.xml @@ -84,7 +84,7 @@ - Returns the size of the array. + Returns the number of elements in the array. diff --git a/doc/classes/PoolVector2Array.xml b/doc/classes/PoolVector2Array.xml index e877adf5982..9fbc32be4e2 100644 --- a/doc/classes/PoolVector2Array.xml +++ b/doc/classes/PoolVector2Array.xml @@ -77,7 +77,7 @@ - Returns the size of the array. + Returns the number of elements in the array. diff --git a/doc/classes/PoolVector3Array.xml b/doc/classes/PoolVector3Array.xml index 2e927a2bac3..7a6478210af 100644 --- a/doc/classes/PoolVector3Array.xml +++ b/doc/classes/PoolVector3Array.xml @@ -76,7 +76,7 @@ - Returns the size of the array. + Returns the number of elements in the array. diff --git a/doc/classes/RayCast.xml b/doc/classes/RayCast.xml index ec3d31e6648..760368fe265 100644 --- a/doc/classes/RayCast.xml +++ b/doc/classes/RayCast.xml @@ -38,8 +38,7 @@ - Updates the collision information for the ray. - Use this method to update the collision information immediately instead of waiting for the next [code]_physics_process[/code] call, for example if the ray or its parent has changed state. + Updates the collision information for the ray. Use this method to update the collision information immediately instead of waiting for the next [code]_physics_process[/code] call, for example if the ray or its parent has changed state. [b]Note:[/b] [code]enabled[/code] is not required for this to work. diff --git a/doc/classes/Transform.xml b/doc/classes/Transform.xml index 41de2601ab4..3ac925f9a57 100644 --- a/doc/classes/Transform.xml +++ b/doc/classes/Transform.xml @@ -66,13 +66,13 @@ - Interpolates the transform to other Transform by weight amount (on the range of 0.0 to 1.0). + Returns a transform interpolated between this transform and another by a given [code]weight[/code] (on the range of 0.0 to 1.0). - Returns the inverse of the transform, under the assumption that the transformation is composed of rotation and translation (no scaling, use affine_inverse for transforms with scaling). + Returns the inverse of the transform, under the assumption that the transformation is composed of rotation and translation (no scaling, use [method affine_inverse] for transforms with scaling). @@ -95,7 +95,7 @@ - Returns the transform with the basis orthogonal (90 degrees), and normalized axis vectors. + Returns the transform with the basis orthogonal (90 degrees), and normalized axis vectors (scale of 1 or -1). diff --git a/doc/classes/Vector2.xml b/doc/classes/Vector2.xml index 6b9fc3fdaa5..6ac1e751dae 100644 --- a/doc/classes/Vector2.xml +++ b/doc/classes/Vector2.xml @@ -71,7 +71,7 @@ - Returns the vector with all components rounded up (towards positive infinity). + Returns a new vector with all components rounded up (towards positive infinity). @@ -134,7 +134,7 @@ - Returns the vector with all components rounded down (towards negative infinity). + Returns a new vector with all components rounded down (towards negative infinity). @@ -183,7 +183,7 @@ - Moves the vector toward [code]to[/code] by the fixed [code]delta[/code] amount. + Returns a new vector moved toward [code]to[/code] by the fixed [code]delta[/code] amount. Will not go past the final value. @@ -210,7 +210,7 @@ - Returns the vector projected onto the vector [code]b[/code]. + Returns this vector projected onto the vector [code]b[/code]. @@ -230,13 +230,13 @@ - Returns the vector with all components rounded to the nearest integer, with halfway cases rounded away from zero. + Returns a new vector with all components rounded to the nearest integer, with halfway cases rounded away from zero. - Returns the vector with each component set to one or negative one, depending on the signs of the components. If a component is zero, it returns positive one. + Returns a new vector with each component set to one or negative one, depending on the signs of the components. If a component is zero, it returns positive one. diff --git a/doc/classes/Vector3.xml b/doc/classes/Vector3.xml index d217a11f298..65f5dcc0596 100644 --- a/doc/classes/Vector3.xml +++ b/doc/classes/Vector3.xml @@ -65,7 +65,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 [code]weight[/code]. [code]weight[/code] is on the range of 0.0 to 1.0, representing the amount of interpolation. + Performs a cubic interpolation 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]weight[/code]. [code]weight[/code] is on the range of 0.0 to 1.0, representing the amount of interpolation. @@ -170,7 +170,7 @@ - Moves this vector toward [code]to[/code] by the fixed [code]delta[/code] amount. + Returns a new vector moved toward [code]to[/code] by the fixed [code]delta[/code] amount. Will not go past the final value. @@ -204,7 +204,7 @@ - Returns this vector projected onto another vector [code]b[/code]. + Returns this vector projected onto the vector [code]b[/code]. @@ -225,13 +225,13 @@ - Returns this vector with all components rounded to the nearest integer, with halfway cases rounded away from zero. + Returns a new vector with all components rounded to the nearest integer, with halfway cases rounded away from zero. - Returns a vector with each component set to one or negative one, depending on the signs of this vector's components. If a component is zero, it returns positive one. + Returns a new vector with each component set to one or negative one, depending on the signs of the components. If a component is zero, it returns positive one.