4 releases
0.2.2 | Nov 29, 2023 |
---|---|
0.2.1 | Nov 28, 2023 |
0.2.0 | Nov 28, 2023 |
0.1.0 | Nov 27, 2023 |
#1829 in Game dev
33 downloads per month
14KB
205 lines
bevy_serde_macros
This crate lets you serialize specified components and their associated entities using a "list" of components, as well as the marked entities you wish to serialize. The result is that the intersection of marked entities and specified components are serialized.
Though this currently targets bevy ECS only, other aspects of bevy may be added in the future.
See the tests for usage examples (save_game
and load_game
). Currently, the
list of components is specified by a macro that the user must implement
(named execute_with_type_list
in the examples).
Acknowledgments
- The original inspiration was from Herbert "TheBracket" Wolverson's Rust Roguelike Tutorial (Copyright 2019 Herbert Wolverson (DBA Bracket Productions)).
- One of the changes to the tutorial was largely thanks to the addition of
execute_with_type_list!
, with credit to Michael F. Bryan - see code comments for details. - The code from the tutorial relied on some helper functions from specs (Copyright (c) 2017 The Specs Project Developers), which I had to rewrite for Bevy.
- Also thanks to the Bevy community for getting me up to speed on the Bevy ECS.
Dependencies
~9–12MB
~203K SLoC