love.graphics.isActive

Available since LÖVE 0.10.0
This function is not supported in earlier versions.

Gets whether the graphics module is able to be used. If it is not active, love.graphics function and method calls will not work correctly and may cause the program to crash.

The graphics module is inactive if a window is not open, or if the app is in the background on iOS. Typically the app's execution will be automatically paused by the system, in the latter case.

Function

Synopsis

active = love.graphics.isActive( )

Arguments

None.

Returns

boolean active
Whether the graphics module is active and able to be used.

See Also


Other Languages