Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. #:kivy 1.0.9
  2.  
  3. <PongBall>:
  4. size: 50, 50
  5. canvas:
  6. Ellipse:
  7. pos: self.pos
  8. size: self.size
  9.  
  10. <PongPaddle>:
  11. size: 25, 200
  12. canvas:
  13. Rectangle:
  14. pos:self.pos
  15. size:self.size
  16.  
  17. <PongGame>:
  18. ball: pong_ball
  19. player1: player_left
  20. player2: player_right
  21.  
  22. canvas:
  23. Rectangle:
  24. pos: self.center_x - 5, 0
  25. size: 10, self.height
  26.  
  27. Label:
  28. font_size: 70
  29. center_x: root.width / 4
  30. top: root.top - 50
  31. text: str(root.player1.score)
  32.  
  33. Label:
  34. font_size: 70
  35. center_x: root.width * 3 / 4
  36. top: root.top - 50
  37. text: str(root.player2.score)
  38.  
  39. PongBall:
  40. id: pong_ball
  41. center: self.parent.center
  42.  
  43. PongPaddle:
  44. id: player_left
  45. x: root.x
  46. center_y: root.center_y
  47.  
  48. PongPaddle:
  49. id: player_right
  50. x: root.width - self.width
  51. center_y: root.center_y
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement