-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix minor issues with custom_asset example #10337
Conversation
In the same vein, even if |
I may just be confused (if so, please help me out), but I think it is? bevy/crates/bevy_asset/src/loader.rs Line 35 in aaef557
And in the custom_asset example:bevy/examples/asset/custom_asset.rs Line 40 in aaef557
|
Ah, I guess it's rustdoc that expands it then :( Maybe reexporting AsyncRead would be better? |
I had to add |
# Objective - Use bevy's re-exported `AsyncReadExt` so users don't think they need to depend on `futures-lite`. - Fix a funky error text
# Objective - Use bevy's re-exported `AsyncReadExt` so users don't think they need to depend on `futures-lite`. - Fix a funky error text
Objective
AsyncReadExt
so users don't think they need to depend onfutures-lite
.