Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. // Font Styles & Color
  2. var fantasy = createFont("fantasy", 30);
  3. var cursive = createFont("cursive", 14);
  4. var avantiColor = color(0, 213, 255);
  5.  
  6. // Spotlight
  7. var spotlight = 0;
  8.  
  9. // A for Avanti
  10. var a = textFont("fantasy", 0) + text("A", 200, 280);
  11.  
  12. background(77, 77, 77);
  13.  
  14. fill(avantiColor);
  15. textFont(fantasy);
  16. text("Avanti Gaming", 110, 30);
  17. textFont(cursive);
  18. text("The most professional, most mature, and most innovative \nroleplay gaming community ever.", 10, 87);
  19. text("~ Where progressive minds come together.", 10, 130);
  20. textAlign(CENTER, CENTER);
  21. text("http://AvantiGaming.com", 200, 160);
  22.  
  23. // A for Avanti & Spotlight
  24. draw = function() {
  25. // Spotlight
  26.  
  27. if(spotlight < 150) {
  28. noStroke();
  29. fill(255, 255, 255);
  30. ellipse(200, 280, spotlight, spotlight);
  31. }
  32.  
  33. if(spotlight < 150) {
  34. spotlight += 0.75;
  35. }
  36.  
  37. // "A" for Avanti
  38. fill(avantiColor);
  39. if(a < textSize(80)) {
  40. a += 0.75;
  41. }
  42. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement