ParticleSystem:getSpread

ParticleSystem:getSpread Gets the amount of directional spread of the particle emitter (in radians). Function Synopsis spread = ParticleSystem:getSpread( ) Arguments None. Returns number spread The spread of the emitter (radians). See Also ParticleSystem

(Image):getWidth

(Image):getWidth Gets the width of the Image. Function Synopsis width = Image:getWidth( ) Arguments None. Returns number width The width of the Image, in pixels. See Also Image

love.graphics.isCreated

love.graphics.isCreated Removed in LÖVE 0.9.0 Moved to the love.window module as love.window.isCreated. Checks if the window has been created. Function Synopsis created = love.graphics.isCreated( ) Arguments None. Returns boolean created True if the window has been created, false otherwise. See Also love.graphics

World:isLocked

World:isLocked Available since LÖVE 0.8.0 This method is not supported in earlier versions. Returns if the world is updating its state. This will return true inside the callbacks from World:setCallbacks. Function Synopsis locked = World:isLocked( ) Arguments None. Returns boolean locked Will be true if the world is in the process of updating its state. See Also World

enet.linked version

enet.linked version Returns the included ENet's version as a string. Function Synopsis version = enet.linked_version() Arguments None. Returns string version ENet's version. See Also lua-enet

love.math.linearToGamma

love.math.linearToGamma Available since LÖVE 0.9.1 This function is not supported in earlier versions. Converts a color from linear-space (RGB) to gamma-space (sRGB). This is useful when storing linear RGB color values in an image, because the linear RGB color space has less precision than sRGB for dark colors, which can result in noticeable color banding when drawing. In general, colors chosen based on what they look like on-screen are already in gamma-space and should not be double-conve

Fixture:getBody

Fixture:getBody Available since LÖVE 0.8.0 This method is not supported in earlier versions. Returns the body to which the fixture is attached. Function Synopsis body = Fixture:getBody( ) Arguments None. Returns Body body The parent body. See Also Fixture

Data:getSize

Data:getSize Gets the Data's size in bytes. Function Synopsis size = Data:getSize( ) Arguments None. Returns number size The size of the Data in bytes. See Also Data

RevoluteJoint:getMotorTorque

RevoluteJoint:getMotorTorque Get the current motor force. Function Synopsis f = RevoluteJoint:getMotorTorque( ) Arguments None. Returns number f The current motor force, in Nm. See Also RevoluteJoint

Video:pause

Video:pause Available since LÖVE 0.10.0 This function is not supported in earlier versions. Pauses the Video. Function Synopsis Video:pause( ) Arguments None. Returns Nothing. See Also Video Video:play Video:isPlaying