인터페이스 스크립팅
image = Image("Pictures/test.jpg", Rect(10, 10, 100, 100))
-- 이미지 변경
-- ex1
image.image = "Icons/01.png"
--ex2
image.SetImage("Icons/05.png")button = Button("안늉", Rect(200, 200, 100, 100))
button.onClick.Add(function()
Client.ShowAlert("방가워")
end)panel = Panel()
panel.rect = Rect(300, 200, 50, 50)
text = Text("야호", Rect(0, 0, 40, 20))
panel.AddChild(text)Last updated