Bevy_save

A framework for saving and loading game state in Bevy.

Features

Serialization and Deserialization

While Bevy's DynamicScene only allows you to save entities and components, bevy_save enables you to save everything, including resources.

Save file management

bevy_save automatically uses your app's workspace name to create a unique, permanent save directory in the correct place for whatever platform it is running on.

Supports Windows, Linux, and MacOS. WASM support is in progress.

Snapshots and Rollback

bevy_save is not just about save files, it is about total control over game state.

This crate introduces three different snapshot types which may be used directly:

Or via the World extension methods:

The Rollbacks resource also gives you fine-tuned control of the currently stored rollbacks.

Type registration

bevy_save adds methods to Bevy's App for registering types that should be saved. As long as the type implements Reflect, it can be registered and used with bevy_save. Types that are not explicitly registered in the SaveableRegistry are not included in save/load.

Type filtering

While types that are not registered with SaveableRegistry are automatically filtered out for you, bevy_save also allows you to explicitly filter types when creating a snapshot.

Entity mapping

As Entity ids are not intended to be used as unique identifiers, bevy_save supports mapping Entity ids:

This is also available directly on the snapshot types:

If you use the methods that do not accept an EntityMap (deserialize, load, rollback, apply), the entities are assumed to have a one-to-one mapping with the currently spawned entities (1->1, 2->2, 3->3).

Any entities that do not have a mapping are automatically assigned a new id.

MapEntities

bevy_save also supports MapEntities via reflection to allow you to update entity ids within components and resources.

See Bevy's Parent Component for a simple example.

License

bevy_save is dual-licensed under MIT and Apache-2.0.

Compatibility

NOTE: We do not track Bevy main.

|Bevy Version|Crate Version | |------------|-----------------------| |0.10 |0.4, 0.5 | |0.9 |0.1, 0.2, 0.3 |