Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Can't get a particle rotation
#3
(02-04-2020, 08:38 AM)josemendez Wrote: Only certain actors (specifically rods, softbodies, and granulars) make use of oriented particles. Ropes, cloth and fluid do not use them.

Most actors only work with particle positions and linear velocities. This cuts a lot on quaternion operations, cross products, inertia tensors and the like, resulting in much simpler (and faster) math.

You can check whether a certain actor uses oriented particles like this:
Code:
actor.usesOrientedParticles;

Here:
http://obi.virtualmethodstudio.com/tutor...setup.html

You can see the differences between ropes and rods, and why orientations are only needed for rods.

Figured I was using it wrong lol
Thanks for the fast reply
Reply


Messages In This Thread
RE: Can't get a particle rotation - by josemendez - 02-04-2020, 08:38 AM
RE: Can't get a particle rotation - by VirtualCucumber - 02-04-2020, 04:40 PM