Hi guys,
I have a bunch of instanced shaped particles heading in one direction but they are all oriented up the same way. I tried this script:
But it did not work...im not a scripter ! So does anyone know where Im going wrong. I jut inserted the 3 figures in the orientation array to see if anything would happen.....
I have a bunch of instanced shaped particles heading in one direction but they are all oriented up the same way. I tried this script:
Code:
on ChannelsUsed pCont do ( pCont.useOrientation = true ) on Init pCont do ( --insert variables here ) on Proceed pCont do ( count = pCont.NumParticles() for i in 1 to count do ( pCont.particleIndex = i pCont.setParticleOrientation i = [90, 90, 37] ) ) on Release pCont do ( )
Comment