ParticleSystem:getSizes

ParticleSystem:getSizes Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the series of sizes by which the sprite is scaled. 1.0 is normal size. The particle system will interpolate between each size evenly over the particle's lifetime. Function Synopsis size1, size1, ..., size8 = ParticleSystem:getSizes( ) Arguments Nothing. Returns number size1 The first size. number size2 The second size. number size8 The eighth size. See Also ParticleSystem Pa

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