Skip to content

Commit

Permalink
Re-add local bool has_received_time in time_system (bevyengine#6357)
Browse files Browse the repository at this point in the history
# Objective

- Fixes bevyengine#6355 

## Solution

- Add the removed local bool from bevyengine#6159
  • Loading branch information
ShinySapphic authored and james7132 committed Oct 28, 2022
1 parent 9a24592 commit e3b82f3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crates/bevy_time/src/lib.rs
Expand Up @@ -81,13 +81,17 @@ fn time_system(
mut time: ResMut<Time>,
update_strategy: Res<TimeUpdateStrategy>,
time_recv: Option<Res<TimeReceiver>>,
mut has_received_time: Local<bool>,
) {
let new_time = if let Some(time_recv) = time_recv {
// TODO: Figure out how to handle this when using pipelined rendering.
if let Ok(new_time) = time_recv.0.try_recv() {
*has_received_time = true;
new_time
} else {
warn!("time_system did not receive the time from the render world! Calculations depending on the time may be incorrect.");
if *has_received_time {
warn!("time_system did not receive the time from the render world! Calculations depending on the time may be incorrect.");
}
Instant::now()
}
} else {
Expand Down

0 comments on commit e3b82f3

Please sign in to comment.