kgv / bevy_fluent

Bevy plugin for localization using Fluent.
Apache License 2.0
127 stars 17 forks source link

Hot Reloading of Resource Assets #20

Closed zicklag closed 2 years ago

zicklag commented 2 years ago

Because resource assets are separate from the Bundle asset, when a resource asset is hot reloaded, it doesn't update the bundle that depends on it. This makes it a little tricky to figure out how to setup hot reloading for it.

We need a system that will watch for ResourceAsset events and then update the corresponding BundleAsset when they change.

I'm going to work on this, but I wanted to open the issue first.