fix camera ordering

This commit is contained in:
Aevyrie Roessler 2023-01-29 03:12:56 -08:00
parent 697c57ee1f
commit b40a3f9074
No known key found for this signature in database
GPG Key ID: F975B68AD0BCCF40

View File

@ -13,7 +13,7 @@ impl Plugin for CameraControllerPlugin {
CoreStage::PostUpdate,
SystemSet::new()
.with_system(default_camera_inputs.before(camera_controller))
.with_system(camera_controller.after(TransformSystem::TransformPropagate)),
.with_system(camera_controller.before(TransformSystem::TransformPropagate)),
);
}
}