#serialization #bevy #bevy-plugin #component #wrapper #traits #moonshine-save

bevy_serialization_extras

A crate for managing serialization with moonshine_save + wrappers

11 releases (5 breaking)

0.6.0 Sep 23, 2024
0.5.0 Aug 6, 2024
0.4.3 Mar 20, 2024
0.4.0 Feb 26, 2024
0.1.0 Oct 26, 2023

#401 in Game dev

Download history 9/week @ 2024-07-01 40/week @ 2024-07-29 135/week @ 2024-08-05 4/week @ 2024-08-12 210/week @ 2024-09-23 18/week @ 2024-09-30 9/week @ 2024-10-07

237 downloads per month
Used in bevy_serialization_urdf

MIT license

1MB
2K SLoC

Rust 2K SLoC // 0.1% comments Rusty Object Notation 313 SLoC

bevy_serialization_extras

A library that allows the editing of non-reflect components via wrapper components, and serialization of these components via moonshine-save:

demo_gif.webm

Features

  • Out of the box serialization Through plugins for components
// Component <-> WrapperComponent
.add_plugins(SerializeComponentFor::<AsyncCollider, ColliderFlag>::default())

// AssetHandle <-> WrapperComponent
.add_plugins(SerializeAssetFor::<StandardMaterial, MaterialFlag>::default())

// WrapperComponent -> AssetHandle
.add_plugins(DeserializeAssetFrom::<GeometryFlag, Mesh>::default())

// Query -> Component, 
.add_plugins(SerializeQueryFor::<Linkage, ImpulseJoint, JointFlag>::default())
  • Serialization of groups of enities that compose an asset into their singular asset equivillent, and vice-versa

See: https://github.com/rydb/bevy_serialization_urdf

//Query <-> Asset
.add_plugins(SerializeManyAsOneFor::<LinkQuery, Urdf>::default())
  • Allows edititing unserializable(non-reflect) implementing components through the wrappers that convert to them

    E.G: Edit Rapier's ImpulseJoint through JointFlag

edit_example.png

  • type registration for wrappers through ManagedTypeRegistration trait

  • A visualization util to list serializable/unserializable components(W.I.P)

Usage

For implementations of plugin trait bounds, see /Wrappers

TODO

  • Add a mechanism for updating from old save versions to new save versions as to not break old save files.

Dependencies

~48–85MB
~1.5M SLoC