Particle

PFLOW

  • Pflow Baker : A must have when working with pflow. Solves many issue and bug Make sure to turn off autoback as I have had crashing issues - DOWNLOAD PAGE -
  • Distance between objects : This Script Test measure’s the distance from two objects and then passes them on - DOWNLOAD SCRIPT-

Every Day Scripts

– Simple Scripts
– “Delete particle if its z is smaller then 0″
– www.MIkeOakley.com

on ChannelsUsed pCont do
(
pCont.useTime = true
pCont.usePosition = true
)

on Init pCont do
(

)

on Proceed pCont do
(
count = pCont.NumParticles()
for i in 1 to count do
(
pCont.particleIndex = i
if pCont.particlePosition.z < -1 then
(
pcont.deleteParticle i
)
)
)

on Release pCont do
(

)