Conversation Window

(yes this is mixed with Gui and Scripting so I wasn’t sure where to put it)

Question:
In alot of the examples with OnGUI they have information print.
Then at the bottom of the editor it shows that information.
I would like it to print inside a window instead so the user can easly get information and have it organised.
Any Help?

Edit: Should have said I want the info to print into text area, not window.

Again, you’d use OnGUI.

Create an array that holds your text messages, and place a for loop under OnGUI that cycles thru them and prints each line to screen. Under Update, check the array length and delete the first element when necessary to limit the number of messages printed on screen.

Haha Alright thanks, I knew it was with OnGui, I just needed some guidence on the how to’s lol