ParticleSystem:getDirection

ParticleSystem:getDirection Gets the direction of the particle emitter (in radians). Function Synopsis direction = ParticleSystem:getDirection( ) Arguments None. Returns number direction The direction of the emitter (radians). See Also ParticleSystem

ParticleSystem:getEmissionRate

ParticleSystem:getEmissionRate Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the amount of particles emitted per second. Function Synopsis rate = ParticleSystem:getEmissionRate( ) Arguments Nothing. Returns number rate The amount of particles per second. See Also ParticleSystem ParticleSystem:setEmissionRate

ParticleSystem:getEmitterLifetime

ParticleSystem:getEmitterLifetime Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets how long the particle system will emit particles (if -1 then it emits particles forever). Function Synopsis life = ParticleSystem:getEmitterLifetime( ) Arguments Nothing. Returns number life The lifetime of the emitter (in seconds). See Also ParticleSystem ParticleSystem:setEmitterLifetime

ParticleSystem:getImage

ParticleSystem:getImage Available since LÖVE 0.9.0 This function is not supported in earlier versions. Removed in LÖVE 0.10.0 Use ParticleSystem:getTexture instead. Gets the image used for the particles. Function Synopsis image = ParticleSystem:getImage( ) Arguments Nothing. Returns Image image An Image to use for the particles. See Also ParticleSystem ParticleSystem:setImage

ParticleSystem:getInsertMode

ParticleSystem:getInsertMode Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the mode used when the ParticleSystem adds new particles. Function Synopsis mode = ParticleSystem:getInsertMode( ) Arguments None. Returns ParticleInsertMode mode The mode used when the ParticleSystem adds new particles. See Also ParticleSystem ParticleSystem:setInsertMode

ParticleSystem:getLinearAcceleration

ParticleSystem:getLinearAcceleration Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the linear acceleration (acceleration along the x and y axes) for particles. Every particle created will accelerate along the x and y axes between xmin,ymin and xmax,ymax. Function Synopsis xmin, ymin, xmax, ymax = ParticleSystem:getLinearAcceleration( ) Arguments Nothing. Returns number xmin The minimum acceleration along the x axis. number ymin The minimum accelera

ParticleSystem:getLinearDamping

ParticleSystem:getLinearDamping Available since LÖVE 0.9.2 This function is not supported in earlier versions. Gets the amount of linear damping (constant deceleration) for particles. Function Synopsis min, max = ParticleSystem:getLinearDamping( ) Arguments None. Returns number min The minimum amount of linear damping applied to particles. number max The maximum amount of linear damping applied to particles. See Also ParticleSystem ParticleSystem:setLinearDamping

ParticleSystem:getOffset

ParticleSystem:getOffset Available since LÖVE 0.9.0 It has been moved from ParticleSystem:getOffsetX and ParticleSystem:getOffsetY. Gets the particle image's draw offset. Function Synopsis ox, oy = ParticleSystem:getOffset( ) Arguments None. Returns number ox The x coordinate of the particle image's draw offset. number oy The y coordinate of the particle image's draw offset. See Also ParticleSystem ParticleSystem:setOffset

ParticleSystem:getOffsetX

ParticleSystem:getOffsetX Removed in LÖVE 0.9.0 It has been moved to ParticleSystem:getOffset. Get the x coordinate of the particle rotation offset. Function Synopsis xOffset = ParticleSystem:getOffsetX( ) Arguments None. Returns number xOffset The x coordinate of the rotation offset. See Also ParticleSystem ParticleSystem:getOffsetY ParticleSystem:setOffset

ParticleSystem:getOffsetY

ParticleSystem:getOffsetY Removed in LÖVE 0.9.0 It has been moved to ParticleSystem:getOffset. Get the y coordinate of the particle rotation offset. Function Synopsis yOffset = ParticleSystem:getOffsetY( ) Arguments None. Returns number yOffset The y coordinate of the rotation offset. See Also ParticleSystem ParticleSystem:getOffsetX ParticleSystem:setOffset