enet.peer:disconnect later

enet.peer:disconnect later Request a disconnection from peer, but only after all queued outgoing packets are sent. Function Synopsis peer:disconnect_later(data) Arguments number data Optional integer value to be associated with the disconnect. Returns Nothing. See Also lua-enet enet.peer

ParticleSystem:isEmpty

ParticleSystem:isEmpty Removed in LÖVE 0.9.0 Use ParticleSystem:getCount and ParticleSystem:getBufferSize. Checks whether the particle system is empty of particles. Function Synopsis empty = ParticleSystem:isEmpty( ) Arguments None. Returns boolean empty True if there are no live particles, false otherwise. See Also ParticleSystem

Contact:getChildren

Contact:getChildren Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the child indices of the shapes of the two colliding fixtures. For ChainShapes, an index of 1 is the first edge in the chain. Used together with Fixture:rayCast or ChainShape:getChildEdge. Function Synopsis indexA, indexB = Contact:getChildren( ) Arguments None. Returns number indexA The child index of the first fixture's shape. number indexB The child index of the second fixture's s

World:getContactList

World:getContactList Not stable in 0.8.0. You may experience crashing. Available since LÖVE 0.8.0 This method is not supported in earlier versions. Returns a table with all contacts. Function Synopsis contacts = World:getContactList( ) Arguments None. Returns table contacts A sequence with all contacts. See Also World

love.font.newFontData

love.font.newFontData Available since LÖVE 0.7.0 and removed in LÖVE 0.8.0 This function is not supported in earlier or later versions. Creates a new FontData. Function Synopsis fontData = love.font.newFontData( rasterizer ) Arguments Rasterizer rasterizer The Rasterizer containing the font. Returns FontData fontData The FontData. See Also love.font FontData

RevoluteJoint:setLimits

RevoluteJoint:setLimits Sets the limits. Function Synopsis RevoluteJoint:setLimits( lower, upper ) Arguments number lower The lower limit, in radians. number upper The upper limit, in radians. Returns Nothing. See Also RevoluteJoint

Body:setActive

Body:setActive Available since LÖVE 0.8.0 This method is not supported in earlier versions. Sets whether the body is active in the world. An inactive body does not take part in the simulation. It will not move or cause any collisions. Function Synopsis Body:setActive( active ) Arguments boolean active If the body is active or not. Returns Nothing. See Also Body

ParticleSystem:getSpeed

ParticleSystem:getSpeed Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the speed of the particles. Function Synopsis min, max = ParticleSystem:getSpeed( ) Arguments Nothing. Returns number min The minimum linear speed of the particles. number max The maximum linear speed of the particles. See Also ParticleSystem ParticleSystem:setSpeed

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

love.math.decompress

love.math.decompress Available since LÖVE 0.10.0 This function is not supported in earlier versions. Decompresses a CompressedData or previously compressed string or Data object. Function Synopsis rawstring = love.math.decompress( compressedData ) Arguments CompressedData compressedData The compressed data to decompress. Returns string rawstring A string containing the raw decompressed data. Function Synopsis rawstring = love.math.decompress( compressedString, format ) Arguments stri