UIWidgetType

Widget 의 타입이에요.

Enums

이름

설명

None

아무 타입도 아니에요.

Text

Text 타입이에요.

TextBox

TextBox 타입이에요.

Image

Image 타입이에요.

Button

Button 타입이에요.

Frame

Frame 타입이에요.

ScrollBox

ScrollBox 타입이에요.

HorizontalBox

HorizontalBox 타입이에요.

VerticalBox

VerticalBox 타입이에요.

ProgressBar

ProgressBar 타입이에요.

GridBox

GridBox 타입이에요.

InventoryBox

InventoryBox 타입이에요.

ListView

ListView 타입이에요.

WebBrowser

WebBrowser 타입이에요.

MediaView

MediaView 타입이에요.

HyperLinkButton

HyperLinkButton 타입이에요.

WebForum

WebForum 타입이에요.

PDFView

PDFView 타입이에요.

YouTube2D

YouTube2D 타입이에요.

-- 샘플 --

local widgetList = Game:FindWidgets(Workspace, Enum.UIWidgetType.Text)

for i = 1, #widgetList do --리스트앞에 #을 붙여 리스트의 길이를 가져올 수 있어요.
    print(widgetList[i].Name)
end

Last updated

Was this helpful?