-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
FixedUpdate schedules that take too long enter a cascading failure mode #8543
Copy link
Copy link
Closed
Labels
A-ECSEntities, components, systems, and eventsEntities, components, systems, and eventsA-TimeInvolves time keeping and reportingInvolves time keeping and reportingC-BugAn unexpected or incorrect behaviorAn unexpected or incorrect behavior
Description
Bevy version
0.10
What you did
Run a fixed time schedule that takes longer to complete than the allocated time.
What went wrong
As the schedule took longer than the FixedTime::period, the accumulated time increases.
The next time we need to run the fixed update schedule, we must run it more times in order to catch up.
This puts us even further behind, worsening the problem...
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
A-ECSEntities, components, systems, and eventsEntities, components, systems, and eventsA-TimeInvolves time keeping and reportingInvolves time keeping and reportingC-BugAn unexpected or incorrect behaviorAn unexpected or incorrect behavior