Advertisement
kekellner

Ejemplo de mover cuadradito

Mar 15th, 2021
1,706
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. def setup():
  2.     size(500, 500)
  3.     background(0)
  4.  
  5. def draw():
  6.     background(0)
  7.     fill(90, 255, 0)
  8.     square(mouseX - 25, mouseY - 25, 50)
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement