11 lines
236 B
Plaintext
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);
|
|
|
|
}
|