mirror of
https://github.com/bevyengine/bevy
synced 2025-02-18 06:58:34 +00:00
101 lines
4 KiB
Rust
101 lines
4 KiB
Rust
|
//! 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,
|
||
|
color: Color::WHITE,
|
||
|
};
|
||
|
|
||
|
let image = asset_server.load("branding/icon.png");
|
||
|
|
||
|
commands
|
||
|
.spawn(NodeBundle {
|
||
|
style: Style {
|
||
|
align_items: AlignItems::Center,
|
||
|
justify_content: JustifyContent::Center,
|
||
|
size: Size::width(Val::Percent(100.)),
|
||
|
..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 {
|
||
|
size: Size::all(Val::Px(100.)),
|
||
|
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 {
|
||
|
min_size: Size::all(Val::Px(100.)),
|
||
|
..Default::default()
|
||
|
},
|
||
|
background_color: Color::WHITE.into(),
|
||
|
..Default::default()
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
}
|