How to Change the Material of a Single particle (Unity)

Viewed 27

Hi I want to change the color of a single particle. I used one Method, but it changes all particles.

1 Answers

It seems that one cannot change the color of individual particle easily. From this docs page on start color of particle:

"The current color of the particle is calculated procedurally based on this value and the active color modules."

Perhaps you can use a layered particle system. Not an expert on this.

Related