Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vuelto-org/vuelto
A fast and lightweight game engine powered by Go and OpenGL.
https://github.com/vuelto-org/vuelto
engine game game-development game-engine go go-game go-game-engine golang legacy-opengl library open-source opengl
Last synced: about 15 hours ago
JSON representation
A fast and lightweight game engine powered by Go and OpenGL.
- Host: GitHub
- URL: https://github.com/vuelto-org/vuelto
- Owner: vuelto-org
- License: other
- Created: 2023-11-13T19:28:46.000Z (about 1 year ago)
- Default Branch: latest
- Last Pushed: 2025-01-12T20:10:02.000Z (8 days ago)
- Last Synced: 2025-01-12T21:20:07.444Z (8 days ago)
- Topics: engine, game, game-development, game-engine, go, go-game, go-game-engine, golang, legacy-opengl, library, open-source, opengl
- Language: Go
- Homepage: https://vuelto.pp.ua/
- Size: 17 MB
- Stars: 34
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
Vuelto is an open-source, fast, and lightweight game engine, based on Golang, CGo, and OpenGL. It's easy to use yet very powerful, and it's also cross platform, meaning it can be deployed on almost all major platforms.
## β¨ Features
- π Cross Platform
- π οΈ Open-Source
- π Easy to learn
- π Fully built using CGo (and some other libraries)## π¦ Installation
### π Requirements
You need to have the following installed on your system:
- π₯οΈ A C compiler
- π§ A Go compiler (Go 1.18 and above)
- πͺ Xorg/Wayland development packages (For Linux only)
- π±οΈ Supported platformFor an installation guide, [go here](https://vuelto.pp.ua/install/).
### πΉ Go package
You can get the latest Go package by running this command:
```sh
go get vuelto.pp.ua@latest
```## πΌοΈ Vuelto example
```go
package mainimport (
vuelto "vuelto.pp.ua/pkg"
)func main() {
w := vuelto.NewWindow("Image Example - Vuelto", 800, 600, false)
ren := w.NewRenderer2D()image := ren.LoadImage("test/image.png", 0, 0, 0.5, 0.5)
for !w.Close() {
image.Draw()
w.Refresh()
}
}
```## π₯οΈ Platform support
Vuelto has built-in deployment support for the following platforms:
| Platform | Status | Version |
| :---- | :---- | :---- |
| Windows | β | v1.0 |
| macOS (Darwin) | β | v1.0 |
| Linux | β | v1.0 |
| Web | β | v1.1 |## π Docs
You can check out Vuelto's documentation at [Vuelto's website](https://vuelto.pp.ua/docs/).
> [!TIP]
> In case the documentation is missing something or there is something wrong, use the [GoDoc](https://pkg.go.dev/vuelto.pp.ua) page for API documentation. Use the [examples](https://github.com/vuelto-org/vuelto/tree/latest/examples) directory for usage examples.### π£οΈ Roadmap
Our roadmap is available on our [website](https://vuelto.pp.ua/roadmap/).
### π€ Contributing
We're really thankful for your contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
1. π΄ Fork the repository
2. π Create your feature branch (`git checkout -b feature/amazing-feature`)
3. π Commit your changes (`git commit -m 'Add some amazing feature'`)
4. π Push to the branch (`git push origin feature/amazing-feature`)
5. π Open a Pull Request## π‘οΈ Support & Security
### π Issues
See the [Issues](https://github.com/vuelto-org/vuelto/issues) page for current bugs and feature requests. In case you find any bug or have a suggestion, please open up an issue or search for any other form of contact to submit a bug report.
#### π Security Issues
If you find a security vulnerability, please follow the instructions in [SECURITY.md](SECURITY.md) to safely report it.
### π License
Vuelto is licensed under the [VL-Cv1.1 License](LICENSE.md). Any PRs that will change the license won't be accepted.
### π Guidelines
Weβre excited to have you here! To ensure a welcoming and productive environment, we kindly ask you to follow our **Guidelines**. Please take a moment to review the following:
- **[Contributing](CONTRIBUTING.md)**: Learn how to make meaningful contributions to our project.
- **[Code of Conduct](CODE_OF_CONDUCT.md)**: Understand the principles that foster a respectful and inclusive community.### π Community and Contact
You can contact us via our Discord community or at our email:
- π¨οΈ [Discord server](https://vuelto.pp.ua/discord)
- βοΈ [Email](mailto:[email protected])### π Thanks To
A special thanks to:
- **Dimkauzh** for the initial idea and development.
- **ZakaHaceCosas** for the great improvements on top of vuelto.Also a big shoutout to our homies and partners at [**Sokora**](https://sokora.org), [**Atom**](https://atomlabs.ie) and [**Epic-Bot**](https://bamb.cl/epic-bot/)
Without the help of these people, Vuelto wouldn't be where it is today. Your support has helped make Vuelto even better! π€ π
---
Made with β€οΈ by the Vuelto Team