Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/liquidhelium/helium_framework

An editor framework for Bevy using egui
https://github.com/liquidhelium/helium_framework

bevy bevy-engine editor egui game-development gui gui-application

Last synced: 2 months ago
JSON representation

An editor framework for Bevy using egui

Awesome Lists containing this project

README

        

# Helium Framework
An editor framework for bevy using egui.

## Features

* Convenient docking, register a system with `In` and you are ready to go.
* Flexible and configurable menu items.
* Add an hotkey with just a line.

```rust
app.register_hotkey("maximize", [Hotkey::new_global([KeyCode::ControlLeft, KeyCode::KeyM])]);
```

* Register bevy systems as `Action`s, so that they can be called dynamically. For example, to use them as what a hotkey triggers.