/ Published in: Maxscript
Place this into a plow birthscript
Remember to replace "object03" with the distributor object
Remember to replace "object03" with the distributor object
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
on ChannelsUsed pCont do ( pCont.usePosition = true ) on Init pCont do ( global obj=$'Object03' --object with selected verts ) on Proceed pCont do ( t1 = pCont.getTimeStart() as float if (t1<0 ) then ( for i in obj.Verts do ( pCont.AddParticle() pCont.particleIndex = pCont.NumParticles() -- last particle that was added pCont.particlePosition = i.pos ) ) ) on Release pCont do ( )