Crates.io | bevy_mod_scripting |
lib.rs | bevy_mod_scripting |
version | |
source | src |
created_at | 2022-08-02 19:39:28.035812+00 |
updated_at | 2025-03-30 14:32:24.64658+00 |
description | Multi language scripting in Bevy |
homepage | https://github.com/makspll/bevy_mod_scripting |
repository | https://github.com/makspll/bevy_mod_scripting |
max_upload_size | |
id | 637534 |
Cargo.toml error: | TOML parse error at line 26, column 1 | 26 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Although Bevy doesn't directly support scripting, efforts are underway to incorporate it. This crate represents an initial attempt to enable scripting within Bevy's existing framework. It's important to note that this is a work in progress and not yet optimized or complete. As Bevy evolves, significant changes to this API are anticipated.
on_update
, on_init
etc..)BMS applies continuous benchmarking and the latest benchmark results can be found over at bencher.dev.
The tested scripts themselves are placed in the assets/benchmarks
directory.
The languages currently supported are as follows:
Language |
---|
Lua |
Lua51 |
Lua52 |
Lua53 |
Lua54 |
Luajit |
Luajit52 |
Luau |
Rhai |
For examples, installation and usage instructions see our shiny new book
BMS generates code based on each bevy release, which is why we pin the patch version of bevy too.
bevy_mod_scripting | bevy |
---|---|
0.11.1+ | 0.15.3 |
0.9.5+ | 0.15.2 |
0.9.1+ | 0.15.1 |
0.9 | 0.15.0 |
0.8 | 0.15.0 |
0.7 | 0.14 |
0.6 | 0.13.1 |
platform | is supported? |
---|---|
Windows | yes |
Linux | yes |
MacOS | yes |
WASM | no, see this issue |
the coverage does not include generated bindings. ↩
The crate strictly enforces no unwrap
, expect
, panic
or todo
's via clippy lints. ↩
Due to the recent re-write of the crate, documentation generation as well as rune support are temporarilly on hold. They will likely be re-implemented in the future. ↩