Build fix.

This commit is contained in:
Talin 2025-07-16 18:27:27 -07:00
parent 20e7baa2ee
commit 08b19fce59

View File

@ -13,6 +13,8 @@ use bevy_picking::{hover::HoverMap, pointer::PointerId, PickingSystems};
use bevy_reflect::{std_traits::ReflectDefault, Reflect}; use bevy_reflect::{std_traits::ReflectDefault, Reflect};
use bevy_window::{SystemCursorIcon, Window}; use bevy_window::{SystemCursorIcon, Window};
use bevy_winit::cursor::CursorIcon; use bevy_winit::cursor::CursorIcon;
#[cfg(feature = "custom_cursor")]
use bevy_winit::cursor::CustomCursor;
/// A component that specifies the cursor icon to be used when the mouse is not hovering over /// A component that specifies the cursor icon to be used when the mouse is not hovering over
/// any other entity. This is used to set the default cursor icon for the window. /// any other entity. This is used to set the default cursor icon for the window.