![Latest Version] ![Bevy Tracking] ![Doc Status] ![Build Status]
Bevy Cursor is a [bevy
] plugin to track informations about the cursor.
The following cursor informations are available via the [CursorInfo
] resource:
2d
is enabled);3d
is enabled);```rust ,norun use bevy::prelude::*; use bevycursor::prelude::*;
fn main() { App::new() .addplugins((DefaultPlugins, CursorInfoPlugin)) .addsystems(Startup, setup) .addsystems(Update, printcursor_position) .run(); }
fn setup(mut commands: Commands) { // A camera is required to compute the world position of the cursor commands.spawn(Camera2dBundle::default()); }
fn printcursorposition(cursor: Res
2d
opt-in the computation of the world position of the cursor.3d
opt-in the computation of the [ray] emitted by the cursor through the camera (disabled by default).| bevy | bevy_cursor | | ---- | ----------- | | 0.11 | 0.1 |