-
-
Notifications
You must be signed in to change notification settings - Fork 4k
Use RenderStartup
for all basic cases in bevy_core_pipeline
.
#20002
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fantastic work thanks
render_app | ||
.init_resource::<BlitPipeline>() | ||
.init_resource::<SpecializedRenderPipelines<BlitPipeline>>(); | ||
.allow_ambiguous_resource::<SpecializedRenderPipelines<BlitPipeline>>() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i feel like a lot of "just data" resources like this and configs etc should be allow_ambiguous_resource
. Immutable resources pleaaaaaasseeeeeeeeeeeeee @alice-i-cecile
@alice-i-cecile I have discovered that the culprit is So I think we can move forward merging this PR. |
Objective
Solution
FromWorld
impls into systems.RenderStartup
.Testing
bloom_3d
,auto_exposure
,depth_of_field
,motion_blur
,skybox
,post_processing
, andtonemapping
examples and they all work :)