Renaming WindowSize (#77)
All checks were successful
Rust Checks / checks (push) Successful in 2m32s

Reviewed-on: fish-canard/border-wars#77
Reviewed-by: Tipragot <contact@tipragot.fr>
This commit is contained in:
Raphaël 2024-03-09 17:53:32 +00:00
parent 6e982a3935
commit d0c33523ce

View file

@ -12,21 +12,21 @@ impl Plugin for ResponsiveScalingPlugin {
} }
} }
/// The default window size. /// The default ui layout size.
#[derive(Resource)] #[derive(Resource)]
pub struct WindowSize(pub Vec2); pub struct UILayoutSize(pub Vec2);
/// Initializes the window size. /// Initializes [UILayoutSize].
pub fn init_window_size(mut command: Commands) { pub fn init_window_size(mut command: Commands) {
command.insert_resource(WindowSize(Vec2::new(1280., 720.))); command.insert_resource(UILayoutSize(Vec2::new(1280., 720.)));
} }
/// Calculates the ui_scale.0 depending on the default screen size /// Calculates the ui_scale.0 depending on the [UILayoutSize]
/// in order to make the screen responsive. /// in order to make the ui layout responsive.
pub fn change_scaling( pub fn change_scaling(
mut ui_scale: ResMut<UiScale>, mut ui_scale: ResMut<UiScale>,
windows: Query<&Window>, windows: Query<&Window>,
size: Res<WindowSize>, size: Res<UILayoutSize>,
) { ) {
let window = windows.get_single().expect("Main window not found"); let window = windows.get_single().expect("Main window not found");
let (a, b) = ( let (a, b) = (