Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/17cupsofcoffee/nova
🎮 An even simpler 2D game framework written in Rust
https://github.com/17cupsofcoffee/nova
2d-game-framework game-development game-engine game-frameworks gamedev rust
Last synced: 18 days ago
JSON representation
🎮 An even simpler 2D game framework written in Rust
- Host: GitHub
- URL: https://github.com/17cupsofcoffee/nova
- Owner: 17cupsofcoffee
- License: mit
- Created: 2022-03-05T15:36:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-12T09:05:49.000Z (2 months ago)
- Last Synced: 2024-09-12T19:55:51.772Z (2 months ago)
- Topics: 2d-game-framework, game-development, game-engine, game-frameworks, gamedev, rust
- Language: Rust
- Homepage:
- Size: 137 KB
- Stars: 36
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nova
Nova is a 2D game framework written in Rust.
This is a sort of spiritual successor to [Tetra](https://github.com/17cupsofcoffee/tetra), a game engine I worked
on between 2018 and 2022. It aims to be smaller and simpler, with less global state.**⚠️ Use at your own risk!** This framework is still very experimental, and the API is constantly in flux. No support is offered, but you are welcome to use to the code as reference or fork it for your own needs.
## Features
- `ldtk` (enabled by default): enables a module to load [ldtk](https://ldtk.io/) files.
- `static_bundled_build`: enables automatic SDL2 library building and linking. Building SDL2 can take a bit during that first build (usually 1 minute or more).## Notes
- This framework is very heavily inspired by [FNA](https://github.com/FNA-XNA/FNA), and NoelFB's lightweight game engines ([Blah](https://github.com/NoelFB/blah) and [Foster](https://github.com/NoelFB/Foster)).
- It depends on [SDL2](https://www.libsdl.org/) for interacting with the underlying platform.