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.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

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

World:translateOrigin

World:translateOrigin Available since LÖVE 0.9.0 This function is not supported in earlier versions. Translates the World's origin. Useful in large worlds where floating point precision issues become noticeable at far distances from the origin. Function Synopsis World:translateOrigin( x, y ) Arguments number x The x component of the new origin with respect to the old origin. number y The y component of the new origin with respect to the old origin. Returns Nothing. See Also World

Data:getString

Data:getString Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the full Data as a string. Function Synopsis data = Data:getString( ) Arguments None. Returns string data The raw data. See Also Data

Contact:isTouching

Contact:isTouching Available since LÖVE 0.8.0 This function is not supported in earlier versions. Returns whether the two colliding fixtures are touching each other. Function Synopsis touching = Contact:isTouching( ) Arguments None. Returns boolean touching True if they touch or false if not. See Also Contact

love.graphics.getStencilTest

love.graphics.getStencilTest Available since LÖVE 0.10.0 This function is not supported in earlier versions. Gets the current stencil test configuration. 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 Canvas has its own per-p

love.audio.setDistanceModel

love.audio.setDistanceModel Available since LÖVE 0.8.0 This function is not supported in earlier versions. Sets the distance attenuation model. Function Synopsis love.audio.setDistanceModel( model ) Arguments DistanceModel model The new distance model. Returns Nothing. See Also love.audio

ParticleSystem:pause

ParticleSystem:pause Pauses the particle emitter. Function Synopsis ParticleSystem:pause( ) Arguments None. Returns Nothing. See Also ParticleSystem