Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ pub struct PhysicsPlugins {
impl PhysicsPlugins {
/// Creates a [`PhysicsPlugins`] plugin group using the given schedule for running the [`PhysicsSchedule`].
///
/// The default schedule is `PostUpdate`.
/// The default schedule is `FixedPostUpdate`.
pub fn new(schedule: impl ScheduleLabel) -> Self {
Self {
schedule: schedule.intern(),
Expand Down
4 changes: 2 additions & 2 deletions src/sync/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub struct SyncPlugin {
impl SyncPlugin {
/// Creates a [`SyncPlugin`] with the schedule that is used for running the [`PhysicsSchedule`].
///
/// The default schedule is `PostUpdate`.
/// The default schedule is `FixedPostUpdate`.
pub fn new(schedule: impl ScheduleLabel) -> Self {
Self {
schedule: schedule.intern(),
Expand All @@ -50,7 +50,7 @@ impl SyncPlugin {

impl Default for SyncPlugin {
fn default() -> Self {
Self::new(PostUpdate)
Self::new(FixedPostUpdate)
}
}

Expand Down
Loading