Skip to content

Commit 0cf67ea

Browse files
hymmsuperdump
andauthored
Update crates/bevy_time/src/lib.rs
Co-authored-by: Robert Swain <[email protected]>
1 parent 565a9a1 commit 0cf67ea

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/bevy_time/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@ fn time_system(
6666
mut has_received_time: Local<bool>,
6767
) {
6868
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.
69+
// TODO: Figure out how to handle this when using pipelined rendering.
7170
if let Ok(new_time) = time_recv.0.try_recv() {
7271
time.update_with_instant(new_time);
7372
*has_received_time = true;

0 commit comments

Comments
 (0)