unity 改粒子颜色

// 将爆炸染成需要的颜色
		ParticleSystem.MainModule settings = GetComponent().main;
		settings.startColor = new ParticleSystem.MinMaxGradient(LevelManager.Instance.GetCurrentLevel().rotaterExploColor);

参考链接:

https://answers.unity.com/questions/604246/how-to-change-the-color-of-particle-system.html


你可能感兴趣的:(unity,粒子系统)