mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
f3ab38a802
Fixes #7177 --------- Co-authored-by: Rob Parrett <robparrett@gmail.com>
34 lines
873 B
Rust
34 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());
|
|
}
|