ParticleSystem:getSpeed

ParticleSystem:getSpeed Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the speed of the particles. Function Synopsis min, max = ParticleSystem:getSpeed( ) Arguments Nothing. Returns number min The minimum linear speed of the particles. number max The maximum linear speed of the particles. See Also ParticleSystem ParticleSystem:setSpeed

ParticleSystem:getRotation

ParticleSystem:getRotation Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the rotation of the image upon particle creation (in radians). Function Synopsis min, max = ParticleSystem:getRotation( ) Arguments Nothing. Returns number min The minimum initial angle (radians). number max The maximum initial angle (radians). See Also ParticleSystem ParticleSystem:setRotation

ParticleSystem:getRadialAcceleration

ParticleSystem:getRadialAcceleration Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the radial acceleration (away from the emitter). Function Synopsis min, max = ParticleSystem:getRadialAcceleration( ) Arguments Nothing. Returns number min The minimum acceleration. number max The maximum acceleration. See Also ParticleSystem ParticleSystem:setRadialAcceleration

ParticleSystem:getParticleLifetime

ParticleSystem:getParticleLifetime Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the lifetime of the particles. Function Synopsis min, max = ParticleSystem:getParticleLifetime( ) Arguments Nothing. Returns number min The minimum life of the particles (in seconds). number max The maximum life of the particles (in seconds). See Also ParticleSystem ParticleSystem:setParticleLifetime

ParticleSystem:getPosition

ParticleSystem:getPosition Gets the position of the emitter. Function Synopsis x, y = ParticleSystem:getPosition( ) Arguments None. Returns number x Position along x-axis. number y Position along y-axis. See Also ParticleSystem

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

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