-
-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Complete Frogger Game #484
Conversation
Hey! Congratulations on your PR! 😎😎😎 Let's do some self-checks to fix most common issues and to make some improvements to the code before reviewers put their hands on the code. Go through the requirements/most common mistakes linked below and fix the code as appropriate. If you have any questions to requirements/common mistakes feel free asking them here or in Students' chat. When you genuinely believe you are done put a comment stating that you have completed self-checks and fixed code accordingly. Also, be aware, that if you would silently ignore this recommendation, a mentor can think that you are still working on fixes. And your PR will not be reviewed. 😒 Please, make sure that your code follows the requirements Universal recommendations:
By the way, you may proceed to the next task before this one is reviewed and merged. Sincerely yours, |
Self-check done. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@deveLabR more than 1 requirements from those posted/linked by bot are not met.
Please copy/paste the requirements, go through them thoroughly, mark those that are met by the code, ask questions here and/or Students' chat if anything is not clear, fix code accordingly.
submissions/develabr/frogger/app.js
Outdated
update(dt) { | ||
this.x += this.speed * dt; | ||
|
||
if (this.x > 510) { | ||
this.x = -70; | ||
} | ||
|
||
if ( | ||
player.x + this.width > this.x && | ||
player.x < this.x + this.width && | ||
player.y + this.height > this.y && | ||
player.y < this.y + this.height | ||
) { | ||
player.toStart(); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Requirements posted/linked by bot address two issues with method update
specifically.
Please identify those, copy/paste them as a comment in this PR and fix code accrodingly.
If I understood correctly, I need to make corrections according to the following points:
Did I miss something? |
These are relevant. |
I hope that I understood what is required of me)) now I will try to fix everything |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@deveLabR great job!
Object-Oriented JavaScript
Demo |
Code base
The code is submitted in a dedicated feature branch.
Only code files are submitted.
Please, review.