diff options
| author | johnny-smitherson <127537716+johnny-smitherson@users.noreply.github.com> | 2023-10-23 16:21:07 +0000 |
|---|---|---|
| committer | johnny-smitherson <127537716+johnny-smitherson@users.noreply.github.com> | 2023-10-23 16:39:52 +0000 |
| commit | 780ba4a216aa9ef68d7f10db4a2b67b866699f43 (patch) | |
| tree | f9be0e8ae1134f7ee6139eb34c39aa2c2d6a21aa /src_testbed/plugin.rs | |
| parent | 82416e3ca66dcdc34c0f350cec570ef1019a199f (diff) | |
| download | rapier-780ba4a216aa9ef68d7f10db4a2b67b866699f43.tar.gz rapier-780ba4a216aa9ef68d7f10db4a2b67b866699f43.tar.bz2 rapier-780ba4a216aa9ef68d7f10db4a2b67b866699f43.zip | |
update bevy 0.11 - fix compile errors
Diffstat (limited to 'src_testbed/plugin.rs')
| -rw-r--r-- | src_testbed/plugin.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src_testbed/plugin.rs b/src_testbed/plugin.rs index 6eaf09e..7f19aa9 100644 --- a/src_testbed/plugin.rs +++ b/src_testbed/plugin.rs @@ -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, |
