From 39cf863edfd13eb6b738a6233d5e04356a399493 Mon Sep 17 00:00:00 2001 From: IceSentry Date: Wed, 30 Aug 2023 21:27:08 -0400 Subject: [PATCH] yeet bevy internals --- examples/input/gpu_picking.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/input/gpu_picking.rs b/examples/input/gpu_picking.rs index 3493ecdfe33b16..98be8ac490455b 100644 --- a/examples/input/gpu_picking.rs +++ b/examples/input/gpu_picking.rs @@ -3,8 +3,8 @@ //! Gpu picking is a way to generate a texture of all the rendered entities and //! use this texture to determine exactly which entity is under the mouse. -use bevy::prelude::*; -use bevy_internal::{ +use bevy::{ + prelude::*, reflect::{TypePath, TypeUuid}, render::{ picking::{GpuPickingCamera, GpuPickingMesh, GpuPickingPlugin},