mirror of
https://github.com/bevyengine/bevy
synced 2024-11-13 00:17:27 +00:00
35 lines
873 B
Rust
35 lines
873 B
Rust
|
//! This example demonstrates how to use the `Camera::viewport_to_world_2d` method.
|
||
|
|
||
|
use bevy::prelude::*;
|
||
|
|
||
|
fn main() {
|
||
|
App::new()
|
||
|
.add_plugins(DefaultPlugins)
|
||
|
.add_systems(Startup, setup)
|
||
|
.add_systems(Update, draw_cursor)
|
||
|
.run();
|
||
|
}
|
||
|
|
||
|
fn draw_cursor(
|
||
|
camera_query: Query<(&Camera, &GlobalTransform)>,
|
||
|
windows: Query<&Window>,
|
||
|
mut gizmos: Gizmos,
|
||
|
) {
|
||
|
let (camera, camera_transform) = camera_query.single();
|
||
|
|
||
|
let Some(cursor_position) = windows.single().cursor_position() else {
|
||
|
return;
|
||
|
};
|
||
|
|
||
|
// Calculate a world position based on the cursor's position.
|
||
|
let Some(point) = camera.viewport_to_world_2d(camera_transform, cursor_position) else {
|
||
|
return;
|
||
|
};
|
||
|
|
||
|
gizmos.circle_2d(point, 10., Color::WHITE);
|
||
|
}
|
||
|
|
||
|
fn setup(mut commands: Commands) {
|
||
|
commands.spawn(Camera2dBundle::default());
|
||
|
}
|