2023-04-17 22:23:52 +00:00
|
|
|
//! Simple example demonstrating overflow behavior.
|
|
|
|
|
|
|
|
use bevy::{prelude::*, winit::WinitSettings};
|
|
|
|
|
|
|
|
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())
|
|
|
|
.add_systems(Startup, setup)
|
|
|
|
.run();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn setup(mut commands: Commands, asset_server: Res<AssetServer>) {
|
|
|
|
commands.spawn(Camera2dBundle::default());
|
|
|
|
|
|
|
|
let text_style = TextStyle {
|
|
|
|
font: asset_server.load("fonts/FiraMono-Medium.ttf"),
|
|
|
|
font_size: 20.0,
|
2023-11-03 12:57:38 +00:00
|
|
|
..default()
|
2023-04-17 22:23:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let image = asset_server.load("branding/icon.png");
|
|
|
|
|
|
|
|
commands
|
|
|
|
.spawn(NodeBundle {
|
|
|
|
style: Style {
|
2023-09-19 15:14:46 +00:00
|
|
|
width: Val::Percent(100.),
|
|
|
|
height: Val::Percent(100.),
|
2023-04-17 22:23:52 +00:00
|
|
|
align_items: AlignItems::Center,
|
|
|
|
justify_content: JustifyContent::Center,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
background_color: Color::ANTIQUE_WHITE.into(),
|
|
|
|
..Default::default()
|
|
|
|
})
|
|
|
|
.with_children(|parent| {
|
|
|
|
for overflow in [
|
|
|
|
Overflow::visible(),
|
|
|
|
Overflow::clip_x(),
|
|
|
|
Overflow::clip_y(),
|
|
|
|
Overflow::clip(),
|
|
|
|
] {
|
|
|
|
parent
|
|
|
|
.spawn(NodeBundle {
|
|
|
|
style: Style {
|
|
|
|
flex_direction: FlexDirection::Column,
|
|
|
|
align_items: AlignItems::Center,
|
|
|
|
margin: UiRect::horizontal(Val::Px(25.)),
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
..Default::default()
|
|
|
|
})
|
|
|
|
.with_children(|parent| {
|
|
|
|
let label = format!("{overflow:#?}");
|
|
|
|
parent
|
|
|
|
.spawn(NodeBundle {
|
|
|
|
style: Style {
|
|
|
|
padding: UiRect::all(Val::Px(10.)),
|
|
|
|
margin: UiRect::bottom(Val::Px(25.)),
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
background_color: Color::DARK_GRAY.into(),
|
|
|
|
..Default::default()
|
|
|
|
})
|
|
|
|
.with_children(|parent| {
|
|
|
|
parent.spawn(TextBundle {
|
|
|
|
text: Text::from_section(label, text_style.clone()),
|
|
|
|
..Default::default()
|
|
|
|
});
|
|
|
|
});
|
|
|
|
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(100.),
|
|
|
|
height: Val::Px(100.),
|
2023-04-17 22:23:52 +00:00
|
|
|
padding: UiRect {
|
|
|
|
left: Val::Px(25.),
|
|
|
|
top: Val::Px(25.),
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
overflow,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
background_color: Color::GRAY.into(),
|
|
|
|
..Default::default()
|
|
|
|
})
|
|
|
|
.with_children(|parent| {
|
|
|
|
parent.spawn(ImageBundle {
|
|
|
|
image: UiImage::new(image.clone()),
|
|
|
|
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
|
|
|
min_width: Val::Px(100.),
|
|
|
|
min_height: Val::Px(100.),
|
2023-04-17 22:23:52 +00:00
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
background_color: Color::WHITE.into(),
|
|
|
|
..Default::default()
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|