├── .gitignore ├── Cargo.toml ├── LICENSE ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples └── basic.rs └── src ├── commands.rs ├── lib.rs ├── reflect_resource.rs ├── snapshot_id_provider.rs └── world_snapshot.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/bevy_snap/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/bevy_snap/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/bevy_snap/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/bevy_snap/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/bevy_snap/HEAD/README.md -------------------------------------------------------------------------------- /examples/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/bevy_snap/HEAD/examples/basic.rs -------------------------------------------------------------------------------- /src/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/bevy_snap/HEAD/src/commands.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/bevy_snap/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/reflect_resource.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/bevy_snap/HEAD/src/reflect_resource.rs -------------------------------------------------------------------------------- /src/snapshot_id_provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/bevy_snap/HEAD/src/snapshot_id_provider.rs -------------------------------------------------------------------------------- /src/world_snapshot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/bevy_snap/HEAD/src/world_snapshot.rs --------------------------------------------------------------------------------