Skip to content

Commit

Permalink
Adjusting according to review
Browse files Browse the repository at this point in the history
  • Loading branch information
Sirmadeira committed Oct 17, 2024
1 parent a72c0c7 commit a4a9151
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions examples/simple_box/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ impl Plugin for ExampleServerPlugin {
fn build(&self, app: &mut App) {
app.init_resource::<ClientEntityMap>();
app.add_systems(Startup, (init, start_server));
// the physics/FixedUpdates systems that consume inputs should be run in this set.
app.add_systems(FixedUpdate, movement);
app.add_systems(Update, (send_message, handle_connections));
}
Expand Down

0 comments on commit a4a9151

Please sign in to comment.