This is what I've got.
if (particleShape2.particleId <= (frame/2))
{
particleShape2.dynamicsWeight = 0;
}
else
{
particleShape2.dynamicsWeight = 1;
}
I also tried making a new expression ("dynPP"), but I couldn't figure out how to assign it to individual particles.
Any thoughts?
