Difference between revisions of "love.mouse.hasCursor"

(Fix return value accidentally placed as argument)
(Added deprecation notice)
Line 1: Line 1:
 
{{newin|[[0.10.0]]|100|type=function}}
 
{{newin|[[0.10.0]]|100|type=function}}
 +
{{deprecatedin|[[0.11.0]]|110|type=function|text=This function has been renamed to [[love.mouse.isCursorSupported]]}}
 
Gets whether cursor functionality is supported.
 
Gets whether cursor functionality is supported.
  

Revision as of 04:22, 1 April 2018

Available since LÖVE 0.10.0
This function is not supported in earlier versions.
Deprecated in LÖVE 0.11.0
This function has been renamed to love.mouse.isCursorSupported.

Gets whether cursor functionality is supported.

If it isn't supported, calling love.mouse.newCursor and love.mouse.getSystemCursor will cause an error. Mobile devices do not support cursors.

Function

Synopsis

hascursor = love.mouse.hasCursor( )

Arguments

None.

Returns

boolean hascursor
Whether the system has cursor functionality.

See Also

Other Languages