HI
I have a particle system made from a Birth Grid.
After events and forces happen I want the particles to return to their exact grid position.
The Find Target By Script Vector should work I believe but my scripts and Data Operator scripts all fail.
Is it because Im not capturing the vectors at their initial position at frame 0?
Shouldnt this script below work?
Or am I not sending out a vector script correctly?
thanks for any help
very appreciated
remainz
on ChannelsUsed pCont do
(
pCont.usePosition = true
pCont.useVector = true
pCont.useTime = true
)
on Init pCont do ()
on Proceed pCont do
(
count = pCont.NumPArticles()
for i in 1 to count do
(
pCont.ParticleIndex = i
pCont.ParticleTime = 0
pCont.ParticleVector = pCont.ParticlePosition
)
)
on Release pCont do ()

