Kasante95

collect_coins

Apr 4th, 2023
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. def update():
  2.     global score
  3.     if keyboard.left:
  4.         fox.x = fox.x - 2
  5.     elif keyboard.right:
  6.         fox.x = fox.x + 2
  7.     elif keyboard.up:
  8.         fox.y = fox.y - 2
  9.     elif keyboard.down:
  10.         fox.y = fox.y + 2
  11.     coin_collected = fox.colliderect(coin)
  12.  
  13.     if coin_collected:
  14.         score = score + 10
  15.         place_coin()
Advertisement
Add Comment
Please, Sign In to add comment