Files
citizen/UI.pde
2019-01-04 10:08:09 +01:00

11 lines
236 B
Plaintext

void UI() {
textSize(30);
textAlign(LEFT);
text(String.format("%02d",hour()) + ":" + String.format("%02d",minute()) + ":" + String.format("%02d",second()), 10, 30);
textSize(15);
text("FPS: " + int(frameRate), 10, 45);
}