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: about 1 month ago
JSON representation
An editor framework for Bevy using egui
- Host: GitHub
- URL: https://github.com/liquidhelium/helium_framework
- Owner: liquidhelium
- License: apache-2.0
- Created: 2024-07-27T14:40:30.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-28T14:38:20.000Z (2 months ago)
- Last Synced: 2025-07-28T15:12:58.654Z (2 months ago)
- Topics: bevy, bevy-engine, editor, egui, game-development, gui, gui-application
- Language: Rust
- Homepage:
- Size: 245 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
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.