mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 04:33:37 +00:00
correctly set up background color in mobile example (#12384)
# Objective - Since #11165, the button in the mobile example doesn't visually react to touches ## Solution - Correctly set up the background color
This commit is contained in:
parent
879b170f28
commit
40732148da
1 changed files with 14 additions and 10 deletions
|
@ -104,18 +104,22 @@ fn setup_scene(
|
|||
|
||||
// Test ui
|
||||
commands
|
||||
.spawn(ButtonBundle {
|
||||
style: Style {
|
||||
justify_content: JustifyContent::Center,
|
||||
align_items: AlignItems::Center,
|
||||
position_type: PositionType::Absolute,
|
||||
left: Val::Px(50.0),
|
||||
right: Val::Px(50.0),
|
||||
bottom: Val::Px(50.0),
|
||||
.spawn((
|
||||
ButtonBundle {
|
||||
style: Style {
|
||||
justify_content: JustifyContent::Center,
|
||||
align_items: AlignItems::Center,
|
||||
position_type: PositionType::Absolute,
|
||||
left: Val::Px(50.0),
|
||||
right: Val::Px(50.0),
|
||||
bottom: Val::Px(50.0),
|
||||
..default()
|
||||
},
|
||||
image: UiImage::default().with_color(Color::NONE),
|
||||
..default()
|
||||
},
|
||||
..default()
|
||||
})
|
||||
BackgroundColor(Color::WHITE),
|
||||
))
|
||||
.with_children(|b| {
|
||||
b.spawn(
|
||||
TextBundle::from_section(
|
||||
|
|
Loading…
Reference in a new issue