-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document how to configure FixedUpdate #10564
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Better than before, two nits :)
@@ -71,6 +71,9 @@ pub struct RunFixedUpdateLoop; | |||
/// | |||
/// The exclusive `run_fixed_update_schedule` system runs this schedule. | |||
/// This is run by the [`RunFixedUpdateLoop`] schedule. | |||
/// | |||
/// Frequency of execution is configured by inserting `Time<Fixed>` resource, 64 Hz by default. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we link to the time type with the generic? maybe as two links?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bevy_app
does not depend on bevy_time
. We can only link to docs.rs I think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hah, didn't expect that, but makes sense. I don't think we need to link to it then :)
Co-authored-by: Pascal Hertleif <killercup@gmail.com>
I'll let this sit until Monday if you wanna add more links <3 |
@@ -71,6 +71,9 @@ pub struct RunFixedUpdateLoop; | |||
/// | |||
/// The exclusive `run_fixed_update_schedule` system runs this schedule. | |||
/// This is run by the [`RunFixedUpdateLoop`] schedule. | |||
/// | |||
/// Frequency of execution is configured by inserting `Time<Fixed>` resource, 64 Hz by default. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hah, didn't expect that, but makes sense. I don't think we need to link to it then :)
Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com> Co-authored-by: Pascal Hertleif <killercup@gmail.com>
No description provided.