Difference between revisions of "love.audio.getActiveEffects"

(Created page with "{{newin|11.0|110|type=function}} Gets a list of the names of the currently enabled effects. == Function == === Synopsis === <source lang="lua"> effects = love.audio.getA...")
 
m
 
(One intermediate revision by one other user not shown)
Line 3: Line 3:
  
 
== Function ==
 
== Function ==
 
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
 
effects = love.audio.getActiveEffects()
 
effects = love.audio.getActiveEffects()
 
</source>
 
</source>
 
+
=== Arguments ===
 +
None.
 
=== Returns ===
 
=== Returns ===
 
{{param|table|effects|The list of the names of the currently enabled effects.}}
 
{{param|table|effects|The list of the names of the currently enabled effects.}}
Line 18: Line 18:
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Gets a list of the names of the currently enabled effects.}}
 
{{#set:Description=Gets a list of the names of the currently enabled effects.}}
 +
 +
== Other Languages ==
 +
{{i18n|love.audio.getActiveEffects}}

Latest revision as of 16:04, 10 November 2019

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

Gets a list of the names of the currently enabled effects.

Function

Synopsis

effects = love.audio.getActiveEffects()

Arguments

None.

Returns

table effects
The list of the names of the currently enabled effects.

See Also


Other Languages