From 4d7a4802eb2f6e200481a546fe71201f25903b0d Mon Sep 17 00:00:00 2001 From: willemsteller Date: Mon, 29 Dec 2025 15:38:35 +0100 Subject: [PATCH 1/2] V --- xml/types/ValueBase.xml | 2 +- xml/types/Vector2.xml | 54 +++++++++++++++---------------- xml/types/Vector2Value.xml | 4 +-- xml/types/Vector3.xml | 66 +++++++++++++++++++------------------- xml/types/Vector3Value.xml | 4 +-- 5 files changed, 65 insertions(+), 65 deletions(-) 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. From 10e4551174622824da9248067cc9a48dee11503d Mon Sep 17 00:00:00 2001 From: willemsteller Date: Mon, 29 Dec 2025 15:49:10 +0100 Subject: [PATCH 2/2] U --- xml/types/UIButton.xml | 2 +- xml/types/UIField.xml | 26 +++++++++++++------------- xml/types/UIHVLayout.xml | 6 +++--- xml/types/UIHorizontalLayout.xml | 2 +- xml/types/UIImage.xml | 10 +++++----- xml/types/UILabel.xml | 20 ++++++++++---------- xml/types/UIScrollView.xml | 6 +++--- xml/types/UITextInput.xml | 24 ++++++++++++------------ xml/types/UIVerticalLayout.xml | 2 +- xml/types/UIView.xml | 10 +++++----- 10 files changed, 54 insertions(+), 54 deletions(-) diff --git a/xml/types/UIButton.xml b/xml/types/UIButton.xml index 91e752b..f3e7f64 100644 --- a/xml/types/UIButton.xml +++ b/xml/types/UIButton.xml @@ -10,5 +10,5 @@ false false true - Missing Documentation + UIButton is a class that represents a clickable button UI element. diff --git a/xml/types/UIField.xml b/xml/types/UIField.xml index 4bad08c..da12b4b 100644 --- a/xml/types/UIField.xml +++ b/xml/types/UIField.xml @@ -8,7 +8,7 @@ true false false - Missing Documentation + The offset of the UI element in pixels. PositionRelative @@ -16,7 +16,7 @@ true false false - Missing Documentation + The position of the UI element relative to its parent. Rotation @@ -24,7 +24,7 @@ true false false - Missing Documentation + The rotation of the UI element in degrees. SizeOffset @@ -32,7 +32,7 @@ true false false - Missing Documentation + The size offset of the UI element in pixels. SizeRelative @@ -40,7 +40,7 @@ true false false - Missing Documentation + The size of the UI element relative to its parent. ClipDescendants @@ -48,7 +48,7 @@ true false false - Missing Documentation + Determines whether the UI element clips its descendants. PivotPoint @@ -56,7 +56,7 @@ true false false - Missing Documentation + The pivot point of the UI element. Scale @@ -64,7 +64,7 @@ true false false - Missing Documentation + The scale of the UI element. Visible @@ -72,7 +72,7 @@ true false false - Missing Documentation + Determines whether the UI element is visible. MaskMode @@ -80,7 +80,7 @@ true false false - Missing Documentation + Determines the mask mode of the UI element. AbsoluteSize @@ -88,7 +88,7 @@ true true false - Missing Documentation + The absolute size of the UI element in pixels. IsVisibleInTree @@ -96,7 +96,7 @@ true true false - Missing Documentation + Indicates whether the UI element is visible in the UI hierarchy. MouseEnter @@ -131,5 +131,5 @@ false false true - Missing Documentation + UIField is the abstract base class of all UI classes. diff --git a/xml/types/UIHVLayout.xml b/xml/types/UIHVLayout.xml index 138654c..b6e85a7 100644 --- a/xml/types/UIHVLayout.xml +++ b/xml/types/UIHVLayout.xml @@ -8,7 +8,7 @@ true false false - Missing Documentation + The spacing between child elements in the layout. ChildAlignment @@ -16,10 +16,10 @@ true false false - Missing Documentation + Determines the alignment of child elements within the layout. false true false - Missing Documentation + UIHVLayout is an abstract class that provides horizontal and vertical layout functionality for UI elements. diff --git a/xml/types/UIHorizontalLayout.xml b/xml/types/UIHorizontalLayout.xml index 6b5901a..9101472 100644 --- a/xml/types/UIHorizontalLayout.xml +++ b/xml/types/UIHorizontalLayout.xml @@ -5,5 +5,5 @@ false false true - Missing Documentation + UIHorizontalLayout is a class that aligns all of its children horizontally. diff --git a/xml/types/UIImage.xml b/xml/types/UIImage.xml index 4f7b099..371bc21 100644 --- a/xml/types/UIImage.xml +++ b/xml/types/UIImage.xml @@ -8,7 +8,7 @@ true false false - Missing Documentation + The image asset used for the image. Color @@ -16,7 +16,7 @@ true false false - Missing Documentation + The color applied to the image. StretchMode @@ -24,7 +24,7 @@ true false false - Missing Documentation + Determines how the image is stretched within the view. Loading @@ -32,10 +32,10 @@ true true false - Missing Documentation + Indicates whether the image is currently loading. false false true - Missing Documentation + UIImage is a class that can be used to display images. diff --git a/xml/types/UILabel.xml b/xml/types/UILabel.xml index 788a4d1..040b675 100644 --- a/xml/types/UILabel.xml +++ b/xml/types/UILabel.xml @@ -8,7 +8,7 @@ true false false - Missing Documentation + The text of the label. TextColor @@ -16,7 +16,7 @@ true false false - Missing Documentation + The color of the text. OutlineWidth @@ -24,7 +24,7 @@ true false false - Missing Documentation + The width of the text outline. OutlineColor @@ -32,7 +32,7 @@ true false false - Missing Documentation + The color of the text outline. HorizontalAlignment @@ -40,7 +40,7 @@ true false false - Missing Documentation + Determines the horizontal alignment of the text. VerticalAlignment @@ -48,7 +48,7 @@ true false false - Missing Documentation + Determines the vertical alignment of the text. FontSize @@ -56,7 +56,7 @@ true false false - Missing Documentation + The font size of the text. UseRichText @@ -64,7 +64,7 @@ true false false - Missing Documentation + Determines whether the text uses rich text formatting. FontAsset @@ -72,10 +72,10 @@ true false false - Missing Documentation + The font asset used for the text. false false true - Missing Documentation + UILabel is a class that can be used to display text. diff --git a/xml/types/UIScrollView.xml b/xml/types/UIScrollView.xml index c6ed6a8..38ade13 100644 --- a/xml/types/UIScrollView.xml +++ b/xml/types/UIScrollView.xml @@ -8,7 +8,7 @@ true false false - Missing Documentation + Determines the horizontal scroll mode of the scroll view. VerticalScrollMode @@ -16,10 +16,10 @@ true false false - Missing Documentation + Determines the vertical scroll mode of the scroll view. false false true - Missing Documentation + UIScrollView is a class that allows the user to scroll content within a view. diff --git a/xml/types/UITextInput.xml b/xml/types/UITextInput.xml index 968df66..46ce3f4 100644 --- a/xml/types/UITextInput.xml +++ b/xml/types/UITextInput.xml @@ -8,7 +8,7 @@ true false false - Missing Documentation + The text of the label. TextColor @@ -16,7 +16,7 @@ true false false - Missing Documentation + The color of the text. JustifyText @@ -24,7 +24,7 @@ true false false - Missing Documentation + Determines how text is justified. FontSize @@ -32,7 +32,7 @@ true false false - Missing Documentation + The font size of the label. IsMultiline @@ -40,7 +40,7 @@ true false false - Missing Documentation + Determines whether the text input supports multiple lines. Placeholder @@ -48,7 +48,7 @@ true false false - Missing Documentation + The placeholder text displayed when the input is empty. PlaceholderColor @@ -56,7 +56,7 @@ true false false - Missing Documentation + The color of the placeholder text. ReadonlyColor @@ -64,7 +64,7 @@ true false false - Missing Documentation + The color of the text when the input is read-only. IsReadOnly @@ -72,7 +72,7 @@ true false false - Missing Documentation + Determines whether the text input is read-only. FontAsset @@ -80,7 +80,7 @@ true false false - Missing Documentation + The font asset used for the text. Focus @@ -88,7 +88,7 @@ false false false - Missing Documentation + Forces the local player to focus on the text input. Submitted @@ -109,5 +109,5 @@ false false true - Missing Documentation + UITextInput is a class that allows the user to enter text. diff --git a/xml/types/UIVerticalLayout.xml b/xml/types/UIVerticalLayout.xml index d1001ef..ffe33f0 100644 --- a/xml/types/UIVerticalLayout.xml +++ b/xml/types/UIVerticalLayout.xml @@ -5,5 +5,5 @@ false false true - Missing Documentation + UIVerticalLayout is a class that aligns all of its children vertically. diff --git a/xml/types/UIView.xml b/xml/types/UIView.xml index 7cb3d9e..b1eaabc 100644 --- a/xml/types/UIView.xml +++ b/xml/types/UIView.xml @@ -8,7 +8,7 @@ true false false - Missing Documentation + Determines the border color of the UI. Color @@ -16,7 +16,7 @@ true false false - Missing Documentation + Determines the color of the UI. BorderWidth @@ -24,7 +24,7 @@ true false false - Missing Documentation + Determines the width of the border of the UI. CornerRadius @@ -32,10 +32,10 @@ true false false - Missing Documentation + Determines the corner radius of the UI. false false true - Missing Documentation + UIView is a class that displays a rectangle in your place's UI.