Difference between revisions of "love.audio.isEffectsSupported"

(Created page with "{{newin|11.0|110|type=function}} Gets whether Effects are supported in the system. == Function == === Synopsis === <source lang="lua"> supported = love.audio.isEffectsSup...")
 
m (Move "Notes" to h2 instead of h3)
Line 11: Line 11:
 
=== Returns ===
 
=== Returns ===
 
{{param|boolean|supported|True if Effects are supported, false otherwise.}}
 
{{param|boolean|supported|True if Effects are supported, false otherwise.}}
=== Notes ===
+
 
 +
== Notes ==
 
Older Linux distributions that ship with older OpenAL library may not support audio effects. Furthermore, iOS doesn't
 
Older Linux distributions that ship with older OpenAL library may not support audio effects. Furthermore, iOS doesn't
 
support audio effects at all.
 
support audio effects at all.

Revision as of 11:14, 28 November 2018

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

Gets whether Effects are supported in the system.

Function

Synopsis

supported = love.audio.isEffectsSupported( )

Arguments

None

Returns

boolean supported
True if Effects are supported, false otherwise.

Notes

Older Linux distributions that ship with older OpenAL library may not support audio effects. Furthermore, iOS doesn't support audio effects at all.

See Also