diff --git a/xml/types/ValueBase.xml b/xml/types/ValueBase.xml index aa18d51..75f7cce 100644 --- a/xml/types/ValueBase.xml +++ b/xml/types/ValueBase.xml @@ -10,5 +10,5 @@ false true false - Missing Documentation + ValueBase is an abstract base class for objects that hold a value. diff --git a/xml/types/Vector2.xml b/xml/types/Vector2.xml index cecbfa8..4f11b43 100644 --- a/xml/types/Vector2.xml +++ b/xml/types/Vector2.xml @@ -8,7 +8,7 @@ true false false - Missing Documentation + The X component of the vector. Y @@ -16,7 +16,7 @@ true false false - Missing Documentation + The Y component of the vector. Down @@ -24,7 +24,7 @@ true true false - Missing Documentation + Shorthand for Vector2.New(0, -1). Left @@ -32,7 +32,7 @@ true true false - Missing Documentation + Shorthand for Vector2.New(-1, 0). One @@ -40,7 +40,7 @@ true true false - Missing Documentation + Shorthand for Vector2.New(1, 1). Zero @@ -48,7 +48,7 @@ true true false - Missing Documentation + Shorthand for Vector2.New(0, 0). Right @@ -56,7 +56,7 @@ true true false - Missing Documentation + Shorthand for Vector2.New(1, 0). Up @@ -64,7 +64,7 @@ true true false - Missing Documentation + Shorthand for Vector2.New(0, 1). Magnitude @@ -72,7 +72,7 @@ true true false - Missing Documentation + The length of the vector. Normalized @@ -80,7 +80,7 @@ true true false - Missing Documentation + The normalized version of the vector. SqrMagnitude @@ -88,7 +88,7 @@ true true false - Missing Documentation + The squared length of the vector. New @@ -96,7 +96,7 @@ false false true - Missing Documentation + Returns a new Vector2. New @@ -110,7 +110,7 @@ false false true - Missing Documentation + Returns a new Vector2 with all components set to the given number. New @@ -130,7 +130,7 @@ false false true - Missing Documentation + Returns a new Vector2 with the given x and y components. Angle @@ -150,7 +150,7 @@ false false true - Missing Documentation + Returns the angle in degrees between from and to. Cross @@ -170,7 +170,7 @@ false false true - Missing Documentation + Returns the cross product of lhs and rhs. Distance @@ -190,7 +190,7 @@ false false true - Missing Documentation + Returns the distance between a and b. Dot @@ -210,7 +210,7 @@ false false true - Missing Documentation + Returns the dot product of lhs and rhs. Lerp @@ -236,7 +236,7 @@ false false true - Missing Documentation + Returns a new vector that is the linear interpolation between a and b by t. Max @@ -256,7 +256,7 @@ false false true - Missing Documentation + Returns a vector that is made from the largest components of two vectors. Min @@ -276,7 +276,7 @@ false false true - Missing Documentation + Returns a vector that is made from the smallest components of two vectors. MoveTowards @@ -302,7 +302,7 @@ false false true - Missing Documentation + Calculate a position between the points specified by current and target, moving no farther than the distance specified by maxDistanceDelta. Normalize @@ -316,7 +316,7 @@ false false true - Missing Documentation + Returns a new Vector2 that is the normalized version of the given vector. Project @@ -336,7 +336,7 @@ false false true - Missing Documentation + Returns the projection of a vector onto another vector. Reflect @@ -356,7 +356,7 @@ false false true - Missing Documentation + Returns the reflection of a vector off the plane defined by a normal. Slerp @@ -382,10 +382,10 @@ false false true - Missing Documentation + Spherically interpolates between two vectors. false false false - Missing Documentation + Vector2 is a 2D vector with an x and y component. diff --git a/xml/types/Vector2Value.xml b/xml/types/Vector2Value.xml index 440b001..a117fb3 100644 --- a/xml/types/Vector2Value.xml +++ b/xml/types/Vector2Value.xml @@ -8,10 +8,10 @@ true false false - Missing Documentation + The value of this object. false false true - Missing Documentation + Vector2Value is an object that holds a Vector2 value. diff --git a/xml/types/Vector3.xml b/xml/types/Vector3.xml index c948aa2..39405e3 100644 --- a/xml/types/Vector3.xml +++ b/xml/types/Vector3.xml @@ -8,7 +8,7 @@ true false false - Missing Documentation + The X component of the vector. Y @@ -16,7 +16,7 @@ true false false - Missing Documentation + The Y component of the vector. Z @@ -24,7 +24,7 @@ true false false - Missing Documentation + The Z component of the vector. Forward @@ -32,7 +32,7 @@ true true false - Missing Documentation + Shorthand for Vector3.New(0, 0, -1). Back @@ -40,7 +40,7 @@ true true false - Missing Documentation + Shorthand for Vector3.New(0, 0, 1). Down @@ -48,7 +48,7 @@ true true false - Missing Documentation + Shorthand for Vector3.New(0, -1, 0). Left @@ -56,7 +56,7 @@ true true false - Missing Documentation + Shorthand for Vector3.New(-1, 0, 0). One @@ -64,7 +64,7 @@ true true false - Missing Documentation + Shorthand for Vector3.New(1, 1, 1). Zero @@ -72,7 +72,7 @@ true true false - Missing Documentation + Shorthand for Vector3.New(0, 0, 0). Right @@ -80,7 +80,7 @@ true true false - Missing Documentation + Shorthand for Vector3.New(1, 0, 0). Up @@ -88,7 +88,7 @@ true true false - Missing Documentation + Shorthand for Vector3.New(0, 1, 0). Magnitude @@ -96,7 +96,7 @@ true true false - Missing Documentation + The length of the vector. Normalized @@ -104,7 +104,7 @@ true true false - Missing Documentation + The normalized version of the vector. SqrMagnitude @@ -112,7 +112,7 @@ true true false - Missing Documentation + The squared length of the vector. New @@ -120,7 +120,7 @@ false false true - Missing Documentation + Returns a new Vector3. New @@ -134,7 +134,7 @@ false false true - Missing Documentation + Returns a new Vector3 with all components set to the given number. New @@ -154,7 +154,7 @@ false false true - Missing Documentation + Returns a new Vector3 with the given x and y components and a z component of 0. New @@ -180,7 +180,7 @@ false false true - Missing Documentation + Returns a new Vector3 with the given x, y, and z components. New @@ -194,7 +194,7 @@ false false true - Missing Documentation + Returns a new Vector3 with the given Vector2 components and a z component of 0. Angle @@ -214,7 +214,7 @@ false false true - Missing Documentation + Returns the angle in degrees between from and to. Cross @@ -234,7 +234,7 @@ false false true - Missing Documentation + Returns the cross product of lhs and rhs. Distance @@ -254,7 +254,7 @@ false false true - Missing Documentation + Returns the distance between a and b. Dot @@ -274,7 +274,7 @@ false false true - Missing Documentation + Returns the dot product of lhs and rhs. Lerp @@ -300,7 +300,7 @@ false false true - Missing Documentation + Returns a new Vector3 that is the linear interpolation between a and b by t. Max @@ -320,7 +320,7 @@ false false true - Missing Documentation + Returns a vector that is made from the largest components of two vectors. Min @@ -340,7 +340,7 @@ false false true - Missing Documentation + Returns a vector that is made from the smallest components of two vectors. MoveTowards @@ -366,7 +366,7 @@ false false true - Missing Documentation + Calculate a position between the points specified by current and target, moving no farther than the distance specified by maxDistanceDelta. Normalize @@ -380,7 +380,7 @@ false false true - Missing Documentation + Returns a new Vector3 that is the normalized version of the given vector. Project @@ -400,7 +400,7 @@ false false true - Missing Documentation + Returns the projection of a vector onto another vector. Reflect @@ -420,7 +420,7 @@ false false true - Missing Documentation + Returns the reflection of a vector off the plane defined by a normal. SignedAngle @@ -446,7 +446,7 @@ false false true - Missing Documentation + Returns the signed angle in degrees between from and to. Slerp @@ -472,10 +472,10 @@ false false true - Missing Documentation + Spherically interpolates between two vectors. false false false - Missing Documentation + Vector3 is a 3D vector with an x, y and z component. diff --git a/xml/types/Vector3Value.xml b/xml/types/Vector3Value.xml index c2a403d..da9c1d9 100644 --- a/xml/types/Vector3Value.xml +++ b/xml/types/Vector3Value.xml @@ -8,10 +8,10 @@ true false false - Missing Documentation + The value of this object. false false true - Missing Documentation + Vector3Value is an object that holds a Vector3 value.