bevy_plot icon indicating copy to clipboard operation
bevy_plot copied to clipboard

Almost working with Bevy 0.11.3

Open cessationoftime opened this issue 2 years ago • 0 comments

I almost have this upgraded to Bevy 0.11.3. Compile-time issues are solved, but some runtime problems remain. The UniformComponentPlugin is not generating resources properly in the build step of several plugins, so the problem is systemic. This prevents the BindGroup for the uniform from being created. This is occurring for Markers and Segments at least. Probably other plugins too.

This line fails

            UniformComponentPlugin::<MarkerUniform>::default(),

subsequent query for this resource fails

    mesh2d_uniforms: Res<ComponentUniforms<MarkerUniform>>,

cessationoftime avatar Dec 03 '23 18:12 cessationoftime