Mesh:getDrawMode

Mesh:getDrawMode Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the mode used when drawing the Mesh. Function Synopsis mode = Mesh:getDrawMode( ) Arguments None. Returns MeshDrawMode mode The mode used when drawing the Mesh. See Also Mesh love.graphics.newMesh

love.keyboard.hasTextInput

love.keyboard.hasTextInput Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets whether text input events are enabled. Function Synopsis enabled = love.keyboard.hasTextInput( ) Arguments None. Returns boolean enabled Whether text input events are enabled. See Also love.keyboard love.keyboard.setTextInput love.textinput

love.graphics.newQuad

love.graphics.newQuad Creates a new Quad. This function can be slow if it is called repeatedly, such as from love.update or love.draw. If you need to use a specific resource often, create it once and store it somewhere it can be reused! Function Synopsis quad = love.graphics.newQuad( x, y, width, height, sw, sh ) Arguments number x The top-left position in the Image along the x-axis. number y The top-left position in the Image along the y-axis. number width The width of the Quad in the Ima

WeldJoint:getFrequency

WeldJoint:getFrequency Available since LÖVE 0.8.0 This method is not supported in earlier versions. Returns the frequency. Function Synopsis freq = WeldJoint:getFrequency( ) Arguments None. Returns number freq The frequency in hertz. See Also WeldJoint WeldJoint:setFrequency

ParticleSystem:getTangentialAcceleration

ParticleSystem:getTangentialAcceleration Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the tangential acceleration (acceleration perpendicular to the particle's direction). Function Synopsis min, max = ParticleSystem:getTangentialAcceleration( ) Arguments Nothing. Returns number min The minimum acceleration. number max The maximum acceleration. See Also ParticleSystem ParticleSystem:setTangentialAcceleration

Video:tell

Video:tell Available since LÖVE 0.10.0 This function is not supported in earlier versions. Gets the current playback position of the Video. Function Synopsis seconds = Video:tell( ) Arguments None. Returns number seconds The time in seconds since the beginning of the Video. See Also Video Video:rewind Video:seek

Thread:start

Thread:start Available since LÖVE 0.7.0 This function is not supported in earlier versions. Starts the thread. Beginning with version 0.9.0, threads can be restarted after they have completed their execution. Function Synopsis Thread:start( ) Arguments None. Returns Nothing. Function Available since LÖVE 0.9.0 This variant is not supported in earlier versions. Synopsis Thread:start( arg1, arg2, ... ) Arguments Variant arg1 A string, number, boolean, LÖVE object, or simple table. Va

love.keyboard.getScancodeFromKey

love.keyboard.getScancodeFromKey Available since LÖVE 0.9.2 This function is not supported in earlier versions. Gets the hardware scancode corresponding to the given key. Unlike key constants, Scancodes are keyboard layout-independent. For example the scancode "w" will be generated if the key in the same place as the "w" key on an American keyboard is pressed, no matter what the key is labelled or what the user's operating system settings are. Scancodes are useful for creating default con

Body:getWorld

Body:getWorld Available since LÖVE 0.9.2 This method is not supported in earlier versions. Gets the World the body lives in. Function Synopsis world = Body:getWorld( ) Arguments None. Returns World world The world the body lives in. See Also Body World

PrismaticJoint:setUpperLimit

PrismaticJoint:setUpperLimit Sets the upper limit. Function Synopsis PrismaticJoint:setUpperLimit( upper ) Arguments number upper The upper limit, usually in meters. Returns Nothing. See Also PrismaticJoint