Difference between revisions of "ParticleSystem:setSizes"

m (Reworded description)
m
Line 1: Line 1:
{{newin|[[0.8.0]]|080|type=function}}
+
{{newin|[[0.8.0]]|080|type=function|text=It has replaced [[ParticleSystem:setSize]]}}
 
Sets a series of sizes by which to scale a particle sprite. 1.0 is normal size. The particle system will interpolate between each size evenly over the particle's lifetime.
 
Sets a series of sizes by which to scale a particle sprite. 1.0 is normal size. The particle system will interpolate between each size evenly over the particle's lifetime.
  
Line 18: Line 18:
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Sets the sizes of the particle over its lifetime.}}
 
{{#set:Description=Sets the sizes of the particle over its lifetime.}}
{{#set:Since=080}}
 
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|ParticleSystem:setSizes}}
 
{{i18n|ParticleSystem:setSizes}}

Revision as of 11:10, 7 February 2012

Available since LÖVE 0.8.0
It has replaced ParticleSystem:setSize.

Sets a series of sizes by which to scale a particle sprite. 1.0 is normal size. The particle system will interpolate between each size evenly over the particle's lifetime.

At least one size must be specified. A maximum of eight may be used.

Function

Synopsis

ParticleSystem:setSizes( size1, size1, ..., size8 )

Arguments

number size1
The first size.
number size2
The second size.
number size8
The eighth size.

Returns

Nothing.

See Also

Other Languages