Difference between revisions of "Source:isStopped"

m (0.11.0 -> 11.0)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{oldin|[[11.0]]|110|type=function|text=It has been replaced by [[Source:isPlaying]]}}
 
Returns whether the Source is stopped.
 
Returns whether the Source is stopped.
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
loop = Source:isStopped( )
+
stopped = Source:isStopped( )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
{{param|boolean|loop|True if the Source is stopped, false otherwise.}}
+
{{param|boolean|stopped|True if the Source is stopped, false otherwise.}}
 
== See Also ==
 
== See Also ==
 
* [[parent::Source]]
 
* [[parent::Source]]

Latest revision as of 14:11, 22 December 2018

Removed in LÖVE 11.0
It has been replaced by Source:isPlaying.

Returns whether the Source is stopped.

Function

Synopsis

stopped = Source:isStopped( )

Arguments

None.

Returns

boolean stopped
True if the Source is stopped, false otherwise.

See Also


Other Languages