Hey, just started playing with particles on Unity. I was just wondering if it’s possible to have more than one trail attached to a single particle?
If I add an additive trail behind my particles it sometimes ends up being overly bright. I’d like to add an alpha blended trail behind the first trail to help it stand out, but that doesn’t seem to be possible since there is only one ‘trail module’. I tried adding a sub-emitter, duplicating all velocity related properties, and adding a trail to that, but it doesn’t line up perfectly and the trails end up separating. The only other potential solutions I can think of with my current knowledge would be to manipulate GameObjects instead of particles and attach multiple TrailRenderer components to them (basically making my own Particle System from scratch), or maybe there is some way to add more trail modules to an existing particle system through scripting.