Examples metadata in Cargo.toml (#4741)
# Objective
- Have information about examples only in one place that can be used for the repo and for the website (and remove the need to keep a list of example to build for wasm in the website 75acb73040/generate-wasm-examples/generate_wasm_examples.sh (L92-L99)
)
## Solution
- Add metadata about examples in `Cargo.toml`
- Build the `examples/README.md` from a template using those metadata. I used tera as the template engine to use the same tech as the website.
- Make CI fail if an example is missing metadata, or if the readme file needs to be updated (the command to update it is displayed in the failed step in CI)
## Remaining To Do
- After the next release with this merged in, the website will be able to be updated to use those metadata too
- I would like to build the examples in wasm and make them available at http://dev-docs.bevyengine.org/ but that will require more design
- https://github.com/bevyengine/bevy-website/issues/299 for other ToDos
Co-authored-by: Readme <github-actions@github.com>
This commit is contained in:
parent
5712583782
commit
f8fa229465
23
.github/workflows/ci.yml
vendored
23
.github/workflows/ci.yml
vendored
@ -162,7 +162,7 @@ jobs:
|
|||||||
|
|
||||||
markdownlint:
|
markdownlint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: check-missing-examples-in-docs
|
needs: check-examples-readme-update-needed
|
||||||
if: always()
|
if: always()
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
@ -261,14 +261,19 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Check that examples are present in both README and Cargo
|
- run: cargo run -p build-example-pages -- check-missing
|
||||||
uses: Weibye/action-internal-link-consistency@1.0.0
|
|
||||||
with:
|
check-examples-readme-update-needed:
|
||||||
source: './examples/'
|
needs: check-missing-examples-in-docs
|
||||||
targets: '[ "./Cargo.toml", "./examples/README.md" ]'
|
runs-on: ubuntu-latest
|
||||||
file-types: '[".rs"]'
|
steps:
|
||||||
exclude-folders: '["./examples/ios"]'
|
- uses: actions/checkout@v3
|
||||||
exclude-files: '[]'
|
- run: cargo run -p build-example-pages -- update
|
||||||
|
- name: Check for modified files
|
||||||
|
run: |
|
||||||
|
echo "if this step fails, run the following command and commit the changed file on your PR."
|
||||||
|
echo " > cargo run -p build-example-pages -- update"
|
||||||
|
git diff --quiet HEAD --
|
||||||
|
|
||||||
check-unused-dependencies:
|
check-unused-dependencies:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
797
Cargo.toml
797
Cargo.toml
File diff suppressed because it is too large
Load Diff
@ -52,11 +52,12 @@ git checkout v0.4.0
|
|||||||
- [Scene](#scene)
|
- [Scene](#scene)
|
||||||
- [Shaders](#shaders)
|
- [Shaders](#shaders)
|
||||||
- [Stress Tests](#stress-tests)
|
- [Stress Tests](#stress-tests)
|
||||||
- [Tests](#tests)
|
|
||||||
- [Tools](#tools)
|
- [Tools](#tools)
|
||||||
- [Transforms](#transforms)
|
- [Transforms](#transforms)
|
||||||
- [UI (User Interface)](#ui-user-interface)
|
- [UI (User Interface)](#ui-user-interface)
|
||||||
- [Window](#window)
|
- [Window](#window)
|
||||||
|
|
||||||
|
- [Tests](#tests)
|
||||||
- [Platform-Specific Examples](#platform-specific-examples)
|
- [Platform-Specific Examples](#platform-specific-examples)
|
||||||
- [Android](#android)
|
- [Android](#android)
|
||||||
- [Setup](#setup)
|
- [Setup](#setup)
|
||||||
@ -76,191 +77,190 @@ git checkout v0.4.0
|
|||||||
<!-- markdownlint-disable-next-line MD026 -->
|
<!-- markdownlint-disable-next-line MD026 -->
|
||||||
## Hello, World!
|
## Hello, World!
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`hello_world` | [`hello_world.rs`](./hello_world.rs) | Runs a minimal example that outputs "hello world"
|
[`hello_world.rs`](./hello_world.rs) | Runs a minimal example that outputs "hello world"
|
||||||
|
|
||||||
# Cross-Platform Examples
|
# Cross-Platform Examples
|
||||||
|
|
||||||
## 2D Rendering
|
## 2D Rendering
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`move_sprite` | [`2d/move_sprite.rs`](./2d/move_sprite.rs) | Changes the transform of a sprite.
|
[2D Rotation](../examples/2d/rotation.rs) | Demonstrates rotating entities in 2D with quaternions
|
||||||
`mesh2d` | [`2d/mesh2d.rs`](./2d/mesh2d.rs) | Renders a 2d mesh
|
[Manual Mesh 2D](../examples/2d/mesh2d_manual.rs) | Renders a custom mesh "manually" with "mid-level" renderer apis
|
||||||
`mesh2d_manual` | [`2d/mesh2d_manual.rs`](./2d/mesh2d_manual.rs) | Renders a custom mesh "manually" with "mid-level" renderer apis.
|
[Mesh 2D](../examples/2d/mesh2d.rs) | Renders a 2d mesh
|
||||||
`mesh2d_vertex_color_texture` | [`2d/mesh2d_vertex_color_texture.rs`](./2d/mesh2d_vertex_color_texture.rs) | Renders a 2d mesh with vertex color attributes.
|
[Mesh 2D With Vertex Colors](../examples/2d/mesh2d_vertex_color_texture.rs) | Renders a 2d mesh with vertex color attributes
|
||||||
`shapes` | [`2d/shapes.rs`](./2d/shapes.rs) | Renders a rectangle, circle, and hexagon
|
[Move Sprite](../examples/2d/move_sprite.rs) | Changes the transform of a sprite
|
||||||
`sprite` | [`2d/sprite.rs`](./2d/sprite.rs) | Renders a sprite
|
[Shapes](../examples/2d/shapes.rs) | Renders a rectangle, circle, and hexagon
|
||||||
`sprite_sheet` | [`2d/sprite_sheet.rs`](./2d/sprite_sheet.rs) | Renders an animated sprite
|
[Sprite](../examples/2d/sprite.rs) | Renders a sprite
|
||||||
`text2d` | [`2d/text2d.rs`](./2d/text2d.rs) | Generates text in 2d
|
[Sprite Flipping](../examples/2d/sprite_flipping.rs) | Renders a sprite flipped along an axis
|
||||||
`sprite_flipping` | [`2d/sprite_flipping.rs`](./2d/sprite_flipping.rs) | Renders a sprite flipped along an axis
|
[Sprite Sheet](../examples/2d/sprite_sheet.rs) | Renders an animated sprite
|
||||||
`texture_atlas` | [`2d/texture_atlas.rs`](./2d/texture_atlas.rs) | Generates a texture atlas (sprite sheet) from individual sprites
|
[Text 2D](../examples/2d/text2d.rs) | Generates text in 2D
|
||||||
`rotation` | [`2d/rotation.rs`](./2d/rotation.rs) | Demonstrates rotating entities in 2D with quaternions
|
[Texture Atlas](../examples/2d/texture_atlas.rs) | Generates a texture atlas (sprite sheet) from individual sprites
|
||||||
`transparency_2d` | [`2d/transparency_2d.rs`](./2d/transparency_2d.rs) | Demonstrates transparency in 2d
|
[Transparency in 2D](../examples/2d/transparency_2d.rs) | Demonstrates transparency in 2d
|
||||||
|
|
||||||
## 3D Rendering
|
## 3D Rendering
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`3d_scene` | [`3d/3d_scene.rs`](./3d/3d_scene.rs) | Simple 3D scene with basic shapes and lighting
|
[3D Scene](../examples/3d/3d_scene.rs) | Simple 3D scene with basic shapes and lighting
|
||||||
`3d_shapes` | [`3d/shapes.rs`](./3d/shapes.rs) | A scene showcasing the built-in 3D shapes
|
[3D Shapes](../examples/3d/shapes.rs) | A scene showcasing the built-in 3D shapes
|
||||||
`lighting` | [`3d/lighting.rs`](./3d/lighting.rs) | Illustrates various lighting options in a simple scene
|
[Lighting](../examples/3d/lighting.rs) | Illustrates various lighting options in a simple scene
|
||||||
`load_gltf` | [`3d/load_gltf.rs`](./3d/load_gltf.rs) | Loads and renders a gltf file as a scene
|
[Load glTF](../examples/3d/load_gltf.rs) | Loads and renders a glTF file as a scene
|
||||||
`msaa` | [`3d/msaa.rs`](./3d/msaa.rs) | Configures MSAA (Multi-Sample Anti-Aliasing) for smoother edges
|
[MSAA](../examples/3d/msaa.rs) | Configures MSAA (Multi-Sample Anti-Aliasing) for smoother edges
|
||||||
`orthographic` | [`3d/orthographic.rs`](./3d/orthographic.rs) | Shows how to create a 3D orthographic view (for isometric-look games or CAD applications)
|
[Orthographic View](../examples/3d/orthographic.rs) | Shows how to create a 3D orthographic view (for isometric-look in games or CAD applications)
|
||||||
`parenting` | [`3d/parenting.rs`](./3d/parenting.rs) | Demonstrates parent->child relationships and relative transformations
|
[Parenting](../examples/3d/parenting.rs) | Demonstrates parent->child relationships and relative transformations
|
||||||
`pbr` | [`3d/pbr.rs`](./3d/pbr.rs) | Demonstrates use of Physically Based Rendering (PBR) properties
|
[Physically Based Rendering](../examples/3d/pbr.rs) | Demonstrates use of Physically Based Rendering (PBR) properties
|
||||||
`render_to_texture` | [`3d/render_to_texture.rs`](./3d/render_to_texture.rs) | Shows how to render to a texture, useful for mirrors, UI, or exporting images
|
[Render to Texture](../examples/3d/render_to_texture.rs) | Shows how to render to a texture, useful for mirrors, UI, or exporting images
|
||||||
`shadow_caster_receiver` | [`3d/shadow_caster_receiver.rs`](./3d/shadow_caster_receiver.rs) | Demonstrates how to prevent meshes from casting/receiving shadows in a 3d scene
|
[Shadow Biases](../examples/3d/shadow_biases.rs) | Demonstrates how shadow biases affect shadows in a 3d scene
|
||||||
`shadow_biases` | [`3d/shadow_biases.rs`](./3d/shadow_biases.rs) | Demonstrates how shadow biases affect shadows in a 3d scene
|
[Shadow Caster and Receiver](../examples/3d/shadow_caster_receiver.rs) | Demonstrates how to prevent meshes from casting/receiving shadows in a 3d scene
|
||||||
`spherical_area_lights` | [`3d/spherical_area_lights.rs`](./3d/spherical_area_lights.rs) | Demonstrates how point light radius values affect light behavior.
|
[Spherical Area Lights](../examples/3d/spherical_area_lights.rs) | Demonstrates how point light radius values affect light behavior
|
||||||
`split_screen` | [`3d/split_screen.rs`](./3d/split_screen.rs) | Demonstrates how to render two cameras to the same window to accomplish "split screen".
|
[Split Screen](../examples/3d/split_screen.rs) | Demonstrates how to render two cameras to the same window to accomplish "split screen"
|
||||||
`texture` | [`3d/texture.rs`](./3d/texture.rs) | Shows configuration of texture materials
|
[Texture](../examples/3d/texture.rs) | Shows configuration of texture materials
|
||||||
`transparency_3d` | [`3d/transparency_3d.rs`](./3d/transparency_3d.rs) | Demonstrates transparency in 3d
|
[Transparency in 3D](../examples/3d/transparency_3d.rs) | Demonstrates transparency in 3d
|
||||||
`two_passes` | [`3d/two_passes.rs`](./3d/two_passes.rs) | Renders two 3d passes to the same window from different perspectives.
|
[Two Passes](../examples/3d/two_passes.rs) | Renders two 3d passes to the same window from different perspectives
|
||||||
`update_gltf_scene` | [`3d/update_gltf_scene.rs`](./3d/update_gltf_scene.rs) | Update a scene from a gltf file, either by spawning the scene as a child of another entity, or by accessing the entities of the scene
|
[Update glTF Scene](../examples/3d/update_gltf_scene.rs) | Update a scene from a glTF file, either by spawning the scene as a child of another entity, or by accessing the entities of the scene
|
||||||
`vertex_colors` | [`3d/vertex_colors.rs`](./3d/vertex_colors.rs) | Shows the use of vertex colors
|
[Vertex Colors](../examples/3d/vertex_colors.rs) | Shows the use of vertex colors
|
||||||
`wireframe` | [`3d/wireframe.rs`](./3d/wireframe.rs) | Showcases wireframe rendering
|
[Wireframe](../examples/3d/wireframe.rs) | Showcases wireframe rendering
|
||||||
|
|
||||||
## Animation
|
## Animation
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`animated_fox` | [`animation/animated_fox.rs`](./animation/animated_fox.rs) | Plays an animation from a skinned glTF.
|
[Animated Fox](../examples/animation/animated_fox.rs) | Plays an animation from a skinned glTF
|
||||||
`animated_transform` | [`animation/animated_transform.rs`](./animation/animated_transform.rs) | Create and play an animation defined by code that operates on the `Transform` component.
|
[Animated Transform](../examples/animation/animated_transform.rs) | Create and play an animation defined by code that operates on the `Transform` component
|
||||||
`custom_skinned_mesh` | [`animation/custom_skinned_mesh.rs`](./animation/custom_skinned_mesh.rs) | Skinned mesh example with mesh and joints data defined in code.
|
[Custom Skinned Mesh](../examples/animation/custom_skinned_mesh.rs) | Skinned mesh example with mesh and joints data defined in code
|
||||||
`gltf_skinned_mesh` | [`animation/gltf_skinned_mesh.rs`](./animation/gltf_skinned_mesh.rs) | Skinned mesh example with mesh and joints data loaded from a glTF file.
|
[glTF Skinned Mesh](../examples/animation/gltf_skinned_mesh.rs) | Skinned mesh example with mesh and joints data loaded from a glTF file
|
||||||
|
|
||||||
## Application
|
## Application
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`custom_loop` | [`app/custom_loop.rs`](./app/custom_loop.rs) | Demonstrates how to create a custom runner (to update an app manually).
|
[Custom Loop](../examples/app/custom_loop.rs) | Demonstrates how to create a custom runner (to update an app manually)
|
||||||
`drag_and_drop` | [`app/drag_and_drop.rs`](./app/drag_and_drop.rs) | An example that shows how to handle drag and drop in an app.
|
[Drag and Drop](../examples/app/drag_and_drop.rs) | An example that shows how to handle drag and drop in an app
|
||||||
`empty` | [`app/empty.rs`](./app/empty.rs) | An empty application (does nothing)
|
[Empty](../examples/app/empty.rs) | An empty application (does nothing)
|
||||||
`empty_defaults` | [`app/empty_defaults.rs`](./app/empty_defaults.rs) | An empty application with default plugins
|
[Empty with Defaults](../examples/app/empty_defaults.rs) | An empty application with default plugins
|
||||||
`headless` | [`app/headless.rs`](./app/headless.rs) | An application that runs without default plugins
|
[Headless](../examples/app/headless.rs) | An application that runs without default plugins
|
||||||
`headless_defaults` | [`app/headless_defaults.rs`](./app/headless_defaults.rs) | An application that runs with default plugins, but without an actual renderer
|
[Headless with Defaults](../examples/app/headless_defaults.rs) | An application that runs with default plugins, but without an actual renderer
|
||||||
`logs` | [`app/logs.rs`](./app/logs.rs) | Illustrate how to use generate log output
|
[Logs](../examples/app/logs.rs) | Illustrate how to use generate log output
|
||||||
`plugin` | [`app/plugin.rs`](./app/plugin.rs) | Demonstrates the creation and registration of a custom plugin
|
[Plugin](../examples/app/plugin.rs) | Demonstrates the creation and registration of a custom plugin
|
||||||
`plugin_group` | [`app/plugin_group.rs`](./app/plugin_group.rs) | Demonstrates the creation and registration of a custom plugin group
|
[Plugin Group](../examples/app/plugin_group.rs) | Demonstrates the creation and registration of a custom plugin group
|
||||||
`return_after_run` | [`app/return_after_run.rs`](./app/return_after_run.rs) | Show how to return to main after the Bevy app has exited
|
[Return after Run](../examples/app/return_after_run.rs) | Show how to return to main after the Bevy app has exited
|
||||||
`thread_pool_resources` | [`app/thread_pool_resources.rs`](./app/thread_pool_resources.rs) | Creates and customizes the internal thread pool
|
[Thread Pool Resources](../examples/app/thread_pool_resources.rs) | Creates and customizes the internal thread pool
|
||||||
`without_winit` | [`app/without_winit.rs`](./app/without_winit.rs) | Create an application without winit (runs single time, no event loop)
|
[Without Winit](../examples/app/without_winit.rs) | Create an application without winit (runs single time, no event loop)
|
||||||
|
|
||||||
## Assets
|
## Assets
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`asset_loading` | [`asset/asset_loading.rs`](./asset/asset_loading.rs) | Demonstrates various methods to load assets
|
[Asset Loading](../examples/asset/asset_loading.rs) | Demonstrates various methods to load assets
|
||||||
`custom_asset` | [`asset/custom_asset.rs`](./asset/custom_asset.rs) | Implements a custom asset loader
|
[Custom Asset](../examples/asset/custom_asset.rs) | Implements a custom asset loader
|
||||||
`custom_asset_io` | [`asset/custom_asset_io.rs`](./asset/custom_asset_io.rs) | Implements a custom asset io loader
|
[Custom Asset IO](../examples/asset/custom_asset_io.rs) | Implements a custom asset io loader
|
||||||
`hot_asset_reloading` | [`asset/hot_asset_reloading.rs`](./asset/hot_asset_reloading.rs) | Demonstrates automatic reloading of assets when modified on disk
|
[Hot Reloading of Assets](../examples/asset/hot_asset_reloading.rs) | Demonstrates automatic reloading of assets when modified on disk
|
||||||
|
|
||||||
## Async Tasks
|
## Async Tasks
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`async_compute` | [`async_tasks/async_compute.rs`](async_tasks/async_compute.rs) | How to use `AsyncComputeTaskPool` to complete longer running tasks
|
[Async Compute](../examples/async_tasks/async_compute.rs) | How to use `AsyncComputeTaskPool` to complete longer running tasks
|
||||||
`external_source_external_thread` | [`async_tasks/external_source_external_thread.rs`](async_tasks/external_source_external_thread.rs) | How to use an external thread to run an infinite task and communicate with a channel
|
[External Source of Data on an External Thread](../examples/async_tasks/external_source_external_thread.rs) | How to use an external thread to run an infinite task and communicate with a channel
|
||||||
|
|
||||||
## Audio
|
## Audio
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`audio` | [`audio/audio.rs`](./audio/audio.rs) | Shows how to load and play an audio file
|
[Audio](../examples/audio/audio.rs) | Shows how to load and play an audio file
|
||||||
`audio_control` | [`audio/audio_control.rs`](./audio/audio_control.rs) | Shows how to load and play an audio file, and control how it's played
|
[Audio Control](../examples/audio/audio_control.rs) | Shows how to load and play an audio file, and control how it's played
|
||||||
|
|
||||||
## Diagnostics
|
## Diagnostics
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`custom_diagnostic` | [`diagnostics/custom_diagnostic.rs`](./diagnostics/custom_diagnostic.rs) | Shows how to create a custom diagnostic
|
[Custom Diagnostic](../examples/diagnostics/custom_diagnostic.rs) | Shows how to create a custom diagnostic
|
||||||
`log_diagnostics` | [`diagnostics/log_diagnostics.rs`](./diagnostics/log_diagnostics.rs) | Add a plugin that logs diagnostics, like frames per second (FPS), to the console
|
[Log Diagnostics](../examples/diagnostics/log_diagnostics.rs) | Add a plugin that logs diagnostics, like frames per second (FPS), to the console
|
||||||
|
|
||||||
## ECS (Entity Component System)
|
## ECS (Entity Component System)
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`ecs_guide` | [`ecs/ecs_guide.rs`](./ecs/ecs_guide.rs) | Full guide to Bevy's ECS
|
[Component Change Detection](../examples/ecs/component_change_detection.rs) | Change detection on components
|
||||||
`component_change_detection` | [`ecs/component_change_detection.rs`](./ecs/component_change_detection.rs) | Change detection on components
|
[Custom Query Parameters](../examples/ecs/custom_query_param.rs) | Groups commonly used compound queries and query filters into a single type
|
||||||
`custom_query_param` | [`ecs/custom_query_param.rs`](./ecs/custom_query_param.rs) | Groups commonly used compound queries and query filters into a single type
|
[ECS Guide](../examples/ecs/ecs_guide.rs) | Full guide to Bevy's ECS
|
||||||
`event` | [`ecs/event.rs`](./ecs/event.rs) | Illustrates event creation, activation, and reception
|
[Event](../examples/ecs/event.rs) | Illustrates event creation, activation, and reception
|
||||||
`fixed_timestep` | [`ecs/fixed_timestep.rs`](./ecs/fixed_timestep.rs) | Shows how to create systems that run every fixed timestep, rather than every tick
|
[Fixed Timestep](../examples/ecs/fixed_timestep.rs) | Shows how to create systems that run every fixed timestep, rather than every tick
|
||||||
`generic_system` | [`ecs/generic_system.rs`](./ecs/generic_system.rs) | Shows how to create systems that can be reused with different types
|
[Generic System](../examples/ecs/generic_system.rs) | Shows how to create systems that can be reused with different types
|
||||||
`hierarchy` | [`ecs/hierarchy.rs`](./ecs/hierarchy.rs) | Creates a hierarchy of parents and children entities
|
[Hierarchy](../examples/ecs/hierarchy.rs) | Creates a hierarchy of parents and children entities
|
||||||
`iter_combinations` | [`ecs/iter_combinations.rs`](./ecs/iter_combinations.rs) | Shows how to iterate over combinations of query results.
|
[Iter Combinations](../examples/ecs/iter_combinations.rs) | Shows how to iterate over combinations of query results
|
||||||
`parallel_query` | [`ecs/parallel_query.rs`](./ecs/parallel_query.rs) | Illustrates parallel queries with `ParallelIterator`
|
[Parallel Query](../examples/ecs/parallel_query.rs) | Illustrates parallel queries with `ParallelIterator`
|
||||||
`removal_detection` | [`ecs/removal_detection.rs`](./ecs/removal_detection.rs) | Query for entities that had a specific component removed in a previous stage during the current frame.
|
[Removal Detection](../examples/ecs/removal_detection.rs) | Query for entities that had a specific component removed in a previous stage during the current frame
|
||||||
`startup_system` | [`ecs/startup_system.rs`](./ecs/startup_system.rs) | Demonstrates a startup system (one that runs once when the app starts up)
|
[Startup System](../examples/ecs/startup_system.rs) | Demonstrates a startup system (one that runs once when the app starts up)
|
||||||
`state` | [`ecs/state.rs`](./ecs/state.rs) | Illustrates how to use States to control transitioning from a Menu state to an InGame state
|
[State](../examples/ecs/state.rs) | Illustrates how to use States to control transitioning from a Menu state to an InGame state
|
||||||
`system_chaining` | [`ecs/system_chaining.rs`](./ecs/system_chaining.rs) | Chain two systems together, specifying a return type in a system (such as `Result`)
|
[System Chaining](../examples/ecs/system_chaining.rs) | Chain two systems together, specifying a return type in a system (such as `Result`)
|
||||||
`system_closure` | [`ecs/system_closure.rs`](./ecs/system_closure.rs) | Show how to use closures as systems, and how to configure `Local` variables by capturing external state
|
[System Closure](../examples/ecs/system_closure.rs) | Show how to use closures as systems, and how to configure `Local` variables by capturing external state
|
||||||
`system_param` | [`ecs/system_param.rs`](./ecs/system_param.rs) | Illustrates creating custom system parameters with `SystemParam`
|
[System Parameter](../examples/ecs/system_param.rs) | Illustrates creating custom system parameters with `SystemParam`
|
||||||
`system_sets` | [`ecs/system_sets.rs`](./ecs/system_sets.rs) | Shows `SystemSet` use along with run criterion
|
[System Sets](../examples/ecs/system_sets.rs) | Shows `SystemSet` use along with run criterion
|
||||||
`timers` | [`ecs/timers.rs`](./ecs/timers.rs) | Illustrates ticking `Timer` resources inside systems and handling their state
|
[Timers](../examples/ecs/timers.rs) | Illustrates ticking `Timer` resources inside systems and handling their state
|
||||||
|
|
||||||
## Games
|
## Games
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`alien_cake_addict` | [`games/alien_cake_addict.rs`](./games/alien_cake_addict.rs) | Eat the cakes. Eat them all. An example 3D game
|
[Alien Cake Addict](../examples/games/alien_cake_addict.rs) | Eat the cakes. Eat them all. An example 3D game
|
||||||
`breakout` | [`games/breakout.rs`](./games/breakout.rs) | An implementation of the classic game "Breakout"
|
[Breakout](../examples/games/breakout.rs) | An implementation of the classic game "Breakout"
|
||||||
`contributors` | [`games/contributors.rs`](./games/contributors.rs) | Displays each contributor as a bouncy bevy-ball!
|
[Contributors](../examples/games/contributors.rs) | Displays each contributor as a bouncy bevy-ball!
|
||||||
`game_menu` | [`games/game_menu.rs`](./games/game_menu.rs) | A simple game menu
|
[Game Menu](../examples/games/game_menu.rs) | A simple game menu
|
||||||
|
|
||||||
## Input
|
## Input
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`char_input_events` | [`input/char_input_events.rs`](./input/char_input_events.rs) | Prints out all chars as they are inputted.
|
[Char Input Events](../examples/input/char_input_events.rs) | Prints out all chars as they are inputted
|
||||||
`gamepad_input` | [`input/gamepad_input.rs`](./input/gamepad_input.rs) | Shows handling of gamepad input, connections, and disconnections
|
[Gamepad Input](../examples/input/gamepad_input.rs) | Shows handling of gamepad input, connections, and disconnections
|
||||||
`gamepad_input_events` | [`input/gamepad_input_events.rs`](./input/gamepad_input_events.rs) | Iterates and prints gamepad input and connection events
|
[Gamepad Input Events](../examples/input/gamepad_input_events.rs) | Iterates and prints gamepad input and connection events
|
||||||
`keyboard_input` | [`input/keyboard_input.rs`](./input/keyboard_input.rs) | Demonstrates handling a key press/release
|
[Keyboard Input](../examples/input/keyboard_input.rs) | Demonstrates handling a key press/release
|
||||||
`keyboard_input_events` | [`input/keyboard_input_events.rs`](./input/keyboard_input_events.rs) | Prints out all keyboard events
|
[Keyboard Input Events](../examples/input/keyboard_input_events.rs) | Prints out all keyboard events
|
||||||
`keyboard_modifiers` | [`input/keyboard_modifiers.rs`](./input/keyboard_modifiers.rs) | Demonstrates using key modifiers (ctrl, shift)
|
[Keyboard Modifiers](../examples/input/keyboard_modifiers.rs) | Demonstrates using key modifiers (ctrl, shift)
|
||||||
`mouse_input` | [`input/mouse_input.rs`](./input/mouse_input.rs) | Demonstrates handling a mouse button press/release
|
[Mouse Grab](../examples/input/mouse_grab.rs) | Demonstrates how to grab the mouse, locking the cursor to the app's screen
|
||||||
`mouse_input_events` | [`input/mouse_input_events.rs`](./input/mouse_input_events.rs) | Prints out all mouse events (buttons, movement, etc.)
|
[Mouse Input](../examples/input/mouse_input.rs) | Demonstrates handling a mouse button press/release
|
||||||
`mouse_grab` | [`input/mouse_grab.rs`](./input/mouse_grab.rs) | Demonstrates how to grab the mouse, locking the cursor to the app's screen
|
[Mouse Input Events](../examples/input/mouse_input_events.rs) | Prints out all mouse events (buttons, movement, etc.)
|
||||||
`touch_input` | [`input/touch_input.rs`](./input/touch_input.rs) | Displays touch presses, releases, and cancels
|
[Touch Input](../examples/input/touch_input.rs) | Displays touch presses, releases, and cancels
|
||||||
`touch_input_events` | [`input/touch_input_events.rs`](./input/touch_input_events.rs) | Prints out all touch inputs
|
[Touch Input Events](../examples/input/touch_input_events.rs) | Prints out all touch inputs
|
||||||
|
|
||||||
## Reflection
|
## Reflection
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`reflection` | [`reflection/reflection.rs`](./reflection/reflection.rs) | Demonstrates how reflection in Bevy provides a way to dynamically interact with Rust types
|
[Generic Reflection](../examples/reflection/generic_reflection.rs) | Registers concrete instances of generic types that may be used with reflection
|
||||||
`generic_reflection` | [`reflection/generic_reflection.rs`](./reflection/generic_reflection.rs) | Registers concrete instances of generic types that may be used with reflection
|
[Reflection](../examples/reflection/reflection.rs) | Demonstrates how reflection in Bevy provides a way to dynamically interact with Rust types
|
||||||
`reflection_types` | [`reflection/reflection_types.rs`](./reflection/reflection_types.rs) | Illustrates the various reflection types available
|
[Reflection Types](../examples/reflection/reflection_types.rs) | Illustrates the various reflection types available
|
||||||
`trait_reflection` | [`reflection/trait_reflection.rs`](./reflection/trait_reflection.rs) | Allows reflection with trait objects
|
[Trait Reflection](../examples/reflection/trait_reflection.rs) | Allows reflection with trait objects
|
||||||
|
|
||||||
## Scene
|
## Scene
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`scene` | [`scene/scene.rs`](./scene/scene.rs) | Demonstrates loading from and saving scenes to files
|
[Scene](../examples/scene/scene.rs) | Demonstrates loading from and saving scenes to files
|
||||||
|
|
||||||
## Shaders
|
## Shaders
|
||||||
|
|
||||||
These examples demonstrate how to implement different shaders in user code.
|
These examples demonstrate how to implement different shaders in user code.
|
||||||
|
|
||||||
A shader in its most common usage is a small program that is run by the GPU per-vertex in a mesh (a vertex shader)
|
A shader in its most common usage is a small program that is run by the GPU per-vertex in a mesh (a vertex shader) or per-affected-screen-fragment (a fragment shader.) The GPU executes these programs in a highly parallel way.
|
||||||
or per-affected-screen-fragment (a fragment shader.) The GPU executes these programs in a highly parallel way.
|
|
||||||
|
|
||||||
There are also compute shaders which are used for more general processing leveraging the GPU’s parallelism.
|
There are also compute shaders which are used for more general processing leveraging the GPU's parallelism.
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`animate_shader` | [`shader/animate_shader.rs`](./shader/animate_shader.rs) | A shader that uses dynamic data like the time since startup.
|
[Animated](../examples/shader/animate_shader.rs) | A shader that uses dynamic data like the time since startup
|
||||||
`compute_shader_game_of_life` | [`shader/compute_shader_game_of_life.rs`](./shader/compute_shader_game_of_life.rs) | A compute shader that simulates Conway's Game of Life.
|
[Compute - Game of Life](../examples/shader/compute_shader_game_of_life.rs) | A compute shader that simulates Conway's Game of Life
|
||||||
`custom_vertex_attribute` | [`shader/custom_vertex_attribute.rs`](./shader/custom_vertex_attribute.rs) | A shader that reads a mesh's custom vertex attribute.
|
[Custom Vertex Attribute](../examples/shader/custom_vertex_attribute.rs) | A shader that reads a mesh's custom vertex attribute
|
||||||
`post_processing` | [`shader/post_processing.rs`](./shader/post_processing.rs) | A custom post processing effect, using two cameras, with one reusing the render texture of the first one.
|
[Instancing](../examples/shader/shader_instancing.rs) | A shader that renders a mesh multiple times in one draw call
|
||||||
`shader_defs` | [`shader/shader_defs.rs`](./shader/shader_defs.rs) | A shader that uses "shaders defs" (a bevy tool to selectively toggle parts of a shader).
|
[Material](../examples/shader/shader_material.rs) | A shader and a material that uses it
|
||||||
`shader_instancing` | [`shader/shader_instancing.rs`](./shader/shader_instancing.rs) | A shader that renders a mesh multiple times in one draw call.
|
[Material - GLSL](../examples/shader/shader_material_glsl.rs) | A shader that uses the GLSL shading language
|
||||||
`shader_material` | [`shader/shader_material.rs`](./shader/shader_material.rs) | A shader and a material that uses it.
|
[Material - Screenspace Texture](../examples/shader/shader_material_screenspace_texture.rs) | A shader that samples a texture with view-independent UV coordinates
|
||||||
`shader_material_glsl` | [`shader/shader_material_glsl.rs`](./shader/shader_material_glsl.rs) | A shader that uses the GLSL shading language.
|
[Post Processing](../examples/shader/post_processing.rs) | A custom post processing effect, using two cameras, with one reusing the render texture of the first one
|
||||||
`shader_material_screenspace_texture` | [`shader/shader_material_screenspace_texture.rs`](./shader/shader_material_screenspace_texture.rs) | A shader that samples a texture with view-independent UV coordinates.
|
[Shader Defs](../examples/shader/shader_defs.rs) | A shader that uses "shaders defs" (a bevy tool to selectively toggle parts of a shader)
|
||||||
|
|
||||||
## Stress Tests
|
## Stress Tests
|
||||||
|
|
||||||
@ -272,58 +272,58 @@ Due to the focus on performance it's recommended to run the stress tests in rele
|
|||||||
cargo run --release --example <example name>
|
cargo run --release --example <example name>
|
||||||
```
|
```
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`bevymark` | [`stress_tests/bevymark.rs`](./stress_tests/bevymark.rs) | A heavy sprite rendering workload to benchmark your system with Bevy
|
[Bevymark](../examples/stress_tests/bevymark.rs) | A heavy sprite rendering workload to benchmark your system with Bevy
|
||||||
`many_cubes` | [`stress_tests/many_cubes.rs`](./stress_tests/many_cubes.rs) | Simple benchmark to test per-entity draw overhead. Run with the `sphere` argument to test frustum culling.
|
[Many Cubes](../examples/stress_tests/many_cubes.rs) | Simple benchmark to test per-entity draw overhead. Run with the `sphere` argument to test frustum culling
|
||||||
`many_foxes` | [`stress_tests/many_foxes.rs`](./stress_tests/many_foxes.rs) | Loads an animated fox model and spawns lots of them. Good for testing skinned mesh performance. Takes an unsigned integer argument for the number of foxes to spawn. Defaults to 1000.
|
[Many Foxes](../examples/stress_tests/many_foxes.rs) | Loads an animated fox model and spawns lots of them. Good for testing skinned mesh performance. Takes an unsigned integer argument for the number of foxes to spawn. Defaults to 1000
|
||||||
`many_lights` | [`stress_tests/many_lights.rs`](./stress_tests/many_lights.rs) | Simple benchmark to test rendering many point lights. Run with `WGPU_SETTINGS_PRIO=webgl2` to restrict to uniform buffers and max 256 lights.
|
[Many Lights](../examples/stress_tests/many_lights.rs) | Simple benchmark to test rendering many point lights. Run with `WGPU_SETTINGS_PRIO=webgl2` to restrict to uniform buffers and max 256 lights
|
||||||
`many_sprites` | [`stress_tests/many_sprites.rs`](./stress_tests/many_sprites.rs) | Displays many sprites in a grid arragement! Used for performance testing.
|
[Many Sprites](../examples/stress_tests/many_sprites.rs) | Displays many sprites in a grid arragement! Used for performance testing
|
||||||
`transform_hierarchy.rs` | [`stress_tests/transform_hierarchy.rs`](./stress_tests/transform_hierarchy.rs) | Various test cases for hierarchy and transform propagation performance
|
[Transform Hierarchy](../examples/stress_tests/transform_hierarchy.rs) | Various test cases for hierarchy and transform propagation performance
|
||||||
|
|
||||||
## Tests
|
|
||||||
|
|
||||||
Example | File | Description
|
|
||||||
--- | --- | ---
|
|
||||||
`how_to_test_systems` | [`../tests/how_to_test_systems.rs`](../tests/how_to_test_systems.rs) | How to test systems with commands, queries or resources
|
|
||||||
|
|
||||||
## Tools
|
## Tools
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`scene_viewer` | [`tools/scene_viewer.rs`](./tools/scene_viewer.rs) | A simple way to view glTF models with Bevy. Just run `cargo run --release --example scene_viewer /path/to/model.gltf#Scene0`, replacing the path as appropriate. With no arguments it will load the FieldHelmet glTF model from the repository assets subdirectory.
|
[Scene Viewer](../examples/tools/scene_viewer.rs) | A simple way to view glTF models with Bevy. Just run `cargo run --release --example scene_viewer /path/to/model.gltf#Scene0`, replacing the path as appropriate. With no arguments it will load the FieldHelmet glTF model from the repository assets subdirectory
|
||||||
|
|
||||||
## Transforms
|
## Transforms
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`3d_rotation` | [`transforms/3d_rotation.rs`](./transforms/3d_rotation.rs) | Illustrates how to (constantly) rotate an object around an axis
|
[3D Rotation](../examples/transforms/3d_rotation.rs) | Illustrates how to (constantly) rotate an object around an axis
|
||||||
`global_vs_local_translation` | [`transforms/global_vs_local_translation.rs`](./transforms/global_vs_local_translation.rs) | Illustrates the difference between direction of a translation in respect to local object or global object Transform.
|
[Global / Local Translation](../examples/transforms/global_vs_local_translation.rs) | Illustrates the difference between direction of a translation in respect to local object or global object Transform
|
||||||
`scale` | [`transforms/scale.rs`](./transforms/scale.rs) | Illustrates how to scale an object in each direction
|
[Scale](../examples/transforms/scale.rs) | Illustrates how to scale an object in each direction
|
||||||
`transform` | [`transforms/transfrom.rs`](./transforms/transform.rs) | Shows multiple transformations of objects
|
[Transform](../examples/transforms/transform.rs) | Shows multiple transformations of objects
|
||||||
`translation` | [`transforms/translation.rs`](./transforms/translation.rs) | Illustrates how to move an object along an axis
|
[Translation](../examples/transforms/translation.rs) | Illustrates how to move an object along an axis
|
||||||
|
|
||||||
## UI (User Interface)
|
## UI (User Interface)
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`button` | [`ui/button.rs`](./ui/button.rs) | Illustrates creating and updating a button
|
[Button](../examples/ui/button.rs) | Illustrates creating and updating a button
|
||||||
`font_atlas_debug` | [`ui/font_atlas_debug.rs`](./ui/font_atlas_debug.rs) | Illustrates how FontAtlases are populated (used to optimize text rendering internally)
|
[Font Atlas Debug](../examples/ui/font_atlas_debug.rs) | Illustrates how FontAtlases are populated (used to optimize text rendering internally)
|
||||||
`text` | [`ui/text.rs`](./ui/text.rs) | Illustrates creating and updating text
|
[Text](../examples/ui/text.rs) | Illustrates creating and updating text
|
||||||
`text_debug` | [`ui/text_debug.rs`](./ui/text_debug.rs) | An example for debugging text layout
|
[Text Debug](../examples/ui/text_debug.rs) | An example for debugging text layout
|
||||||
`transparency_ui` | [`ui/transparency_ui.rs`](./ui/transparency_ui.rs) | Demonstrates transparency for UI
|
[Transparency UI](../examples/ui/transparency_ui.rs) | Demonstrates transparency for UI
|
||||||
`ui` | [`ui/ui.rs`](./ui/ui.rs) | Illustrates various features of Bevy UI
|
[UI](../examples/ui/ui.rs) | Illustrates various features of Bevy UI
|
||||||
|
|
||||||
## Window
|
## Window
|
||||||
|
|
||||||
Example | File | Description
|
Example | Description
|
||||||
--- | --- | ---
|
--- | ---
|
||||||
`clear_color` | [`window/clear_color.rs`](./window/clear_color.rs) | Creates a solid color window
|
[Clear Color](../examples/window/clear_color.rs) | Creates a solid color window
|
||||||
`low_power` | [`window/low_power.rs`](./window/low_power.rs) | Demonstrates settings to reduce power use for bevy applications
|
[Low Power](../examples/window/low_power.rs) | Demonstrates settings to reduce power use for bevy applications
|
||||||
`multiple_windows` | [`window/multiple_windows.rs`](./window/multiple_windows.rs) | Demonstrates creating multiple windows, and rendering to them
|
[Multiple Windows](../examples/window/multiple_windows.rs) | Demonstrates creating multiple windows, and rendering to them
|
||||||
`scale_factor_override` | [`window/scale_factor_override.rs`](./window/scale_factor_override.rs) | Illustrates how to customize the default window settings
|
[Scale Factor Iverride](../examples/window/scale_factor_override.rs) | Illustrates how to customize the default window settings
|
||||||
`transparent_window` | [`window/transparent_window.rs`](./window/transparent_window.rs) | Illustrates making the window transparent and hiding the window decoration
|
[Transparent Window](../examples/window/transparent_window.rs) | Illustrates making the window transparent and hiding the window decoration
|
||||||
`window_settings` | [`window/window_settings.rs`](./window/window_settings.rs) | Demonstrates customizing default window settings
|
[Window Settings](../examples/window/window_settings.rs) | Demonstrates customizing default window settings
|
||||||
|
|
||||||
|
# Tests
|
||||||
|
|
||||||
|
Example | Description
|
||||||
|
--- | ---
|
||||||
|
[How to Test Systems](../tests/how_to_test_systems.rs) | How to test systems with commands, queries or resources
|
||||||
|
|
||||||
# Platform-Specific Examples
|
# Platform-Specific Examples
|
||||||
|
|
||||||
@ -435,13 +435,7 @@ cargo install wasm-bindgen-cli
|
|||||||
### Build & Run
|
### Build & Run
|
||||||
|
|
||||||
Following is an example for `lighting`. For other examples, change the `lighting` in the
|
Following is an example for `lighting`. For other examples, change the `lighting` in the
|
||||||
following command.
|
following commands.
|
||||||
|
|
||||||
```sh
|
|
||||||
cargo run -p build-wasm-example -- lighting
|
|
||||||
```
|
|
||||||
|
|
||||||
This is the same as running
|
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
cargo build --release --example lighting --target wasm32-unknown-unknown
|
cargo build --release --example lighting --target wasm32-unknown-unknown
|
||||||
|
220
examples/README.md.tpl
Normal file
220
examples/README.md.tpl
Normal file
@ -0,0 +1,220 @@
|
|||||||
|
<!-- MD024 - The Headers from the Platform-Specific Examples should be identical -->
|
||||||
|
<!-- markdownlint-disable-file MD024 -->
|
||||||
|
|
||||||
|
# Examples
|
||||||
|
|
||||||
|
These examples demonstrate the main features of Bevy and how to use them.
|
||||||
|
To run an example, use the command `cargo run --example <Example>`, and add the option `--features x11` or `--features wayland` to force the example to run on a specific window compositor, e.g.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cargo run --features wayland --example hello_world
|
||||||
|
```
|
||||||
|
|
||||||
|
**⚠️ Note: for users of releases on crates.io!**
|
||||||
|
|
||||||
|
There are often large differences and incompatible API changes between the latest [crates.io](https://crates.io/crates/bevy) release and the development version of Bevy in the git main branch!
|
||||||
|
|
||||||
|
If you are using a released version of bevy, you need to make sure you are viewing the correct version of the examples!
|
||||||
|
|
||||||
|
- Latest release: [https://github.com/bevyengine/bevy/tree/latest/examples](https://github.com/bevyengine/bevy/tree/latest/examples)
|
||||||
|
- Specific version, such as `0.4`: [https://github.com/bevyengine/bevy/tree/v0.4.0/examples](https://github.com/bevyengine/bevy/tree/v0.4.0/examples)
|
||||||
|
|
||||||
|
When you clone the repo locally to run the examples, use `git checkout` to get the correct version:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# `latest` always points to the newest release
|
||||||
|
git checkout latest
|
||||||
|
# or use a specific version
|
||||||
|
git checkout v0.4.0
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Table of Contents
|
||||||
|
|
||||||
|
- [Examples](#examples)
|
||||||
|
- [Table of Contents](#table-of-contents)
|
||||||
|
- [The Bare Minimum](#the-bare-minimum)
|
||||||
|
- [Hello, World!](#hello-world)
|
||||||
|
- [Cross-Platform Examples](#cross-platform-examples)
|
||||||
|
{% for category, _ in all_examples %} - [{{ category }}](#{{ category | slugify }})
|
||||||
|
{% endfor %}
|
||||||
|
- [Tests](#tests)
|
||||||
|
- [Platform-Specific Examples](#platform-specific-examples)
|
||||||
|
- [Android](#android)
|
||||||
|
- [Setup](#setup)
|
||||||
|
- [Build & Run](#build--run)
|
||||||
|
- [Old phones](#old-phones)
|
||||||
|
- [iOS](#ios)
|
||||||
|
- [Setup](#setup-1)
|
||||||
|
- [Build & Run](#build--run-1)
|
||||||
|
- [WASM](#wasm)
|
||||||
|
- [Setup](#setup-2)
|
||||||
|
- [Build & Run](#build--run-2)
|
||||||
|
- [Loading Assets](#loading-assets)
|
||||||
|
|
||||||
|
# The Bare Minimum
|
||||||
|
|
||||||
|
<!-- MD026 - Hello, World! looks better with the ! -->
|
||||||
|
<!-- markdownlint-disable-next-line MD026 -->
|
||||||
|
## Hello, World!
|
||||||
|
|
||||||
|
Example | Description
|
||||||
|
--- | ---
|
||||||
|
[`hello_world.rs`](./hello_world.rs) | Runs a minimal example that outputs "hello world"
|
||||||
|
|
||||||
|
# Cross-Platform Examples
|
||||||
|
{% for category, details in all_examples %}
|
||||||
|
## {{ category }}
|
||||||
|
|
||||||
|
{% if details.description is string %}{{ details.description }}
|
||||||
|
{% endif %}Example | Description
|
||||||
|
--- | ---
|
||||||
|
{% for example in details.examples %}[{{ example.name }}](../{{ example.path }}) | {{ example.description }}
|
||||||
|
{% endfor %}{% endfor %}
|
||||||
|
# Tests
|
||||||
|
|
||||||
|
Example | Description
|
||||||
|
--- | ---
|
||||||
|
[How to Test Systems](../tests/how_to_test_systems.rs) | How to test systems with commands, queries or resources
|
||||||
|
|
||||||
|
# Platform-Specific Examples
|
||||||
|
|
||||||
|
## Android
|
||||||
|
|
||||||
|
### Setup
|
||||||
|
|
||||||
|
```sh
|
||||||
|
rustup target add aarch64-linux-android armv7-linux-androideabi
|
||||||
|
cargo install cargo-apk
|
||||||
|
```
|
||||||
|
|
||||||
|
The Android SDK must be installed, and the environment variable `ANDROID_SDK_ROOT` set to the root Android `sdk` folder.
|
||||||
|
|
||||||
|
When using `NDK (Side by side)`, the environment variable `ANDROID_NDK_ROOT` must also be set to one of the NDKs in `sdk\ndk\[NDK number]`.
|
||||||
|
|
||||||
|
### Build & Run
|
||||||
|
|
||||||
|
To run on a device setup for Android development, run:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cargo apk run --example android
|
||||||
|
```
|
||||||
|
|
||||||
|
:warning: At this time Bevy does not work in Android Emulator.
|
||||||
|
|
||||||
|
When using Bevy as a library, the following fields must be added to `Cargo.toml`:
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[package.metadata.android]
|
||||||
|
build_targets = ["aarch64-linux-android", "armv7-linux-androideabi"]
|
||||||
|
target_sdk_version = 29
|
||||||
|
min_sdk_version = 16
|
||||||
|
```
|
||||||
|
|
||||||
|
Please reference `cargo-apk` [README](https://crates.io/crates/cargo-apk) for other Android Manifest fields.
|
||||||
|
|
||||||
|
### Old phones
|
||||||
|
|
||||||
|
Bevy by default targets Android API level 29 in its examples which is the <!-- markdown-link-check-disable -->
|
||||||
|
[Play Store's minimum API to upload or update apps](https://developer.android.com/distribute/best-practices/develop/target-sdk). <!-- markdown-link-check-enable -->
|
||||||
|
Users of older phones may want to use an older API when testing.
|
||||||
|
|
||||||
|
To use a different API, the following fields must be updated in Cargo.toml:
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[package.metadata.android]
|
||||||
|
target_sdk_version = >>API<<
|
||||||
|
min_sdk_version = >>API or less<<
|
||||||
|
```
|
||||||
|
|
||||||
|
Example | File | Description
|
||||||
|
--- | --- | ---
|
||||||
|
`android` | [`android/android.rs`](./android/android.rs) | The `3d/3d_scene.rs` example for Android
|
||||||
|
|
||||||
|
## iOS
|
||||||
|
|
||||||
|
### Setup
|
||||||
|
|
||||||
|
You need to install the correct rust targets:
|
||||||
|
|
||||||
|
- `aarch64-apple-ios`: iOS devices
|
||||||
|
- `x86_64-apple-ios`: iOS simulator on x86 processors
|
||||||
|
- `aarch64-apple-ios-sim`: iOS simulator on Apple processors
|
||||||
|
|
||||||
|
```sh
|
||||||
|
rustup target add aarch64-apple-ios x86_64-apple-ios aarch64-apple-ios-sim
|
||||||
|
```
|
||||||
|
|
||||||
|
### Build & Run
|
||||||
|
|
||||||
|
Using bash:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cd examples/ios
|
||||||
|
make run
|
||||||
|
```
|
||||||
|
|
||||||
|
In an ideal world, this will boot up, install and run the app for the first
|
||||||
|
iOS simulator in your `xcrun simctl devices list`. If this fails, you can
|
||||||
|
specify the simulator device UUID via:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
DEVICE_ID=${YOUR_DEVICE_ID} make run
|
||||||
|
```
|
||||||
|
|
||||||
|
If you'd like to see xcode do stuff, you can run
|
||||||
|
|
||||||
|
```sh
|
||||||
|
open bevy_ios_example.xcodeproj/
|
||||||
|
```
|
||||||
|
|
||||||
|
which will open xcode. You then must push the zoom zoom play button and wait
|
||||||
|
for the magic.
|
||||||
|
|
||||||
|
Example | File | Description
|
||||||
|
--- | --- | ---
|
||||||
|
`ios` | [`ios/src/lib.rs`](./ios/src/lib.rs) | The `3d/3d_scene.rs` example for iOS
|
||||||
|
|
||||||
|
## WASM
|
||||||
|
|
||||||
|
### Setup
|
||||||
|
|
||||||
|
```sh
|
||||||
|
rustup target add wasm32-unknown-unknown
|
||||||
|
cargo install wasm-bindgen-cli
|
||||||
|
```
|
||||||
|
|
||||||
|
### Build & Run
|
||||||
|
|
||||||
|
Following is an example for `lighting`. For other examples, change the `lighting` in the
|
||||||
|
following commands.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cargo build --release --example lighting --target wasm32-unknown-unknown
|
||||||
|
wasm-bindgen --out-name wasm_example --out-dir examples/wasm/target --target web target/wasm32-unknown-unknown/release/examples/lighting.wasm
|
||||||
|
```
|
||||||
|
|
||||||
|
The first command will build the example for the wasm target, creating a binary. Then,
|
||||||
|
[wasm-bindgen-cli](https://rustwasm.github.io/wasm-bindgen/reference/cli.html) is used to create
|
||||||
|
javascript bindings to this wasm file, which can be loaded using this
|
||||||
|
[example HTML file](./wasm/index.html).
|
||||||
|
|
||||||
|
Then serve `examples/wasm` directory to browser. i.e.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# cargo install basic-http-server
|
||||||
|
basic-http-server examples/wasm
|
||||||
|
|
||||||
|
# with python
|
||||||
|
python3 -m http.server --directory examples/wasm
|
||||||
|
|
||||||
|
# with ruby
|
||||||
|
ruby -run -ehttpd examples/wasm
|
||||||
|
```
|
||||||
|
|
||||||
|
### Loading Assets
|
||||||
|
|
||||||
|
To load assets, they need to be available in the folder examples/wasm/assets. Cloning this
|
||||||
|
repository will set it up as a symlink on Linux and macOS, but you will need to manually move
|
||||||
|
the assets on Windows.
|
13
tools/build-example-pages/Cargo.toml
Normal file
13
tools/build-example-pages/Cargo.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
[package]
|
||||||
|
name = "build-example-pages"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
description = "handle examples in Bevy"
|
||||||
|
publish = false
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
toml = "0.5"
|
||||||
|
tera = "1.15"
|
||||||
|
serde = { version = "1.0", features = [ "derive" ] }
|
||||||
|
bitflags = "1.3"
|
153
tools/build-example-pages/src/main.rs
Normal file
153
tools/build-example-pages/src/main.rs
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
use std::{cmp::Ordering, collections::HashMap, fs::File};
|
||||||
|
|
||||||
|
use bitflags::bitflags;
|
||||||
|
use serde::Serialize;
|
||||||
|
use tera::{Context, Tera};
|
||||||
|
use toml::Value;
|
||||||
|
|
||||||
|
bitflags! {
|
||||||
|
struct Command: u32 {
|
||||||
|
const CHECK_MISSING = 0b00000001;
|
||||||
|
const UPDATE = 0b00000010;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let what_to_run = match std::env::args().nth(1).as_deref() {
|
||||||
|
Some("check-missing") => Command::CHECK_MISSING,
|
||||||
|
Some("update") => Command::UPDATE,
|
||||||
|
_ => Command::all(),
|
||||||
|
};
|
||||||
|
|
||||||
|
let examples = parse_examples(what_to_run.contains(Command::CHECK_MISSING));
|
||||||
|
|
||||||
|
if what_to_run.contains(Command::UPDATE) {
|
||||||
|
let categories = parse_categories();
|
||||||
|
let examples_by_category: HashMap<String, Category> = examples
|
||||||
|
.into_iter()
|
||||||
|
.fold(HashMap::<String, Vec<Example>>::new(), |mut v, ex| {
|
||||||
|
v.entry(ex.category.clone()).or_default().push(ex);
|
||||||
|
v
|
||||||
|
})
|
||||||
|
.into_iter()
|
||||||
|
.map(|(key, mut examples)| {
|
||||||
|
examples.sort();
|
||||||
|
let description = categories.get(&key).cloned();
|
||||||
|
(
|
||||||
|
key,
|
||||||
|
Category {
|
||||||
|
description,
|
||||||
|
examples,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
let mut context = Context::new();
|
||||||
|
context.insert("all_examples", &examples_by_category);
|
||||||
|
Tera::new("examples/*.md.tpl")
|
||||||
|
.expect("error parsing template")
|
||||||
|
.render_to(
|
||||||
|
"README.md.tpl",
|
||||||
|
&context,
|
||||||
|
File::create("examples/README.md").expect("error creating file"),
|
||||||
|
)
|
||||||
|
.expect("error rendering template");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Serialize, PartialEq, Eq)]
|
||||||
|
struct Category {
|
||||||
|
description: Option<String>,
|
||||||
|
examples: Vec<Example>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Serialize, PartialEq, Eq)]
|
||||||
|
struct Example {
|
||||||
|
technical_name: String,
|
||||||
|
path: String,
|
||||||
|
name: String,
|
||||||
|
description: String,
|
||||||
|
category: String,
|
||||||
|
wasm: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Ord for Example {
|
||||||
|
fn cmp(&self, other: &Self) -> Ordering {
|
||||||
|
match self.category.cmp(&other.category) {
|
||||||
|
Ordering::Equal => self.name.cmp(&other.name),
|
||||||
|
ordering => ordering,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl PartialOrd for Example {
|
||||||
|
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
|
||||||
|
Some(self.cmp(other))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn parse_examples(panic_on_missing: bool) -> Vec<Example> {
|
||||||
|
let manifest_file = std::fs::read_to_string("Cargo.toml").unwrap();
|
||||||
|
let manifest: HashMap<String, Value> = toml::from_str(&manifest_file).unwrap();
|
||||||
|
let metadatas = manifest
|
||||||
|
.get("package")
|
||||||
|
.unwrap()
|
||||||
|
.get("metadata")
|
||||||
|
.as_ref()
|
||||||
|
.unwrap()["example"]
|
||||||
|
.clone();
|
||||||
|
|
||||||
|
manifest["example"]
|
||||||
|
.as_array()
|
||||||
|
.unwrap()
|
||||||
|
.iter()
|
||||||
|
.flat_map(|val| {
|
||||||
|
let technical_name = val["name"].as_str().unwrap().to_string();
|
||||||
|
if panic_on_missing && metadatas.get(&technical_name).is_none() {
|
||||||
|
panic!("Missing metadata for example {}", technical_name);
|
||||||
|
}
|
||||||
|
|
||||||
|
if metadatas
|
||||||
|
.get(&technical_name)
|
||||||
|
.and_then(|metadata| metadata.get("hidden"))
|
||||||
|
.and_then(|hidden| hidden.as_bool())
|
||||||
|
.and_then(|hidden| hidden.then(|| ()))
|
||||||
|
.is_some()
|
||||||
|
{
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
|
||||||
|
metadatas.get(&technical_name).map(|metadata| Example {
|
||||||
|
technical_name,
|
||||||
|
path: val["path"].as_str().unwrap().to_string(),
|
||||||
|
name: metadata["name"].as_str().unwrap().to_string(),
|
||||||
|
description: metadata["description"].as_str().unwrap().to_string(),
|
||||||
|
category: metadata["category"].as_str().unwrap().to_string(),
|
||||||
|
wasm: metadata["wasm"].as_bool().unwrap(),
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.collect()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn parse_categories() -> HashMap<String, String> {
|
||||||
|
let manifest_file = std::fs::read_to_string("Cargo.toml").unwrap();
|
||||||
|
let manifest: HashMap<String, Value> = toml::from_str(&manifest_file).unwrap();
|
||||||
|
manifest
|
||||||
|
.get("package")
|
||||||
|
.unwrap()
|
||||||
|
.get("metadata")
|
||||||
|
.as_ref()
|
||||||
|
.unwrap()["category"]
|
||||||
|
.clone()
|
||||||
|
.as_array()
|
||||||
|
.unwrap()
|
||||||
|
.iter()
|
||||||
|
.map(|v| {
|
||||||
|
(
|
||||||
|
v.get("name").unwrap().as_str().unwrap().to_string(),
|
||||||
|
v.get("description").unwrap().as_str().unwrap().to_string(),
|
||||||
|
)
|
||||||
|
})
|
||||||
|
.collect()
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user