update bevy 0.11 - fix compile errors

This commit is contained in:
johnny-smitherson
2023-10-23 16:21:07 +00:00
parent 82416e3ca6
commit 780ba4a216
20 changed files with 148 additions and 108 deletions

View File

@@ -4,7 +4,7 @@ use crate::physics::PhysicsState;
use crate::GraphicsManager;
use bevy::prelude::*;
// use bevy::render::render_resource::RenderPipelineDescriptor;
use bevy_egui::EguiContext;
use bevy_egui::EguiContexts;
pub trait TestbedPlugin {
fn init_plugin(&mut self);
@@ -31,7 +31,7 @@ pub trait TestbedPlugin {
);
fn update_ui(
&mut self,
ui_context: &EguiContext,
ui_context: &EguiContexts,
harness: &mut Harness,
graphics: &mut GraphicsManager,
commands: &mut Commands,