#editor #bevy #game-engine #gamedev

bin+lib space_editor

Prefab editor for bevy game engine. Make levels/object templates with intuitive UI

2 releases

0.3.1 Dec 21, 2023
0.3.0 Dec 18, 2023

#316 in Game dev

Download history 2/week @ 2023-12-21 2/week @ 2023-12-28 10/week @ 2024-01-04 1/week @ 2024-01-11 1/week @ 2024-02-08 20/week @ 2024-02-15 36/week @ 2024-02-22 22/week @ 2024-02-29 2/week @ 2024-03-07 5/week @ 2024-03-14 86/week @ 2024-03-21 23/week @ 2024-03-28 4/week @ 2024-04-04

119 downloads per month

MIT/Apache

1.5MB
4K SLoC

space_editor: The Bevy Prefab Editor

License: MIT

Editor screenshot

space_editor is useful tool for scene/prefab/prototyping with bevy engine. Its allow to create/modify levels/scenes/prefabs in fast gui based way.

Project goal

Aspires to be editor for bevy while there is no official editor.

Main features

  • Intuitive Scene and Prefab Management: Space Editor allows you to prepare and save scenes and prefabs with an intuitive user interface. You can easily reuse them in your game development workflow.
  • bevy_xpbd_3d compatibility: Space Editor supports bevy_xpbd_3d, including all editor features.
  • Gizmo-Based manipulations: Manipulate entity positions, rotations, and scales using gizmos.
  • Component values editing: Easily edit component parameters within the editor UI
  • Seamless Editor-Game switching: Switch between the editor UI and the game effortlessly for fast prototyping and testing.
  • Prefab Reusability: Prefabs can be nested within other prefabs, improving reusability and organization in your projects.
  • Many custom components: Space Editor implements various custom components to seamlessly integrate its saving system with the standard Bevy scene format.
  • Easy API for customization: Customize or register your own components within the editor with ease, tailoring it to your specific project needs.
  • API for adding tabs: Extend the functionality of the editor by easily adding new tabs, enhancing your workflow.

Getting Started To run the editor, use the following command:

cargo run

To run platformer example, use the following command:

cargo run run --example platformer --features bevy_xpbd_3d

Usage - Game

The following explains how to integrate space_editor as a game plugin to use the created prefabs in your game.

Cargo

Add this line to your Cargo.toml file

space_editor = "0.3.0"

Prefab spawn system

To utilize the prefab spawn system, simply add the plugin to your application as follows:

App::default()
    .add_plugins(DefaultPlugins)
    .add_plugins(PrefabPlugin)

For spawning, use the PrefabBundle:

 commands.spawn(PrefabBundle::new("tile.scn.ron"))
        .insert(Name::new("Prefab"));

(More code at examples/spawn_prefab.rs)

Usage - Editor

The editor is a ready to use executable that can be used and altered at your own necessity. It's base configuration is as follows, with simple_editor_setup:

fn main() {
    App::default()
        .add_plugins(DefaultPlugins)
        .add_plugins(SpaceEditorPlugin::default())
        .add_systems(Startup, simple_editor_setup)
        .run();
}

(Code from main.rs)

Editor usage strategy

  • Fork this repo.
  • Create a branch to keep up to date with project updates and addressed bugs.
  • Editor is executed with editor feature.
  • Feel free to upstream your examples and community modules to enrich space-editor

Customization

More detailed information in docs/README.md

Custom types can be added to the editor gui and prefab spawn system with just a single line:

use editor::prelude::EditorRegistryExt;

app.editor_registry::<Name>();

The representation of components in the editor UI can also be customized by bevy_inspector_egui library.

Prefab

A prefab is simply a Bevy scene serialized to a readable and editable RON format. However, it needs to be spawned through PrefabBundle to activate custom logic such as adding global transforms to an object.

More documentation can be found at the docs folder

Contributing

Any request for adding functionality to the editor is welcome. Open an issue on the issue tracker. Any pull request is welcome too:)

License

MIT - https://choosealicense.com/licenses/mit/

Project naming

I'm using the editor to create my own Sci-Fi space game, so the name of the project starts with space_ :)

Dependencies

~55–93MB
~1.5M SLoC