Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. # Father's Day Gift
  2. from scene import *
  3.  
  4. class MyScene (Scene):
  5. def draw(self):
  6. background(1, 1, 1)
  7. fill(1, 0, 0)
  8. w = self.size.w
  9. h = self.size.h
  10. for i in range(6):
  11. tint(1,1,1,0.8)
  12. image('Heart', i*160, i*110, 200, 200)
  13. image('Heart_Blue', i*160, 550-i*110, 200, 200)
  14. tint(0, 0, 1, 0.5)
  15. text("Happy Father's Day!", font_size = 100, x = w/2, y = h/2)
  16. run(MyScene())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement