Source:pause

Source:pause Available since LÖVE 0.7.0 This function is not supported in earlier versions. Pauses the Source. Function Synopsis Source:pause() Arguments None. Returns Nothing. See Also Source

Source:isStopped

Source:isStopped 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 Source

Source:isStatic

Source:isStatic Available since LÖVE 0.7.0 and removed in LÖVE 0.10.0 It has been replaced by Source:getType. Returns whether the Source is static. Function Synopsis static = Source:isStatic( ) Arguments None. Returns boolean static True if the Source is static, false otherwise. See Also Source SourceType

Source:isRelative

Source:isRelative Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets whether the Source's position, velocity, direction, and cone angles are relative to the listener. Function Synopsis relative = Source:isRelative( ) Arguments None. Returns boolean relative True if the position, velocity, direction and cone angles are relative to the listener, false if they're absolute. See Also Source Source:setRelative

Source:isPlaying

Source:isPlaying Available since LÖVE 0.9.0 This function is not supported in earlier versions. Returns whether the Source is playing. Function Synopsis playing = Source:isPlaying( ) Arguments None. Returns boolean playing True if the Source is playing, false otherwise. See Also Source

Source:isPaused

Source:isPaused Returns whether the Source is paused. Function Synopsis paused = Source:isPaused( ) Arguments None. Returns boolean paused True if the Source is paused, false otherwise. See Also Source

Source:isLooping

Source:isLooping Returns whether the Source will loop. Function Synopsis loop = Source:isLooping( ) Arguments None. Returns boolean loop True if the Source will loop, false otherwise. See Also Source

Source:getVolumeLimits

Source:getVolumeLimits Available since LÖVE 0.8.0 This function is not supported in earlier versions. Returns the volume limits of the source. Function Synopsis min, max = Source:getVolumeLimits( ) Arguments None. Returns number min The minimum volume. number max The maximum volume. See Also Source

Source:getVolume

Source:getVolume Gets the current volume of the Source. Function Synopsis volume = Source:getVolume( ) Arguments None. Returns number volume The volume of the Source, where 1.0 is normal volume. See Also Source

Source:getVelocity

Source:getVelocity Available since LÖVE 0.7.0 This function is not supported in earlier versions. Gets the velocity of the Source. Function Synopsis x, y, z = Source:getVelocity( ) Arguments None. Returns number x The X part of the velocity vector. number y The Y part of the velocity vector. number z The Z part of the velocity vector. See Also Source Source:setVelocity