PrismaticJoint:getAxis

PrismaticJoint:getAxis Available since LÖVE 0.10.2 This function is not supported in earlier versions. Gets the world-space axis vector of the Prismatic Joint. Function Synopsis x, y = PrismaticJoint:getAxis( ) Arguments None. Returns number x The x-axis coordinate of the world-space axis vector. number y The y-axis coordinate of the world-space axis vector. See Also PrismaticJoint love.physics.newPrismaticJoint

Body:setAwake

Body:setAwake Available since LÖVE 0.8.0 This method is not supported in earlier versions. Wakes the body up or puts it to sleep. Function Synopsis Body:setAwake( awake ) Arguments boolean awake The body sleep status. Returns Nothing. See Also Body Body:isAwake

DistanceJoint:getDamping

DistanceJoint:getDamping Removed in LÖVE 0.8.0 It has been replaced with DistanceJoint:getDampingRatio. Gets the damping ratio. Function Synopsis ratio = DistanceJoint:getDamping( ) Arguments None. Returns number ratio The damping ratio. See Also DistanceJoint

love.graphics.getLineJoin

love.graphics.getLineJoin Gets the line join style. Function Synopsis join = love.graphics.getLineJoin( ) Arguments Nothing. Returns LineJoin join The LineJoin style. See Also love.graphics love.graphics.setLineJoin

CompressedData:getFormat

CompressedData:getFormat Available since LÖVE 0.10.0 This function is not supported in earlier versions. Gets the compression format of the CompressedData. Function Synopsis format = CompressedData:getFormat( ) Arguments None. Returns CompressedDataFormat format The format of the CompressedData. See Also CompressedData

RevoluteJoint:enableLimits

RevoluteJoint:enableLimits Available since LÖVE 0.8.0 This method is not supported in earlier versions. Removed in LÖVE 0.9.0 It has been renamed to RevoluteJoint:setLimitsEnabled. Enables or disables the joint limits. Function Synopsis RevoluteJoint:enableLimit( enable ) Arguments boolean enable True to enable, false to disable. Returns Nothing. See Also RevoluteJoint RevoluteJoint:isLimitsEnabled RevoluteJoint:setLimits

love.audio.getSourceCount

love.audio.getSourceCount Available since LÖVE 0.9.0 It has been renamed from love.audio.getNumSources. Gets the current number of simultaneously playing sources. Function Synopsis numSources = love.audio.getSourceCount( ) Arguments None. Returns number numSources The current number of simultaneously playing sources. See Also love.audio

Rasterizer:getDescent

Rasterizer:getDescent Available since LÖVE 0.7.0 This function is not supported in earlier versions. TODO See Also Rasterizer

MouseJoint:getDampingRatio

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

Mesh:setVertexColors

Mesh:setVertexColors Available since LÖVE 0.9.0 and removed in LÖVE 0.10.0 It has been replaced by Mesh:setAttributeEnabled("VertexColor", enable). Sets whether per-vertex colors are used instead of the constant color when drawing the Mesh (constant color being love.graphics.setColor.) Per-vertex colors are enabled by default for a Mesh if at least one vertex color was not the default (255, 255, 255, 255) when the Mesh was created. Function Synopsis Mesh:setVertexColors( on ) Arguments bo