| Crates.io | bevy-fusabi |
| lib.rs | bevy-fusabi |
| version | 0.2.0 |
| created_at | 2025-12-02 04:40:34.501366+00 |
| updated_at | 2025-12-29 16:51:55.773903+00 |
| description | Bevy integration for the Fusabi scripting language |
| homepage | https://github.com/fusabi-lang/bevy-fusabi |
| repository | https://github.com/fusabi-lang/bevy-fusabi |
| max_upload_size | |
| id | 1961140 |
| size | 160,541 |
Bevy plugin for Fusabi scripting language - bringing hot-reloadable scripting to your Bevy games.
Add to your Cargo.toml:
[dependencies]
bevy = "0.15"
bevy-fusabi = "0.1.4"
Basic usage:
use bevy::prelude::*;
use bevy_fusabi::prelude::*;
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_plugins(FusabiPlugin)
.add_plugins(RunnerPlugin)
.run();
}
See docs/STRUCTURE.md for documentation organization.
See docs/RELEASE.md for release process and contribution guidelines.
Licensed under either of Apache License, Version 2.0 or MIT license at your option.