bevy_web_asset icon indicating copy to clipboard operation
bevy_web_asset copied to clipboard

Bevy asset loader that transparently supports loading over http(s)

Results 5 bevy_web_asset issues
Sort by recently updated
recently updated
newest added

It's happening because the filesystem watcher implementation in bevy tries to downcast the asset io to FileAssetIO. Since we're wrapping it, that downcast fails, and nothing happens. Bevy issue: https://github.com/bevyengine/bevy/issues/1414

bug

Servers like the osm tile servers require a user agent to be able to rate limit bots and apps

Currently, if the response is a http error, we just blindly pass the payload on to the asset loader, which will most likely fail. On certain http error codes it...

enhancement

When the user has a poor connection and the server can't be reached, we just warn and report the asset as `AssetIoError::NotFound`. However, it probably makes sense to retry if...

enhancement
good first issue

### Bug I am getting this error when trying to load more than one web asset. ``` ERROR bevy_asset::server: Encountered an I/O error while loading asset: unexpected status code 500...