Hey guys, so I’m pretty new to Unity’s UI system and I have a question. So I have a bool in a script and when the bool is returned true, I want a simple text to show up in the left under corner of the screen, how can I achieve this with preferably no inspector setup at all, so everything done true scripting. It’s just a simple sentence so something like this
if(bool == true)
{
GUI.enabled = true;
}
else GUI.enabled = false;
what is the most efficient way to achieve this (I don’t know how to work with canvasses and stuff and all the new things in unity 5.0)
Thanks!!