bevy_gearbox_editor 0.7.0

Visual editor for bevy_gearbox
1
2
3
4
5
6
7
8
9
10
11
use bevy::prelude::*;
use std::collections::HashMap;
use crate::types::EntityId;
use super::view_model::GraphDoc;

#[derive(Debug, Default, Resource)]
pub struct Docs {
    pub map: HashMap<EntityId, GraphDoc>,
}