Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. String typingCommand = "";
  2. void setup () {
  3. background(0);
  4. size(500, 500);
  5. }
  6.  
  7. void draw () {
  8. background(0);
  9. textSize(30);
  10. fill(255);
  11. text("> " + typingCommand, 30, 60);
  12. }
  13.  
  14. void keyPressed () {
  15. typingCommand += (key + "");
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement