-
What exactly is the length of a fixed update and how can I modify it? .add_systems(( // List of systems running on a regular basis:
fixed_physics,
pre_fixed_logic,
fixed_logic,
post_fixed_logic,
)
.chain()
.in_schedule(CoreSchedule::FixedUpdate)
) |
Beta Was this translation helpful? Give feedback.
Answered by
mockersf
May 13, 2023
Replies: 1 comment 1 reply
-
You can look at the The default duration is 1/60th of a second. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
etzabo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can look at the
fixed_timestep
example to see how to configure it.The default duration is 1/60th of a second.