Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/liquidhelium/helium_framework
- Owner: liquidhelium
- License: apache-2.0
- Created: 2024-07-27T14:40:30.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-25T13:42:18.000Z (4 months ago)
- Last Synced: 2024-09-27T07:02:53.506Z (3 months ago)
- Topics: bevy, bevy-engine, editor, egui, game-development, gui, gui-application
- Language: Rust
- Homepage:
- Size: 52.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- 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.