Files
Basalt/docs/objects/Pane.md
Samuel Pizette cb98307e44 bad syntax fix
2022-06-09 11:08:26 -04:00

552 B

Panes are very simple sizeable background objects.

The following list is only available to panes:
Remember Pane also inherits from Object

Pane doesn't have any custom functionallity. If you want to change the color/position or size, just check out the object wikipage.

Example:

local mainFrame = basalt.createFrame("myFirstFrame"):show()
local aPane = mainFrame:addPane("myFirstBackground")
aPane:setSize(30, 10)
aPane:setBackground(colors.yellow)
aPane:show()