UIScale

แสดงที่เลิกใช้งานแล้ว

*เนื้อหานี้แปลโดยใช้ AI (เวอร์ชัน Beta) และอาจมีข้อผิดพลาด หากต้องการดูหน้านี้เป็นภาษาอังกฤษ ให้คลิกที่นี่

วัตถุ UIScale เพียงแค่มีตัวเลขที่ใช้เพื่อการเพิ่ม GuiBase2d.AbsoluteSize ขององค์ประกอบ UI หลัก ตัวเลขนี้จะถูกเก็บไว้ใน UIScale.Scale

ตัวอย่างโค้ด

UI Scale Demo

-- Lay out the images in a list
Instance.new("UIListLayout", script.Parent).SortOrder = Enum.SortOrder.LayoutOrder
-- Create some images of varying sizes using UIScale objects
for size = 0.2, 1.5, 0.2 do
local image = Instance.new("ImageLabel")
image.Image = "rbxassetid://284402752" -- an image of a Lock
image.Parent = script.Parent
image.Size = UDim2.new(0, 100, 0, 100)
-- Scale the image by adding a UIScale with the size
-- Note: this is a shorthand since we don't need a reference to the UIScale
Instance.new("UIScale", image).Scale = size
end

คุณสมบัติ

Scale

อ่านพร้อมๆ กัน

สมบัติสกุล ระบุตัวคูณที่ใช้ในเอเลเมนต์ผู้ปกครอง UI ของพ่อ GuiBase2d.AbsoluteSize เมื่อตั้งไว้ที่ 0.5 จะกลายเป็น 0, 100, 0, 50 เช่น

ตัวอย่างโค้ด

UI Scale Demo

-- Lay out the images in a list
Instance.new("UIListLayout", script.Parent).SortOrder = Enum.SortOrder.LayoutOrder
-- Create some images of varying sizes using UIScale objects
for size = 0.2, 1.5, 0.2 do
local image = Instance.new("ImageLabel")
image.Image = "rbxassetid://284402752" -- an image of a Lock
image.Parent = script.Parent
image.Size = UDim2.new(0, 100, 0, 100)
-- Scale the image by adding a UIScale with the size
-- Note: this is a shorthand since we don't need a reference to the UIScale
Instance.new("UIScale", image).Scale = size
end

วิธีการ

อีเวนต์