Particle
Random Particle Color
A small box#3 data preset to randomly change your particle color at random times

More Info HERE
Birth Script Interval
A quick simple way to set the rate and interval of Particle Flow birth script.
on ChannelsUsed pCont do
(
pCont.useTime = true
)
on Init pCont do
(
)
on Proceed pCont do
(
t2 = pCont.getTimeEnd()
rate = 100 -- rate of emission
if (t2 < 20) do -- emit from 0 to 20
(
for i = 1 to rate do
(
pCont.AddParticle()
)
)
if (t2 > 40) and (t2 < 50) do -- emit from 40 to 50
(
for i = 1 to rate do
(
pCont.AddParticle()
)
)
if (t2 > 60) and (t2 < 70) do -- emit from 60 to 70
(
for i = 1 to rate do
(
pCont.AddParticle()
)
)
if (t2 > 90) and (t2 < 100) do -- emit from 90 to 100
(
for i = 1 to rate do
(
pCont.AddParticle()
)
)
)
on Release pCont do
(
)

