#bevy-ui #ui #bevy #game #graphics

bevy_ui_style_builder

实验性的Bevy UI辅助扩展方法

4个版本

0.2.3 2023年2月9日
0.2.2 2023年2月9日
0.2.0 2023年2月9日
0.1.0 2023年2月9日

#49 in #bevy-ui

MIT/Apache

675KB
722

bevy_ui_style_builder

crates.io MIT/Apache 2.0 crates.io

实验性的Bevy UI辅助扩展方法。

支持Bevy 0.9

用法

将依赖项添加到您的项目中

cargo add bevy_ui_style_builder

然后以下示例在窗口中间绘制一个红色矩形

use bevy::prelude::*;
use bevy_ui_style_builder::prelude::*;

fn spawn_example(
    mut commands: Commands,
) {
    commands.spawn(Camera2dBundle::default());
    commands.spawn(
        node()
        .width(Val::Percent(100.0))
        .height(Val::Percent(100.0))
        .justify_content_center()
        .align_items_center()
    ).with_children(|builder| {
        builder.spawn(
            node()
            .width(Val::Px(150.0))
            .height(Val::Px(100.0))
            .background_color(Color::RED)
        );
    });
}

fn main() {
    App::new()
        .add_plugins(DefaultPlugins)
        .add_startup_system(spawn_example)
        .run();
}

examples文件夹中有一个基于Bevy UI示例的更大示例。您可以使用以下命令运行它

cargo run --example ui

依赖项

~35–49MB
~825K SLoC