Skip to content

Commit

Permalink
Improve example description
Browse files Browse the repository at this point in the history
Co-Authored-By: Alice Cecile <alice.i.cecile@gmail.com>
  • Loading branch information
lynn-lumen and alice-i-cecile committed Mar 21, 2024
1 parent d8ff203 commit 6b7a656
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ doc-scrape-examples = true

[package.metadata.example.color_animation]
name = "Color animation"
description = "Bezier curve example showing squares changing colors using different color spaces"
description = "Demonstrates how to animate colors using mixing and splines in different color spaces"
category = "Animation"
wasm = true

Expand Down
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ Example | Description
[Animated Fox](../examples/animation/animated_fox.rs) | Plays an animation from a skinned glTF
[Animated Transform](../examples/animation/animated_transform.rs) | Create and play an animation defined by code that operates on the `Transform` component
[Animation Graph](../examples/animation/animation_graph.rs) | Blends multiple animations together with a graph
[Color animation](../examples/animation/color_animation.rs) | Bezier curve example showing squares changing colors using different color spaces
[Color animation](../examples/animation/color_animation.rs) | Demonstrates how to animate colors using mixing and splines in different color spaces
[Cubic Curve](../examples/animation/cubic_curve.rs) | Bezier curve example showing a cube following a cubic curve
[Custom Skinned Mesh](../examples/animation/custom_skinned_mesh.rs) | Skinned mesh example with mesh and joints data defined in code
[Morph Targets](../examples/animation/morph_targets.rs) | Plays an animation from a glTF file with meshes with morph targets
Expand Down
2 changes: 1 addition & 1 deletion examples/animation/color_animation.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! Documents how to animate colors in different color spaces.
//! Demonstrates how to animate colors in different color spaces using mixing and splines.

use bevy::{
math::cubic_splines::{CubicCurve, Point},
Expand Down

0 comments on commit 6b7a656

Please sign in to comment.