Difference between revisions of "love.audio.play"

(Consistency edit for this article; singular variant changes updated with corrected variants and their version history.)
m (Function: minor phrasing edit)
Line 40: Line 40:
 
== Function ==
 
== Function ==
 
{{newin|[[11.0]]|110|type=variant}}
 
{{newin|[[11.0]]|110|type=variant}}
Starts playing one or multiple Sources simultaneously.
+
Starts playing a list of Sources simultaneously.
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">

Revision as of 14:58, 13 February 2022

Plays specific Sources.

Function

Removed in LÖVE 0.9.1
This variant is not supported in that and later versions.

Plays the specified Source.

Synopsis

love.audio.play( source )

Arguments

Source source
The Source to play.

Returns

Nothing.

Function

Available since LÖVE 0.9.1 and removed in LÖVE 11.0
This variant is not supported in earlier or later versions.

Plays the specified Source.

Synopsis

love.audio.play( source )

Arguments

Source source
The Source to play.

Returns

boolean success
Whether the Sources were able to successfully start playing.

Function

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

Starts playing one or multiple Sources simultaneously.

Synopsis

love.audio.play( source, ... )

Arguments

Source source
The first Source to play.
Source ...
Additional Sources to play.

Returns

boolean success
Whether the Sources were able to successfully start playing.

Function

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

Starts playing a list of Sources simultaneously.

Synopsis

love.audio.play( sources )

Arguments

table sources
Table containing a list of Sources to play.

Returns

boolean success
Whether the Sources were able to successfully start playing.

See Also


Other Languages