Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hvalfangst/adventures-of-pondi
Frameworkless 2D sidescrolling platformer game programmed in Rust
https://github.com/hvalfangst/adventures-of-pondi
2d 2d-game castlevania metroidvania platformer-game rust rust-lang sidescroller
Last synced: 2 days ago
JSON representation
Frameworkless 2D sidescrolling platformer game programmed in Rust
- Host: GitHub
- URL: https://github.com/hvalfangst/adventures-of-pondi
- Owner: hvalfangst
- Created: 2024-07-20T19:19:25.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-18T21:22:54.000Z (5 months ago)
- Last Synced: 2024-11-25T08:33:27.610Z (2 months ago)
- Topics: 2d, 2d-game, castlevania, metroidvania, platformer-game, rust, rust-lang, sidescroller
- Language: Rust
- Homepage:
- Size: 231 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Adventures of Pondi
2D platformer game programmed in Rust
![screenshot](assets/screenshot.png)
## Requirements
* [Rust](https://www.rust-lang.org/tools/install)## Cargo dependencies
* [minifb](https://crates.io/crates/minifb) - input handling
* [image](https://crates.io/crates/image) - sprite rendering
* [winit](https://docs.rs/winit) - sprite rescaling## Running program: Cargo
The shell script 'up' builds and runs our application by executing the following:
```
1. cargo build
2. cargo run
```