Ok so I just started trying to learn about GUIs. I start with my first script:
function OnGUI () {
// Make a background box
GUI.Box (Rect (10,10,100,90), "Loader Menu");
}
And already i’m getting syntax failures. Method not found GUI.Box
This is also the case for GUI.Button as well. I’m guessing I broke the engine, or divided by 0. Anyone who can shed some light on this issue would really make my day. Thanks all!