We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4569713 commit 4bcf49bCopy full SHA for 4bcf49b
crates/bevy_time/src/timer.rs
@@ -47,7 +47,8 @@ impl Timer {
47
}
48
49
50
- /// Returns `true` if the timer has reached its duration.
+ /// Returns `true` if the timer has reached its duration at least once.
51
+ /// See also [`Timer::just_finished`](Timer::just_finished).
52
///
53
/// # Examples
54
/// ```
@@ -188,6 +189,7 @@ impl Timer {
188
189
/// Advance the timer by `delta` seconds.
190
/// Non repeating timer will clamp at duration.
191
/// Repeating timer will wrap around.
192
+ /// Will not affect paused timers.
193
194
/// See also [`Stopwatch::tick`](Stopwatch::tick).
195
0 commit comments