Created
August 23, 2017 01:31
-
-
Save botrosg/d2bb38eaefda08add617a96af5c33f14 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if(this.x - 5 < 0) { // hitting the left wall | |
| this.x = 5; | |
| this.x_speed = -this.x_speed; | |
| } else if(this.x + 5 > canvas.width) { // hitting the right wall | |
| this.x = canvas.width - this.radius; | |
| this.x_speed = -this.x_speed; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment