I’m trying to make tire tracks using particle system (Using terrain is out of question). My only problem right now is that after particles are emitted the ones left behind still changes rotation with the emitter, so it doesn’t look like a tire trail (You end up seeing all individual particles rotated)
All I want to do is to maintain the Y rotation that the particle has when it spawns, so it never changes again. (The rotation should be equal to emitter’s rotation at birth and then never change again).
Anyone has some idea of what I should do using particle system?
Look for Buckslice solution. You just need to change particles rotation via script. If you’re making tire tracks like me, set different rotations for rear wheels (car’s rigidbody rotation) and for front wheels just add wheels local steering rotation to car’s world rotation, then turn it into radians by multiplying with Mathf.Deg2Rad.