Files
Basalt/docs/objects/Pane.md
Robert Jelic 4d614372a1 Updated docs
There is still stuff to do
2022-08-28 18:18:26 +02:00

444 B

With panes you are able to create background without any functionality

Because panes don't have any unique functionality, there is also no method list for them.

Object methods also apply for panes.

Example:

local mainFrame = basalt.createFrame()
local aPane = mainFrame:addPane()
aPane:setSize(30, 10)
aPane:setBackground(colors.yellow)
aPane:show()
<pane width="30" height="10" bg="yellow" />