Ok finaly figured out how to attach a script and draw a button…kinda. Im geting an error, and im using trial for now.
“CS0119: Expression denotes a type', where a variable’, value' or method group’ was expected”
Usualy I dont ask people to tell me how to do this but this time I am.
using UnityEngine;
using System.Collections;
public class NewBehaviourScript : MonoBehaviour {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
void OnGUI(){
GUI.Button(Rect(16,16,32,16), "Button");
}
}