Advertisement
cmiN

pong.kv

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