A way you can erase part of the canvas, is, lets say you press E for erase. In the keydown event press e, go to the script editor and type in:
- Code: Select all
setpen(255,255,255,0,3);
draw = 0;
This way when you press E, the color of the pen will be white (which basically is what erase is)
To change it back, lets say again that you press R for red or something, go to the keydown event and press r, then go to script editor and type in:
- Code: Select all
setpen(255,0,0,0,3);
draw = 0;
This way, the color of the pen is set back to red. If you want, you can adjust the 3 in setpen(255,0,0,0,3);
draw = 0;
to change the line thickness. Hope this helps. Btw, I dont think that you can make a collision with the canvas drawing, but then again, Im not sure.

I also atatched a demo if you need it.
