UDim2

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

*เนื้อหานี้จะพร้อมใช้งานในภาษาที่คุณเลือกในเร็วๆ นี้

The UDim2 data type represents a two-dimensional value where each dimension is composed of a relative scale and an absolute offset in pixels. It is a combination of two UDim data types representing the X and Y dimensions. The most common usages for UDim2 are setting the Size and Position of GuiObjects.


local guiObject = script.Parent
guiObject.Size = UDim2.new(0, 300, 1, 0) -- 300 pixels wide; full height of parent
guiObject.Position = UDim2.new(0, 50, 0, 0) -- 50 pixels from the left

สรุป

คอนสตรัคเตอร์

คุณสมบัติ

  • The X dimension scale and offset of the UDim2.

  • The Y dimension scale and offset of the UDim2.

  • The X dimension scale and offset of the UDim2.

  • The Y dimension scale and offset of the UDim2.

วิธีการ

  • Lerp(goal : UDim2,alpha : number):UDim2

    Returns a UDim2 interpolated linearly between the value and the given goal.

การดำเนินการทางคณิตศาสตร์

คอนสตรัคเตอร์

new

new

พารามิเตอร์

xScale: number
ค่าเริ่มต้น: 0
xOffset: number
ค่าเริ่มต้น: 0
yScale: number
ค่าเริ่มต้น: 0
yOffset: number
ค่าเริ่มต้น: 0

new

พารามิเตอร์

x: UDim
y: UDim

fromScale

พารามิเตอร์

xScale: number
ค่าเริ่มต้น: 0
yScale: number
ค่าเริ่มต้น: 0

fromOffset

พารามิเตอร์

xOffset: number
ค่าเริ่มต้น: 0
yOffset: number
ค่าเริ่มต้น: 0

คุณสมบัติ

The X dimension scale and offset of the UDim2.

The Y dimension scale and offset of the UDim2.

Width

The X dimension scale and offset of the UDim2.

Height

The Y dimension scale and offset of the UDim2.

วิธีการ

Lerp

Returns a UDim2 interpolated linearly between this UDim2 and the given goal. The alpha value should be a number between 0 and 1.

พารามิเตอร์

goal: UDim2
alpha: number

ส่งค่ากลับ

การดำเนินการทางคณิตศาสตร์