p5winter/debug.js

6 lines
96 B
JavaScript
Raw Normal View History

2024-01-12 02:02:14 +00:00
export function debugMsg(msg) {
fill(255);
stroke(0);
textSize(12);
text(msg, 24, 24);
}