Answers for "active an ui image unity"

1

unity how to make a ui disappear

using UnityEngine;
using UnityEngine.UI;

public class ScriptName : MonoBehaviour
{
    [SerializeField]
    private CanvasGroup Canvas;

	// makes canvas invisible
    void Awake()
    {
        Canvas.alpha = 0f;
        Canvas.interactable = false;
        Canvas.blocksRaycasts = false;
    }

	// when button is clicked canvas becomes visible
    public void Click()
    {
    	print("work");
        Canvas.alpha = 1f;
        Canvas.interactable = true;
        Canvas.blocksRaycasts = true;
    }
}
Posted by: Guest on February-09-2020
1

disable an image in unity

image.enabled = true;
image.enabled = false;
Posted by: Guest on October-08-2020

Browse Popular Code Answers by Language