[Bevy] How can I make this red square be on the bottom instead of being on the top?

Title says everything

pub fn setup(mut commands: Commands, asset_server: Res<AssetServer>) {
    commands.
        spawn(NodeBundle {
            style: Style {
                size: Size {
                    width: Val::Px(50.),
                    height: Val::Px(50.)
                },
                ..default()
            },

            background_color: Color::RED.into(), ..default()
        });
}

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.