mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
Re-add local bool has_received_time
in time_system
(#6357)
# Objective - Fixes #6355 ## Solution - Add the removed local bool from #6159
This commit is contained in:
parent
3c13c75036
commit
6aa2dce0d1
1 changed files with 5 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue