Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. boolean title = true;
  2. void setup() {
  3. size(600, 600);
  4. }
  5. void draw() {
  6. if (title) {
  7. textSize(50);
  8. text("this is the title screen", 50, 300);
  9. textSize(10);
  10. text("Press enter to start", 200, 400);
  11. if (keyCode == ENTER) {
  12. title = false;
  13. }
  14. } else {
  15. //insert your code here
  16. background(0, 0, 255);
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement