Answered by
6 years ago Edited 6 years ago
A UIAspectRatioConstraint ensures that a GuiObject maintains a particular aspect ratio even if it’s size is set as a percentage of its parent. If an object with this constraint is also under the control of a UILayout such as UIGridLayout, then the constraint controls the object’s size and overwrites any size the layout would apply.
A UIAspectRatioConstraint can be applied to a GuiObject by parenting it to that object.
When applied to a GuiObject, the UIAspectRatioConstraint will make sure that the object’s ratio is maintained by the value defined in AspectRatio. The AspectType sets what determines the maximum size of the object. When set to FitWithinMaxSize, the constraint will make the object the maximum size it can be within the AbsoluteSize of the element. When set to ScaleWithParentSize, the element’s maximum size will be the size of the parent while still maintaining the aspect ratio. Last, the DominantAxis will determine which axis to use when setting the new size of the element.
2 | GUI.RANDOMGUINAME.AnchorPoint = Vector 2. new( 0.5 , 0.5 ) |
4 | GUI.RANDOMGUINAME.Size = UDim 2. new( 0.5 , 0 , 0.5 , 0 ) |
6 | GUI.RANDOMGUINAME.Position = UDim 2. new( 0.5 , 0 , 0.5 , 0 ) |
Example of SizeConstraint within your GUI script
01 | local gui = script.Parent |
02 | local parent = gui.Parent |
04 | local function update() |
06 | parent.AbsoluteSize.x < parent.AbsoluteSize.y |
07 | and Enum.SizeConstraint.RelativeYY |
08 | or Enum.SizeConstraint.RelativeXX |
12 | parent:GetPropertyChangedSignal( "AbsoluteSize" ):Connect(update) |