Fixture:setGroupIndex

Fixture:setGroupIndex Available since LÖVE 0.8.0 This method is not supported in earlier versions. Sets the group the fixture belongs to. Fixtures with the same group will always collide if the group is positive or never collide if it's negative. The group zero means no group. The groups range from -32768 to 32767. Function Synopsis Fixture:setGroupIndex( group ) Arguments number group The group as an integer from -32768 to 32767. Returns Nothing. See Also Fixture Fixture:getGroupI

ParticleSystem:getOffsetY

ParticleSystem:getOffsetY Removed in LÖVE 0.9.0 It has been moved to ParticleSystem:getOffset. Get the y coordinate of the particle rotation offset. Function Synopsis yOffset = ParticleSystem:getOffsetY( ) Arguments None. Returns number yOffset The y coordinate of the rotation offset. See Also ParticleSystem ParticleSystem:getOffsetX ParticleSystem:setOffset

WeldJoint:getDampingRatio

WeldJoint:getDampingRatio Available since LÖVE 0.8.0 This method is not supported in earlier versions. Returns the damping ratio of the joint. Function Synopsis ratio = WeldJoint:getDampingRatio( ) Arguments None. Returns number ratio The damping ratio. See Also WeldJoint WeldJoint:setDampingRatio

Video:getStream

Video:getStream Available since LÖVE 0.10.0 This function is not supported in earlier versions. Gets the VideoStream object used for decoding and controlling the video. Function Synopsis stream = Video:getStream( ) Arguments None. Returns VideoStream stream The VideoStream used for decoding and controlling the video. See Also Video VideoStream

ParticleSystem:getRadialAcceleration

ParticleSystem:getRadialAcceleration Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the radial acceleration (away from the emitter). Function Synopsis min, max = ParticleSystem:getRadialAcceleration( ) Arguments Nothing. Returns number min The minimum acceleration. number max The maximum acceleration. See Also ParticleSystem ParticleSystem:setRadialAcceleration

love.getVersion

love.getVersion Available since LÖVE 0.9.1 This function is not supported in earlier versions. Gets the current running version of LÖVE. Function Synopsis major, minor, revision, codename = love.getVersion( ) Arguments None. Returns number major The major version of LÖVE, i.e. 0 for version 0.9.1. number minor The minor version of LÖVE, i.e. 9 for version 0.9.1. number revision The revision version of LÖVE, i.e. 1 for version 0.9.1. string codename The codename of the current version,

love.touch.getPressure

love.touch.getPressure Available since LÖVE 0.10.0 This function is not supported in earlier versions. Gets the current pressure of the specified touch-press. Function Synopsis pressure = love.touch.getPressure( id ) Arguments light userdata id The identifier of the touch-press. Use love.touch.getTouches, love.touchpressed, or love.touchmoved to obtain touch id values. Returns number pressure The pressure of the touch-press. Most touch screens aren't pressure sensitive, in which case t

PixelEffect:getWarnings

PixelEffect:getWarnings Available since LÖVE 0.8.0 This function is not supported in earlier versions. Returns any warning messages from compiling the pixel effect code. This can be used for debugging your pixel effects if there's anything the graphics hardware doesn't like. Function Synopsis warnings = PixelEffect:getWarnings( ) Arguments None. Returns string warnings Warning messages (if any). See Also PixelEffect

Video:getSource

Video:getSource Available since LÖVE 0.10.0 This function is not supported in earlier versions. Gets the audio Source used for playing back the video's audio. May return nil if the video has no audio, or if Video:setSource is called with a nil argument. Function Synopsis source = Video:getSource( ) Arguments None. Returns Source source The audio Source used for audio playback, or nil if the video has no audio. See Also Video Video:setSource Source

love.audio.stop

love.audio.stop Stops currently played sources. Function This function will stop all currently active sources. Synopsis love.audio.stop( ) Arguments None. Returns Nothing. Function 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 love.audio