12 lines
226 B
Plaintext
12 lines
226 B
Plaintext
void UI() {
|
|
|
|
textSize(30);
|
|
textAlign(LEFT);
|
|
|
|
text(String.format("%02d",hour()) + ":" + String.format("%02d",minute()) + ":" + String.format("%02d",second()), 10, 30);
|
|
|
|
|
|
text("FPS: " + int(frameRate), 10, 60);
|
|
|
|
}
|