This file contains 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
//////////////////////////////////////////////////////////////////////////////// | |
/// Here's a quick review of your code. | |
/// I didnt dive too much into breaking down your logic. | |
/// The main focus of my comments was making your code more readable. | |
/// In professional enviroments, readability is everything! | |
/// All of my comments use a "///" instead of "//" | |
//////////////////////////////////////////////////////////////////////////////// | |
//*********************************************** | |
//when hits the space key /// ADD SPACE BETWEEN "//" and rest of comment. |
This file contains 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
//////////////////////////////////////////////////////////////////////////////// | |
// Jump functions used for first game I created. | |
// Disclaimer: I wrote this code fresh out of college. It's ugly! | |
//////////////////////////////////////////////////////////////////////////////// | |
// Here's an overview in the rules for gravity in the game. | |
// 1. Mario is always falling. | |
// 2. If mario hits his head on an object, set velocity_y to 0 | |
// 3. If mario hits his feet on an object, set velocity_y to 0 |