| Crates.io | bevy_ui_inspector |
| lib.rs | bevy_ui_inspector |
| version | 0.3.0 |
| created_at | 2024-10-15 13:39:52.228413+00 |
| updated_at | 2024-12-02 20:05:44.843353+00 |
| description | A tool for inspecting bevy ui |
| homepage | |
| repository | https://github.com/mahulst/bevy_ui_inspector |
| max_upload_size | |
| id | 1409464 |
| size | 6,392,016 |
A tool that tries to do what the html / css tools in the chrome dev tools do.
App::new()
.add_plugins((
DefaultPlugins,
UiInpector,
))
.run()
// To make the gizmos work correctly and not be drawn behind the UI.
// Add a builtin bevy IsDefaultUiCamera component to your Camera.
commands.spawn((
Camera3d { ..default() },
Transform::from_xyz(0.0, 0.0, 15.0).looking_at(Vec3::ZERO, Vec3::Y),
IsDefaultUiCamera,
));

| bevy | bevy_ui_inspector |
|---|---|
| 0.15 | 0.3 |
| 0.14 | 0.2 |