Skip to content

Commit 30c486d

Browse files
committed
Re-enable world inspector
1 parent 2ef5ed5 commit 30c486d

File tree

2 files changed

+25
-26
lines changed

2 files changed

+25
-26
lines changed

Cargo.toml

+5-6
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,12 @@ features = [
8181
all-features = true
8282

8383
[dev-dependencies]
84-
# TEMP - Waiting for crates to update to Bevy 0.15...
8584
# For world inspector; required if "examples_world_inspector" is used.
86-
#bevy-inspector-egui = "0.27"
87-
#bevy_egui = { version = "0.30", default-features = false, features = [
88-
# "manage_clipboard", "open_url"
89-
#] }
90-
#egui = "0.29"
85+
bevy-inspector-egui = "0.28"
86+
bevy_egui = { version = "0.31", default-features = false, features = [
87+
"manage_clipboard", "open_url"
88+
] }
89+
egui = "0.29"
9190

9291
bevy_sprite = "0.15"
9392
bevy_text = "0.15"

run_examples.bat

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
@echo on
22
echo Run all examples
33
REM 3D
4-
cargo r --example firework --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d "
5-
cargo r --example portal --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d "
6-
cargo r --example expr --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d "
7-
cargo r --example spawn --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d "
8-
cargo r --example multicam --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d "
9-
cargo r --example visibility --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d "
10-
cargo r --example random --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d "
11-
cargo r --example spawn_on_command --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d "
12-
cargo r --example activate --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr bevy/bevy_ui bevy/default_font 3d "
13-
cargo r --example force_field --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d "
14-
cargo r --example init --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d "
15-
cargo r --example lifetime --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d "
16-
cargo r --example ordering --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d "
17-
cargo r --example ribbon --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d "
4+
cargo r --example firework --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d examples_world_inspector"
5+
cargo r --example portal --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d examples_world_inspector"
6+
cargo r --example expr --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d examples_world_inspector"
7+
cargo r --example spawn --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d examples_world_inspector"
8+
cargo r --example multicam --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d examples_world_inspector"
9+
cargo r --example visibility --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d examples_world_inspector"
10+
cargo r --example random --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d examples_world_inspector"
11+
cargo r --example spawn_on_command --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d examples_world_inspector"
12+
cargo r --example activate --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr bevy/bevy_ui bevy/default_font 3d examples_world_inspector"
13+
cargo r --example force_field --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d examples_world_inspector"
14+
cargo r --example init --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d examples_world_inspector"
15+
cargo r --example lifetime --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d examples_world_inspector"
16+
cargo r --example ordering --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d examples_world_inspector"
17+
cargo r --example ribbon --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr 3d examples_world_inspector"
1818
REM 3D + PNG
19-
cargo r --example gradient --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr bevy/png 3d "
20-
cargo r --example circle --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr bevy/png 3d "
21-
cargo r --example billboard --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr bevy/png 3d "
22-
cargo r --example worms --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr bevy/png 3d "
23-
cargo r --example instancing --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr bevy/png 3d "
19+
cargo r --example gradient --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr bevy/png 3d examples_world_inspector"
20+
cargo r --example circle --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr bevy/png 3d examples_world_inspector"
21+
cargo r --example billboard --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr bevy/png 3d examples_world_inspector"
22+
cargo r --example worms --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr bevy/png 3d examples_world_inspector"
23+
cargo r --example instancing --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr bevy/png 3d examples_world_inspector"
2424
cargo r --example puffs --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_pbr bevy/bevy_scene bevy/bevy_gltf bevy/bevy_animation bevy/png 3d"
2525
REM 2D
26-
cargo r --example 2d --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_sprite 2d "
26+
cargo r --example 2d --no-default-features --features="bevy/bevy_winit bevy/bevy_window bevy/bevy_sprite 2d examples_world_inspector"

0 commit comments

Comments
 (0)