Provides methods used for setting the visibility of a Game Object. Should be applied as a mixin and not used directly.
- Since: 3.0.0
- Source: src/gameobjects/components/Visible.js (Line 10)
Members
-
visible :boolean
-
The visible state of the Game Object.
An invisible Game Object will skip rendering, but will still process update logic.
Type:
- boolean
- Since: 3.0.0
- Source: src/gameobjects/components/Visible.js (Line 31)
Methods
-
setVisible(value)
-
Sets the visibility of this Game Object.
An invisible Game Object will skip rendering, but will still process update logic.
Parameters:
Name Type Description value
boolean The visible state of the Game Object.
- Since: 3.0.0
- Source: src/gameobjects/components/Visible.js (Line 63)
Returns:
This Game Object instance.