You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
2.7 KiB

#### Functional
##### Try playing the game
###### Does the game runs without crashing?
###### Does animation run using `RequestAnimationFrame`?
###### Is the game single player?
###### Does the game avoid the use of `canvas`?
###### Does the game avoid the use of frameworks?
###### Is the game chosen from the pre-approved list?
4 years ago
##### Try pausing the game while it is running
4 years ago
###### Does the game display the pause menu, with the options: continue and restart?
4 years ago
##### Try pausing the game while it is running and choose the continue option
###### Does the game continue?
##### Try pausing the game while it is running and choose the restart option
###### Does the game restart?
4 years ago
##### Use the Dev Tool/Performance to record and try pausing the game while it is running
4 years ago
4 years ago
###### Does the game present any frame drops?
4 years ago
4 years ago
##### Try moving the player/element using the proper commands and keys to do so
4 years ago
3 years ago
###### Does the player obey the commands?
4 years ago
4 years ago
##### Try moving the player/element using the proper commands and keys to do so
4 years ago
###### Does the player move without spamming the key to do so?
##### Try playing the game
4 years ago
###### Does the game work like it should (as one of the games from the pre-approved list)?
4 years ago
##### Try playing the game
4 years ago
###### Does the countdown/timer clock seem to be working?
4 years ago
##### Try playing the game and score some points
###### Does the score seems to work like it should, by increasing at a certain action done by the player?
##### Try playing the game and try losing a life
###### Does the player lives seem to work like it should, by decreasing the numbers of lives of the player?
##### Try using the Dev Tool/Performance
4 years ago
###### Does it not present frame drop?
##### Try using the Dev Tool/Performance
4 years ago
###### Does the game run at or around 60fps?
##### Try using the Dev Tool/performance and the option rendering with the paint ON, if possible
###### Is the paint being used as less as possible?
##### Try using the Dev Tool/performance and the option rendering with the layer ON, if possible
4 years ago
###### Is the layers being used as less as possible?
###### Are the creation of the [layers being promoted](https://developers.google.com/web/fundamentals/performance/rendering/stick-to-compositor-only-properties-and-manage-layer-count) properly?
#### Bonus
###### +Does the project runs quickly and effectively? (Favoring recursive, no unnecessary data requests, etc)
4 years ago
###### +Does the code obey the [good practices](https://public.01-edu.org/subjects/good-practices/README.md)?
###### +Does the program reuses memory to avoid jank?
4 years ago
###### +Does the game use [svg](https://developer.mozilla.org/en-US/docs/Web/SVG)?
###### +Is the code using synchronicity to increase performance?
###### +Do you think in general this project is well done?