UIScale
Tampilkan yang Tidak Digunakan Lagi
*Konten ini diterjemahkan menggunakan AI (Beta) dan mungkin mengandung kesalahan. Untuk melihat halaman ini dalam bahasa Inggris, klik di sini.
Objek UIScale hanya berisi nomor yang digunakan untuk menggandakan GuiBase2d.AbsoluteSize dari elemen UI tertinggi. Angka ini disimpan di UIScale.Scale .
Contoh Kode
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
Rangkuman
Properti
Mengukur ukuran elemen UI tertinggi.
Properti
Scale
Prop Scale menentukan pengganda yang digunakan pada elemen UI parent GuiBase2d.AbsoluteSize . Saat diatur ke 0,5, AbsoluteSize 0, 200, 0, 50 menjadi 0, 100, 0, 25. Demikian pula, saat diatur ke 2, prop Scale menjadi 0, 400, 0, 10
Contoh Kode
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