Answers for "unity image color c~"

C#
7

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

C# Answers by Framework

Browse Popular Code Answers by Language