unity 2d how to change sprite colours code example
Example: change olour in unity script
SpriteRenderer sr;
void Start()
{
sr = GetComponent<SpriteRenderer>();
}
void Update()
{
//This is a simple way of adding color
sr.color = Color.red;
//This is a more specific way of adding color
sr.color = new Color(0/*Red*/,0/*Green*/,0/*Blue*/)
}