https://github.com/bevyengine/bevy/blob/main/examples/reflection/reflection.rs
I am building a library that allows users to leverage Bevy's reflection to save and load resources (among other things) at runtime.
Unfortunately, doing this requires that I erase type information for these Resources.
How would I insert a resource without knowing the underlying type? (insert_resource_by_id?)
How would I retrieve / serialize a resource without knowing the underlying type?
What would resources serialize into ? (Like DynamicComponent)
Any tips are appreciated.