@@ -9,14 +9,12 @@ use bevy_utils::Duration;
99/// [`TimePlugin`](crate::TimePlugin):
1010///
1111/// - [`Time<Real>`](crate::real::Real) tracks real wall-clock time.
12- /// - [`Time<Virtual>`](crate::virt::Virtual) tracks virtual game time that may
13- /// be paused or scaled.
14- /// - [`Time<Fixed>`](crate::fixed::Fixed) tracks fixed timesteps based on
15- /// virtual time.
16- /// - [`Time`] is a generic clock that corresponds to "current" or "default"
17- /// time for systems. It contains [`Time<Virtual>`](crate::virt::Virtual)
18- /// except inside the [`FixedUpdate`](bevy_app::FixedUpdate) schedule when it
19- /// contains [`Time<Fixed>`](crate::fixed::Fixed).
12+ /// - [`Time<Virtual>`](crate::virt::Virtual) tracks virtual game time that may be paused or scaled.
13+ /// - [`Time<Fixed>`](crate::fixed::Fixed) tracks fixed timesteps based on virtual time.
14+ /// - [`Time`] is a generic clock that corresponds to "current" or "default" time for systems. It
15+ /// contains [`Time<Virtual>`](crate::virt::Virtual) except inside the
16+ /// [`FixedUpdate`](bevy_app::FixedUpdate) schedule when it contains
17+ /// [`Time<Fixed>`](crate::fixed::Fixed).
2018///
2119/// A clock tracks the time elapsed since the previous time this clock was
2220/// advanced as [`delta()`](Time::delta) and the total amount of time the clock
@@ -204,7 +202,8 @@ pub struct Time<T: Default = ()> {
204202impl < T : Default > Time < T > {
205203 const DEFAULT_WRAP_SECONDS : u64 = 3600 ; // 1 hour
206204
207- /// Create a new clock from context with [`Self::delta`] and [`Self::elapsed`] starting from zero.
205+ /// Create a new clock from context with [`Self::delta`] and [`Self::elapsed`] starting from
206+ /// zero.
208207 pub fn new_with ( context : T ) -> Self {
209208 Self {
210209 context,
0 commit comments