bevy_gltf_save_load 0.1.0

Save & load your bevy games
Documentation
1
2
3
4
5
6
use bevy::prelude::*;

#[derive(Component, Reflect, Debug, Default)]
#[reflect(Component)]
/// component used to mark any entity as Dynamic: aka add this to make sure your entity is going to be saved
pub struct Dynamic(pub bool);