Crates.io | bevy-yoleck |
lib.rs | bevy-yoleck |
version | 0.22.0 |
source | src |
created_at | 2022-06-01 19:00:39.853828 |
updated_at | 2024-07-06 16:05:41.744074 |
description | Your Own Level Editor Creation Kit |
homepage | |
repository | https://github.com/idanarye/bevy-yoleck |
max_upload_size | |
id | 598351 |
size | 400,263 |
Yoleck is a crate for having a game built with the Bevy game engine act as its own level editor.
vpeol_2d
and
vpeol_3d
.2D editor: https://idanarye.github.io/bevy-yoleck/demos/example2d
https://user-images.githubusercontent.com/1149255/228007948-31a37b3f-7bd3-4a36-a3bc-4617d359c7c2.mp4
3D editor: https://idanarye.github.io/bevy-yoleck/demos/example3d
https://user-images.githubusercontent.com/1149255/228008014-825ef02e-2edc-49f5-a15c-1fa6044f84de.mp4
Loading multiple levels and unloading them on the fly: https://idanarye.github.io/bevy-yoleck/demos/doors_to_other_levels
https://github.com/idanarye/bevy-yoleck/assets/1149255/590beba4-2ca5-4218-af52-143321bb5946
The WASM version of this example is gameplay only. To see how the editor for it looks like, clone/download the repository and run:
cargo run --example doors_to_other_levels --features vpeol_2d,bevy/png
--editor
to edit the game levels with Yoleck.Yoleck saves the levels in JSON files that have the .yol
extension. A .yol
file's top level is a tuple (actually JSON array) of three values:
Each entity is a tuple of two values:
The reason tuples are used instead of objects is to ensure ordering - to guarantee the metadata can be read before the data. This is important because the metadata is needed to parse the data.
Yoleck generates another JSON file in the same directory as the .yol
files
called index.yoli
. The purpose of this file is to let the game know what
level are available to it (in WASM, for example, the asset server cannot look
at a directory's contents). The index file contains a tuple of two values:
bevy | bevy-yoleck | bevy_egui |
---|---|---|
0.14 | 0.22 | 0.28 |
0.13 | 0.21 | 0.27 |
0.13 | 0.20 | 0.26 |
0.13 | 0.19 | 0.25 |
0.12 | 0.18 | 0.24 |
0.12 | 0.16, 0.17 | 0.23 |
0.11 | 0.15 | 0.22 |
0.11 | 0.13 - 0.14 | 0.21 |
0.10 | 0.7 - 0.12 | 0.20 |
0.9 | 0.5, 0.6 | 0.19 |
0.9 | 0.4 | 0.17 |
0.8 | 0.3 | 0.15 |
0.7 | 0.1, 0.2 | 0.14 |
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.