Difference between revisions of "love.audio.stop"

(Consistency edit for this article; to match up w/ l.a.play and l.a.pause.)
m
 
Line 12: Line 12:
  
 
== Function ==
 
== Function ==
{{oldin|[[11.0]]|110|type=variant}}
+
{{newin|[[11.0]]|110|type=variant}}
This function will only stop the specified [[Source|source]].
+
Stops one or multiple [[Source]]s simultaneously.
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
love.audio.stop( source )
+
love.audio.stop( source, ... )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|Source|source|The [[Source|source]] on which to stop the playback.}}
+
{{param|Source|source|The first Source to stop.}}
 +
{{param|Source|...|Additional Sources to stop.}}
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.
Line 25: Line 26:
 
== Function ==
 
== Function ==
 
{{newin|[[11.0]]|110|type=variant}}
 
{{newin|[[11.0]]|110|type=variant}}
Stops one or multiple [[Source]]s simultaneously.
+
Stops a list of [[Source]]s simultaneously.
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
love.audio.stop( source, ... )
+
love.audio.stop( sources )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|Source|source|The first Source to stop.}}
+
{{param|table|sources|A table containing a list of Sources to stop.}}
{{param|Source|...|Additional Sources to stop.}}
 
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.
  
 
== Function ==
 
== Function ==
{{newin|[[11.0]]|110|type=variant}}
+
{{oldin|[[11.0]]|110|type=variant}}
Stops a list of [[Source]]s simultaneously.
+
This function will only stop the specified [[Source|source]].
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
love.audio.stop( sources )
+
love.audio.stop( source )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|table|sources|A table containing a list of Sources to stop.}}
+
{{param|Source|source|The [[Source|source]] on which to stop the playback.}}
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.

Latest revision as of 20:04, 7 April 2024

Stops specific or all currently played sources.

Function

This function will stop all currently active sources.

Synopsis

love.audio.stop( )

Arguments

None.

Returns

Nothing.

Function

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

Stops one or multiple Sources simultaneously.

Synopsis

love.audio.stop( source, ... )

Arguments

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

Returns

Nothing.

Function

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

Stops a list of Sources simultaneously.

Synopsis

love.audio.stop( sources )

Arguments

table sources
A table containing a list of Sources to stop.

Returns

Nothing.

Function

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

This function will only stop the specified source.

Synopsis

love.audio.stop( source )

Arguments

Source source
The source on which to stop the playback.

Returns

Nothing.

See Also


Other Languages