Answers for "how to change start color of particle system unity"

C#
0

particle system start color

Color myColor; 
	var particlesMain = gameObject.GetComponent<ParticleSystem>().main;
    particlesMain.startColor = myColor;
Posted by: Guest on November-11-2020
0

unity particle system color

Color myColor;
gameObject.GetComponent<ParticleSystem>().startColor = myColor;
Posted by: Guest on March-25-2020

Code answers related to "how to change start color of particle system unity"

C# Answers by Framework

Browse Popular Code Answers by Language