We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Usually when you println in draw, the console gets really long and you can scroll through to see everything that was printed. I'm printing stuff and it only shows the last 2 lines of what I print each loop and that's all the console shows. My code wouldn't display properly so I'll just put an image.
If I say something like
print("guesses: "+frameCount);
instead it does the same thing but the frameCount updates normally in the console. There is no scroll bar in the console, it's like the whole console gets overwritten every loop. Before, I tried to print the pvector arrays manually using a for loop and it only showed m: 1.0, b: 0.0 with an empty line above it. What is wrong and how do I fix it?
Answers
Yes, this is due to a change in the latest release 3.3.4. A temporal solution is to revert to 3.3.3 and maybe add a comment in github to the current issue related to this topic so they fix it sooner: https://github.com/processing/processing/issues/5110
Kf