Moves smooth_follow to movement dir (#14249)

# Objective

- Moves the smooth_follow.rs into movement directory in examples
- Fixes #14241

## Solution

- Move the smooth_follow.rs to movement dir in examples.
This commit is contained in:
Sunil Thunga 2024-07-09 23:52:47 +05:30 committed by GitHub
parent 9af2ef740b
commit 5ffdc0c93f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 2 deletions

View file

@ -3080,7 +3080,7 @@ wasm = true
[[example]]
name = "smooth_follow"
path = "examples/math/smooth_follow.rs"
path = "examples/movement/smooth_follow.rs"
doc-scrape-examples = true
[package.metadata.example.smooth_follow]

View file

@ -336,7 +336,7 @@ Example | Description
[Random Sampling](../examples/math/random_sampling.rs) | Demonstrates how to sample random points from mathematical primitives
[Rendering Primitives](../examples/math/render_primitives.rs) | Shows off rendering for all math primitives as both Meshes and Gizmos
[Sampling Primitives](../examples/math/sampling_primitives.rs) | Demonstrates all the primitives which can be sampled.
[Smooth Follow](../examples/math/smooth_follow.rs) | Demonstrates how to make an entity smoothly follow another using interpolation
[Smooth Follow](../examples/movement/smooth_follow.rs) | Demonstrates how to make an entity smoothly follow another using interpolation
## Movement