Answers for "how to fix on GetMouseButtonDown activating UI unity"

C#
0

how to fix on GetMouseButtonDown activating UI unity

using UnityEngine.EventSystems;

void Update()
{
	if (Input.GetMouseButtonDown(0))
    {
         // This line prevents the Code from activating UI
    	 if (EventSystem.current.IsPointerOverGameObject())
                return;
         // Put your code here       
    }
}
Posted by: Guest on July-31-2020

Code answers related to "how to fix on GetMouseButtonDown activating UI unity"

C# Answers by Framework

Browse Popular Code Answers by Language