Skip to content

Commit 562acd2

Browse files
committed
move to large_scenes
1 parent 0e96bad commit 562acd2

File tree

4 files changed

+18
-13
lines changed

4 files changed

+18
-13
lines changed

Cargo.toml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ members = [
3333
# Examples of large bevy scenes.
3434
"examples/large_scenes/bistro",
3535
"examples/large_scenes/caldera_hotel",
36+
"examples/large_scenes/bevy_city",
3637
# Mipmap generator for testing large bevy scenes with mips and texture compression.
3738
"examples/large_scenes/mipmap_generator",
3839
# Benchmarks
@@ -3412,19 +3413,6 @@ description = "A heavy 3D cube rendering workload to benchmark your system with
34123413
category = "Stress Tests"
34133414
wasm = true
34143415

3415-
[[example]]
3416-
name = "bevy_city"
3417-
path = "examples/stress_tests/bevy_city.rs"
3418-
# Causes an ICE on docs.rs
3419-
doc-scrape-examples = false
3420-
required-features = ["https", "free_camera", "experimental_bevy_feathers", "bevy_dev_tools"]
3421-
3422-
[package.metadata.example.bevy_city]
3423-
name = "Bevy City"
3424-
description = "A procedurally generated city that stresses rendering and ecs at the same time"
3425-
category = "Stress Tests"
3426-
wasm = true
3427-
34283416
[[example]]
34293417
name = "many_animated_sprites"
34303418
path = "examples/stress_tests/many_animated_sprites.rs"
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[package]
2+
name = "bevy_city"
3+
version = "0.1.0"
4+
edition = "2024"
5+
publish = false
6+
license = "MIT OR Apache-2.0"
7+
8+
[dependencies]
9+
bevy = { path = "../../../", features = [
10+
"https",
11+
"free_camera",
12+
"bevy_dev_tools",
13+
"experimental_bevy_feathers"
14+
] }
15+
16+
argh = "0.1"
17+
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)