# Objective - Changes the default clear color to match the code block color on Bevy's website. ## Solution - Changed the clear color, updated text in examples to ensure adequate contrast. Inconsistent usage of white text color set to use the default color instead, which is already white. - Additionally, updated the `3d_scene` example to make it look a bit better, and use bevy's branding colors. 
		
			
				
	
	
		
			104 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			4.2 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,
 | 
						|
        ..default()
 | 
						|
    };
 | 
						|
 | 
						|
    let image = asset_server.load("branding/icon.png");
 | 
						|
 | 
						|
    commands
 | 
						|
        .spawn(NodeBundle {
 | 
						|
            style: Style {
 | 
						|
                width: Val::Percent(100.),
 | 
						|
                height: Val::Percent(100.),
 | 
						|
                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 {
 | 
						|
                                    width: Val::Px(100.),
 | 
						|
                                    height: 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_width: Val::Px(100.),
 | 
						|
                                        min_height: Val::Px(100.),
 | 
						|
                                        ..Default::default()
 | 
						|
                                    },
 | 
						|
                                    background_color: Color::WHITE.into(),
 | 
						|
                                    ..Default::default()
 | 
						|
                                });
 | 
						|
                            });
 | 
						|
                    });
 | 
						|
            }
 | 
						|
        });
 | 
						|
}
 |