Difference between revisions of "love.audio.setMixWithSystem"

(Created page with "{{newin|11.0|110|type=function}} Sets whether the system should mix the audio with the system's audio. == Function == === Synopsis === <source lang="lua"> success = love....")
 
m (Added to Other Languages)
 
Line 17: Line 17:
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Sets whether the system should mix the audio with the system's audio.}}
 
{{#set:Description=Sets whether the system should mix the audio with the system's audio.}}
 +
 +
== Other Languages ==
 +
{{i18n|love.audio.setMixWithSystem}}

Latest revision as of 09:31, 3 June 2019

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

Sets whether the system should mix the audio with the system's audio.

Function

Synopsis

success = love.audio.setMixWithSystem( mix )

Arguments

boolean mix
True to enable mixing, false to disable it.

Returns

boolean success
True if the change succeeded, false otherwise.

See Also


Other Languages