Notifications
Clear all

[Closed] PFlow Script — How to have a constant spinning

Hello guys and girls,

I’am trying to script PFlow to make the particles spinning constantly CW or CCW over the time. I read some threads but i didn’t find an answer for my question.

This is my script :


  on ChannelsUsed pCont do
  (
  pCont.useOrientation=true
  pCont.useSpin = true
  pCont.useAge = true
  )
  
  on Init pCont do ()
  
  on Proceed pCont do
  (
  count = pCont.NumParticles()
  switch = true
  
  for i in 1 to count do
  (
  
  	pCont.particleID = i
  	pSpin = pCont.particleSpin
  	pSpin.angle += 0.0001 
  	
  	if switch == true do (pSpin.axis = [1, 0, 0])
  	if switch == false do (pSpin.axis = [-1, 0, 0])
  	
  	pCont.particleSpin = pSpin
  	
  switch = not switch
  
  )
  )
  
  on Release pCont do ()
  

The last script works but the spinning accelerate over the time but i want it spin constantly.

I make an other script that work fine with a spin operator in the same event.
I post it if it can help someone. Just put a Spin Operator with the script operator:


  on ChannelsUsed pCont do
  (
  	pCont.useOrientation=true
  	pCont.useSpin = true
  	pCont.useAge = true
  )
  
  on Init pCont do ()
  
  on Proceed pCont do
  (
  	count = pCont.NumParticles()
  	switch = true
  
  	for i in 1 to count do
  	(
  	
  		pCont.particleID = i
  		pSpin = pCont.particleSpin
  		
  		if switch == true do (pSpin.axis = [1, 0, 0])
  		if switch == false do (pSpin.axis = [-1, 0, 0])
  		
  		pCont.particleSpin = pSpin
  		
  	switch = not switch
  	
  	)
  )
  
  on Release pCont do ()
  

This code just give a CCW rotation to the selected particle and it’s done.

Just to understand and to learn how to script this kind of behavior.
Could you help me to modify the first script and make the particles spinning constantly ?

Thanks you for your help.