@@ -30,6 +30,11 @@ members = [
3030 " examples/no_std/*" ,
3131 # Examples of compiling Bevy with automatic reflect type registration for platforms without `inventory` support.
3232 " examples/reflection/auto_register_static" ,
33+ # Examples of large bevy scenes.
34+ " examples/large_scenes/bistro" ,
35+ " examples/large_scenes/caldera_hotel" ,
36+ # Mipmap generator for testing large bevy scenes with mips and texture compression.
37+ " examples/large_scenes/mipmap_generator" ,
3338 # Benchmarks
3439 " benches" ,
3540 # Internal tools that are not published.
@@ -813,14 +818,26 @@ description = "Demonstrates how to use the `Camera::viewport_to_world_2d` method
813818category = " 2D Rendering"
814819wasm = true
815820
821+ [[example ]]
822+ name = " rotate_to_cursor"
823+ path = " examples/2d/rotate_to_cursor.rs"
824+ # Causes an ICE on docs.rs
825+ doc-scrape-examples = false
826+
827+ [package .metadata .example .rotate_to_cursor ]
828+ name = " 2D Rotation to Cursor"
829+ description = " Demonstrates rotating entities in 2D to follow the cursor"
830+ category = " 2D Rendering"
831+ wasm = true
832+
816833[[example ]]
817834name = " rotation"
818835path = " examples/2d/rotation.rs"
819836# Causes an ICE on docs.rs
820837doc-scrape-examples = false
821838
822839[package .metadata .example .rotation ]
823- name = " 2D Rotation"
840+ name = " Generic 2D Rotation"
824841description = " Demonstrates rotating entities in 2D with quaternions"
825842category = " 2D Rendering"
826843wasm = true
@@ -3688,6 +3705,17 @@ description = "Demonstrates dragging and dropping UI nodes"
36883705category = " UI (User Interface)"
36893706wasm = true
36903707
3708+ [[example ]]
3709+ name = " font_query"
3710+ path = " examples/ui/font_query.rs"
3711+ doc-scrape-examples = true
3712+
3713+ [package .metadata .example .font_query ]
3714+ name = " Font Queries"
3715+ description = " Demonstrates font querying"
3716+ category = " UI (User Interface)"
3717+ wasm = true
3718+
36913719[[example ]]
36923720name = " display_and_visibility"
36933721path = " examples/ui/display_and_visibility.rs"
0 commit comments