This script pretty much makes a Debug/Chat log but it only displays one string at a time.
How do i get it to print the next string underneath rather than overwrite the previous one?
var stringToEdit : String = "";
function OnGUI() {
GUI.Label(Rect(10, Screen.height / 4*3.5, Screen.width / 3, Screen.height / 10), stringToEdit, "textarea");
}
↧