rustpower 0.4.0

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.min,vm_pu.max
0,0.9,1.1
"""

[world.resources]