Files
bevy/examples/showcase
Willem c981ecd53b Do not use FixedUpdate on breakout (#23709)
# Objective

The aim is to simplify the example somewhat. This also removes the
jitter that some experience when running the example.

Fixes #14239
Fixes #2349

## Solution

Use `Update` instead of `FixedUpdate` schedule.
 
## Testing
```sh
cargo run --example breakout
```
and 

```sh
cargo run --features bevy_debug_stepping --example breakout
```
2026-04-07 20:53:27 +00:00
..