rustpower 0.4.1

An experimental ECS world snapshot system built on Bevy, featuring structured archetype storage and manifest-based serialization.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[world]
version = "0.1"

[[world.archetypes]]
name = "arch_0"
components = ["vm_pu"]
source = "embed://arch_0"

[world.embed.arch_0]
format = "csv"
data = """
id,vm_pu.max,vm_pu.min
0,1.1,0.9
"""

[world.resources]