love.audio.stop

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

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.

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.

See Also


Other Languages