bevy/tools
Christopher Durham 644bd5dbc6 Split time functionality into bevy_time (#4187)
# Objective

Reduce the catch-all grab-bag of functionality in bevy_core by minimally splitting off time functionality into bevy_time. Functionality like that provided by #3002 would increase the complexity of bevy_time, so this is a good candidate for pulling into its own unit.

A step in addressing #2931 and splitting bevy_core into more specific locations.

## Solution

Pull the time module of bevy_core into a new crate, bevy_time.

# Migration guide

- Time related types (e.g. `Time`, `Timer`, `Stopwatch`, `FixedTimestep`, etc.) should be imported from `bevy::time::*` rather than `bevy::core::*`.
- If you were adding `CorePlugin` manually, you'll also want to add `TimePlugin` from `bevy::time`.
- The `bevy::core::CorePlugin::Time` system label is replaced with `bevy::time::TimeSystem`.

Co-authored-by: Carter Anderson <mcanders1@gmail.com>
2022-05-26 00:27:18 +00:00
..
build-wasm-example helper tool to build examples in wasm (#4776) 2022-05-17 19:04:08 +00:00
ci simple tool to compare traces between executions (#4628) 2022-05-06 19:29:44 +00:00
spancmp simple tool to compare traces between executions (#4628) 2022-05-06 19:29:44 +00:00
example_showcase.sh Small script fix (#2591) 2021-08-13 21:57:23 +00:00
publish.sh Split time functionality into bevy_time (#4187) 2022-05-26 00:27:18 +00:00