Hello. I’ve encountered a new annoying problem in the last couple of days. I use print() to put messages onto the console, but for some reason after the first message the rest don’t show up. For example, for an input test I had this code:
if( Input.GetKeyDown("1") )
{
print("11111");
}
I’ll press the ‘1’ key, see the output on the console, but from then on all button presses don’t show up on the console unless I clear it. It’s causing bigger problems than this but this is just a quick example. Is there some sort of console flushing I can do to get the prints to appear?
Thanks
Mo