Files
Basalt/docs/objects/Object/isVisible.md
Robert Jelic ab72f244ed Updated some formatting
Updated formatting for object
2022-10-20 21:05:29 +02:00

20 lines
314 B
Markdown

# Object
## isVisible
Returns if the object is currently visible
### Returns
1. `boolean`
#### Usage
* Prints boolean visibility of object to debug console
```lua
local mainFrame = basalt.createFrame()
local aButton = mainFrame:addButton():setSize(5,8)
basalt.debug(aButton:isVisible()) -- returns true
```