Rasterizer:getGlyphData

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

MouseJoint:setFrequency

MouseJoint:setFrequency Available since LÖVE 0.8.0 This method is not supported in earlier versions. Sets a new frequency. Function Synopsis MouseJoint:setFrequency( freq ) Arguments number freq The new frequency in hertz. Returns Nothing. See Also MouseJoint MouseJoint:getFrequency

World:rayCast

World:rayCast Available since LÖVE 0.8.0 This method is not supported in earlier versions. Casts a ray and calls a function for each fixtures it intersects. Function Synopsis World:rayCast( x1, y1, x2, y2, callback ) Arguments number x1 The x position of the starting point of the ray. number y1 The y position of the starting point of the ray. number x2 The x position of the end point of the ray. number y2 The y position of the end point of the ray. function callback A function called

Source:getRolloff

Source:getRolloff Available since LÖVE 0.8.0 This function is not supported in earlier versions. Returns the rolloff factor of the source. Function Synopsis rolloff = Source:getRolloff( ) Arguments None. Returns number rolloff The rolloff factor. See Also Source

Text:clear

Text:clear Available since LÖVE 0.10.0 This function is not supported in earlier versions. Clears the contents of the Text object. Function Synopsis Text:clear( ) Arguments None. Returns Nothing. See Also Text

Body:resetMassData

Body:resetMassData Available since LÖVE 0.8.0 This method is not supported in earlier versions. Resets the mass of the body by recalculating it from the mass properties of the fixtures. Function Synopsis Body:resetMassData( ) Arguments None. Returns Nothing. See Also Body

Body:getMass

Body:getMass Get the mass of the body. Static bodies always have a mass of 0. Function Synopsis mass = Body:getMass( ) Arguments None. Returns number mass The mass of the body (in kilograms). See Also Body

ParticleSystem:setDirection

ParticleSystem:setDirection Sets the direction the particles will be emitted in. Function Synopsis ParticleSystem:setDirection( direction ) Arguments number direction The direction of the particles (in radians). Returns Nothing. See Also ParticleSystem

PulleyJoint:getConstant

PulleyJoint:getConstant Get the total length of the rope. Function Synopsis length = PulleyJoint:getConstant( ) Arguments None. Returns number length The length of the rope in the joint. See Also PulleyJoint

love.graphics.setStencilTest

love.graphics.setStencilTest Available since LÖVE 0.10.0 Together with love.graphics.stencil, it has replaced love.graphics.setStencil. Configures or disables stencil testing. When stencil testing is enabled, the geometry of everything that is drawn afterward will be clipped / stencilled out based on a comparison between the arguments of this function and the stencil value of each pixel that the geometry touches. The stencil values of pixels are affected via love.graphics.stencil. Each Ca