Difference between revisions of "love.graphics.isActive"

(Created page)
 
m
 
Line 2: Line 2:
 
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.
 
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.
+
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 ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===

Latest revision as of 04:24, 24 September 2015

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