Hi Guys, I am thinking on adding an In-Game-Notepad.
I have written a basic starter script
var stringToEdit : String = "Notes:";
function OnGUI () {
if (Input.GetKeyDown ("n"))
stringToEdit = GUI.TextArea (Rect (400, 400, 200, 100), stringToEdit, 200);
}
I wan't the player to be able to press "n" and a window opens up where he can write down stuff e.g Memos,reminders etc.
But I can't get the window to show up?
Thank you in advance! -Izzy
↧