How do I make my blood puddles rotate to match the normal of the surface they are colliding with?
The blood puddle is a particle effect produced when another particle hits the ground.
If I were using game objects instead of particles, I could do something like:
BloodPuddle.transform.rotation = Quaternion.FromToRotation(transform.up, hit.normal);
How do I do this for particle effects?
