Difference between revisions of "love.audio.getMaxSourceEffects"

(Created page with "{{newin|11.0|110|type=function}} Gets the maximum number of active Effects in a single Source object, that the system can support. == Function == === Synopsis === <so...")
 
m
Line 22: Line 22:
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Gets the maximum number of active Effects for each [[Source]].}}
 
{{#set:Description=Gets the maximum number of active Effects for each [[Source]].}}
 +
 +
== Other Languages ==
 +
{{i18n|love.audio}}

Revision as of 14:35, 30 June 2019

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

Gets the maximum number of active Effects in a single Source object, that the system can support.

Function

Synopsis

maximum = love.audio.getMaxSourceEffects( )

Arguments

None.

Returns

number maximum
The maximum number of active Effects per Source.

Notes

This function return 0 for system that doesn't support audio effects.

See Also


Other Languages