Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nhyne/platformer
Platformer game for rust game practice
https://github.com/nhyne/platformer
Last synced: 2 days ago
JSON representation
Platformer game for rust game practice
- Host: GitHub
- URL: https://github.com/nhyne/platformer
- Owner: nhyne
- Created: 2019-05-27T19:53:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-15T01:02:56.000Z (almost 5 years ago)
- Last Synced: 2024-11-10T22:42:46.718Z (2 months ago)
- Language: Rust
- Size: 30.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Platformer
A generic platformer game to continue practice/learning game dev with Rust.
## TODO
### Gameplay
- [ ] Enemies need to walk towards the player
- [ ] Player needs full movement
- [ ] Lives?
- [ ] Do enemies spawn?
- [ ] Need to figure out how do detect what is colliding with an enemy/player/etc
- [ ] Health bars### Refactor
- [ ] Abstract the physics/draw objects so that the math does not need to be done for each drawn object. See [Player render method](src/game/player.rs)
- [ ] Implement entity component system