We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 565a9a1 commit 0cf67eaCopy full SHA for 0cf67ea
crates/bevy_time/src/lib.rs
@@ -66,8 +66,7 @@ fn time_system(
66
mut has_received_time: Local<bool>,
67
) {
68
if let Some(time_recv) = time_recv {
69
- // TODO: delay checking channel on start by 2 frames when pipelined rendering
70
- // is enabled. This is to make sure we always read the N-2 frame's time.
+ // TODO: Figure out how to handle this when using pipelined rendering.
71
if let Ok(new_time) = time_recv.0.try_recv() {
72
time.update_with_instant(new_time);
73
*has_received_time = true;
0 commit comments