Shape:setDensity

Shape:setDensity Removed in LÖVE 0.8.0 This function is not supported in that and later versions. Sets the density of a Shape. Do this before calling Body:setMassFromShapes. Function Synopsis Shape:setDensity( density ) Arguments number density The new density of the Shape. Returns Nothing. See Also Shape

MouseJoint:getMaxForce

MouseJoint:getMaxForce Gets the highest allowed force. Function Synopsis f = MouseJoint:getMaxForce( ) Arguments None. Returns number f The max allowed force. See Also MouseJoint

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

love.audio.getOrientation

love.audio.getOrientation Returns the orientation of the listener. Function Synopsis fx, fy, fz, ux, uy, uz = love.audio.getOrientation( ) Arguments None. Returns number fx, fy, fz Forward vector of the listener orientation. number ux, uy, uz Up vector of the listener orientation. See Also love.audio

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

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

love.audio.setVelocity

love.audio.setVelocity Sets the velocity of the listener. Function Synopsis love.audio.setVelocity( x, y, z ) Arguments number x The X velocity of the listener. number y The Y velocity of the listener. number z The Z velocity of the listener. Returns Nothing. See Also love.audio

World:getJointList

World:getJointList Available since LÖVE 0.8.0 This method is not supported in earlier versions. Returns a table with all joints. Function Synopsis joints = World:getJointList( ) Arguments None. Returns table joints A sequence with all joints. See Also World

MouseJoint:setTarget

MouseJoint:setTarget Sets the target point. Function Synopsis MouseJoint:setTarget( x, y ) Arguments number x The x-component of the target. number y The y-component of the target. Returns Nothing. See Also MouseJoint

World:destroy

World:destroy Available since LÖVE 0.8.0 This method is not supported in earlier versions. Destroys the world, taking all bodies, joints, fixtures and their shapes with it. An error will occur if you attempt to use any of the destroyed objects after calling this function. Function Synopsis World:destroy( ) Arguments None. Returns Nothing. See Also World