Shape:rayCast

Shape:rayCast Available since LÖVE 0.8.0 This function is not supported in earlier versions. Casts a ray against the shape and returns the surface normal vector and the line position where the ray hit. If the ray missed the shape, nil will be returned. The Shape can be transformed to get it into the desired position. The ray starts on the first point of the input line and goes towards the second point of the line. The fourth argument is the maximum distance the ray is going to travel as a

Rasterizer:getAdvance

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

love.window.minimize

love.window.minimize Available since LÖVE 0.9.2 This function is not supported in earlier versions. Minimizes the window to the system's task bar / dock. Function Synopsis love.window.minimize( ) Arguments None. Returns Nothing. See Also love.window

love.audio.setVolume

love.audio.setVolume Sets the master volume. Function Synopsis love.audio.setVolume( volume ) Arguments number volume 1.0 is max and 0.0 is off. Returns Nothing. See Also love.audio

PulleyJoint:getLengthB

PulleyJoint:getLengthB Available since LÖVE 0.8.0 This method is not supported in earlier versions. Get the current length of the rope segment attached to the second body. Function Synopsis length = PulleyJoint:getLengthB( ) Arguments None. Returns number length The length of the rope segment. See Also PulleyJoint

FrictionJoint:getMaxTorque

FrictionJoint:getMaxTorque Available since LÖVE 0.8.0 This function is not supported in earlier versions. Gets the maximum friction torque in Newton-meters. Function Synopsis torque = FrictionJoint:getMaxTorque( ) Arguments None. Returns number torque Maximum torque in Newton-meters. See Also FrictionJoint FrictionJoint:setMaxTorque

Rasterizer:hasGlyphs

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

love.filesystem.getIdentity

love.filesystem.getIdentity Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the write directory name for your game. Note that this only returns the name of the folder to store your files in, not the full path. Function Synopsis name = love.filesystem.getIdentity( ) Arguments None. Returns string name The identity that is used as write directory. See Also love.filesystem love.filesystem.setIdentity

World:getCallbacks

World:getCallbacks Returns functions for the callbacks during the world update. Function Available since LÖVE 0.8.0 This variant is not supported in earlier versions. Synopsis beginContact, endContact, preSolve, postSolve = World:getCallbacks( ) Arguments None. Returns function beginContact Gets called when two fixtures begin to overlap. function endContact Gets called when two fixtures cease to overlap. function preSolve Gets called before a collision gets resolved. function postSolve

(File):getSize

(File):getSize Returns the file size. Function Synopsis size = File:getSize( ) Arguments None. Returns number size The file size. See Also File