Answers for "how to change image color unity"

C#
5

how to change image color unity

using UnityEngine.UI;

public GameObject YourgameObjectWithImage;
YourgameObjectWithImage.GetComponent<Image>().color = new Color32(255, 255, 225, 225);
Posted by: Guest on October-31-2020
1

unity change color of image script

image.GetComponent<Image>().color = new Color32(255,255,225,100);
Posted by: Guest on August-03-2020

Code answers related to "how to change image color unity"

C# Answers by Framework

Browse Popular Code Answers by Language