Bevy Cursor

![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:

Example

```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) { if let Some(position) = cursor.position() { info!("Cursor position: {position:?}"); } else { info!("The cursor is not in any window"); } } ```

Features

Bevy compatible version

| bevy | bevy_cursor | | ---- | ----------- | | 0.11 | 0.1 |