You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Objective
- Clean up remaining references to the trait `FromResources`, which was replaced in favor of `FromWorld` during the ECS rework.
## Solution
- Remove the derive macro for `FromResources`
- Change doc references of `FromResources` to `FromWorld`
(this is the first item in #2576)
How can Bevy's documentation be improved?
There are various warnings when building documentation for the bevy crates.
Going through the list:
bevy_app:
FromResources
does not exist (nor does it exist in any other crate, I believe). I think this one is from a refactoring toFromWorld
.WinitPlugin
,DefaultPlugins
, andMinimalPlugins
are all missing because they are in different crates.bevy_ecs:
Bundle::component_id
(type ofcomponent_ids
?)SystemParam
(not imported, needs full path).bevy_pbr and bevy_asset both have bare urls that should be surrounded with <>.
The urls are an easy fix (assuming we want to make them clickable?)
For the refactoring and typos, if that is what those are, that should be easy to fix as well.
The rest of the crates give no errors, so good there.
The different crate plugins are referenced from bevy_app, but are in bevy_internal, which poses an issue.
The text was updated successfully, but these errors were encountered: