Answers for "unity c# image invisible"

C#
0

unity c# image invisible

using UnityEngine;
 using UnityEngine.UI;
 
 public class ImageIvisible : MonoBehaviour {
     private Image img;
     void Start () {
 		img = GetComponent<Image>();
        img.enabled = false;
     }
 }
Posted by: Guest on December-24-2021

C# Answers by Framework

Browse Popular Code Answers by Language