2023-04-23 17:28:36 +00:00
|
|
|
//! Showcases the [`RelativeCursorPosition`] component, used to check the position of the cursor relative to a UI node.
|
2023-01-16 17:17:45 +00:00
|
|
|
|
2024-01-16 00:39:10 +00:00
|
|
|
use bevy::{
|
|
|
|
prelude::*, render::camera::Viewport, ui::RelativeCursorPosition, winit::WinitSettings,
|
|
|
|
};
|
2023-01-16 17:17:45 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
App::new()
|
|
|
|
.add_plugins(DefaultPlugins)
|
|
|
|
// Only run the app when there is user input. This will significantly reduce CPU/GPU use.
|
|
|
|
.insert_resource(WinitSettings::desktop_app())
|
2023-03-18 01:45:34 +00:00
|
|
|
.add_systems(Startup, setup)
|
|
|
|
.add_systems(Update, relative_cursor_position_system)
|
2023-01-16 17:17:45 +00:00
|
|
|
.run();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn setup(mut commands: Commands, asset_server: Res<AssetServer>) {
|
2024-01-16 00:39:10 +00:00
|
|
|
commands.spawn(Camera2dBundle {
|
|
|
|
camera: Camera {
|
|
|
|
// Cursor position will take the viewport offset into account
|
|
|
|
viewport: Some(Viewport {
|
|
|
|
physical_position: [200, 100].into(),
|
|
|
|
physical_size: [600, 600].into(),
|
|
|
|
..default()
|
|
|
|
}),
|
|
|
|
..default()
|
|
|
|
},
|
|
|
|
..default()
|
|
|
|
});
|
2023-01-16 17:17:45 +00:00
|
|
|
|
|
|
|
commands
|
|
|
|
.spawn(NodeBundle {
|
|
|
|
style: Style {
|
Flatten UI `Style` properties that use `Size` + remove `Size` (#8548)
# Objective
- Simplify API and make authoring styles easier
See:
https://github.com/bevyengine/bevy/issues/8540#issuecomment-1536177102
## Solution
- The `size`, `min_size`, `max_size`, and `gap` properties have been
replaced by `width`, `height`, `min_width`, `min_height`, `max_width`,
`max_height`, `row_gap`, and `column_gap` properties
---
## Changelog
- Flattened `Style` properties that have a `Size` value directly into
`Style`
## Migration Guide
- The `size`, `min_size`, `max_size`, and `gap` properties have been
replaced by the `width`, `height`, `min_width`, `min_height`,
`max_width`, `max_height`, `row_gap`, and `column_gap` properties. Use
the new properties instead.
---------
Co-authored-by: ickshonpe <david.curthoys@googlemail.com>
2023-05-16 01:36:32 +00:00
|
|
|
width: Val::Percent(100.),
|
2023-09-19 15:14:46 +00:00
|
|
|
height: Val::Percent(100.0),
|
2023-01-16 17:17:45 +00:00
|
|
|
align_items: AlignItems::Center,
|
|
|
|
justify_content: JustifyContent::Center,
|
|
|
|
flex_direction: FlexDirection::Column,
|
|
|
|
..default()
|
|
|
|
},
|
|
|
|
..default()
|
|
|
|
})
|
|
|
|
.with_children(|parent| {
|
|
|
|
parent
|
|
|
|
.spawn(NodeBundle {
|
|
|
|
style: Style {
|
Flatten UI `Style` properties that use `Size` + remove `Size` (#8548)
# Objective
- Simplify API and make authoring styles easier
See:
https://github.com/bevyengine/bevy/issues/8540#issuecomment-1536177102
## Solution
- The `size`, `min_size`, `max_size`, and `gap` properties have been
replaced by `width`, `height`, `min_width`, `min_height`, `max_width`,
`max_height`, `row_gap`, and `column_gap` properties
---
## Changelog
- Flattened `Style` properties that have a `Size` value directly into
`Style`
## Migration Guide
- The `size`, `min_size`, `max_size`, and `gap` properties have been
replaced by the `width`, `height`, `min_width`, `min_height`,
`max_width`, `max_height`, `row_gap`, and `column_gap` properties. Use
the new properties instead.
---------
Co-authored-by: ickshonpe <david.curthoys@googlemail.com>
2023-05-16 01:36:32 +00:00
|
|
|
width: Val::Px(250.),
|
|
|
|
height: Val::Px(250.),
|
2023-02-11 23:07:16 +00:00
|
|
|
margin: UiRect::bottom(Val::Px(15.)),
|
2023-01-16 17:17:45 +00:00
|
|
|
..default()
|
|
|
|
},
|
2024-02-24 21:35:32 +00:00
|
|
|
background_color: LegacyColor::rgb(235., 35., 12.).into(),
|
2023-01-16 17:17:45 +00:00
|
|
|
..default()
|
|
|
|
})
|
|
|
|
.insert(RelativeCursorPosition::default());
|
|
|
|
|
|
|
|
parent.spawn(TextBundle {
|
|
|
|
text: Text::from_section(
|
|
|
|
"(0.0, 0.0)",
|
|
|
|
TextStyle {
|
|
|
|
font: asset_server.load("fonts/FiraSans-Bold.ttf"),
|
|
|
|
font_size: 40.0,
|
2024-02-24 21:35:32 +00:00
|
|
|
color: LegacyColor::rgb(0.9, 0.9, 0.9),
|
2023-01-16 17:17:45 +00:00
|
|
|
},
|
|
|
|
),
|
|
|
|
..default()
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This systems polls the relative cursor position and displays its value in a text component.
|
|
|
|
fn relative_cursor_position_system(
|
|
|
|
relative_cursor_position_query: Query<&RelativeCursorPosition>,
|
|
|
|
mut output_query: Query<&mut Text>,
|
|
|
|
) {
|
|
|
|
let relative_cursor_position = relative_cursor_position_query.single();
|
|
|
|
|
|
|
|
let mut output = output_query.single_mut();
|
|
|
|
|
|
|
|
output.sections[0].value =
|
|
|
|
if let Some(relative_cursor_position) = relative_cursor_position.normalized {
|
|
|
|
format!(
|
|
|
|
"({:.1}, {:.1})",
|
|
|
|
relative_cursor_position.x, relative_cursor_position.y
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
"unknown".to_string()
|
|
|
|
};
|
|
|
|
|
|
|
|
output.sections[0].style.color = if relative_cursor_position.mouse_over() {
|
2024-02-24 21:35:32 +00:00
|
|
|
LegacyColor::rgb(0.1, 0.9, 0.1)
|
2023-01-16 17:17:45 +00:00
|
|
|
} else {
|
2024-02-24 21:35:32 +00:00
|
|
|
LegacyColor::rgb(0.9, 0.1, 0.1)
|
2023-01-16 17:17:45 +00:00
|
|
|
};
|
|
|
|
}
|