seanmtracey / Games-with-Pygame

The code for my "Making games with PyGame" series for Raspberry Pi's The MagPi.
https://smt.codes/writings
85 stars 71 forks source link

Update moving.py #22

Open Metspy opened 3 years ago

Metspy commented 3 years ago

Line 49 did not match initial code provided in documentation and caused "Block 3" to send a blue block flying off the screen pretty fast. Changed blueSquareVX -= -0.2 to blueSquareVX += 0.1 accordingly.