I've seen this talk called Creativity with Ruby-Processing by Joanne Cheng and noticed how the changes she made in her code were reloading very quickly.
When I write Processing code in Sublime Text I hit Build and what happens is my build system first terminates the running sketch by killing its corresponding java.exe
process, then uses processing-java.exe
to start a new sketch. This takes 5-10 seconds depending on the machine it's running on and on the sketch.
In the interest of tightening the feedback between code and effect, I'm curious if there's something better I can do in my build system to reload my sketch faster.
Maybe adapt what Ruby Processing watch is doing?