We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e44caa1 commit 382b8e4Copy full SHA for 382b8e4
src/lib.rs
@@ -40,7 +40,11 @@ impl Plugin for CloudsPlugin {
40
app.insert_resource(CloudsConfig::default())
41
.add_plugins((CloudsComputePlugin, CloudsShaderPlugin))
42
.add_systems(Startup, (clouds_setup, setup_daylight))
43
- .add_systems(Update, (update_skybox_transform, update_camera_matrices));
+ .add_systems(
44
+ PostUpdate,
45
+ (update_skybox_transform, update_camera_matrices)
46
+ .after(TransformSystems::Propagate),
47
+ );
48
#[cfg(feature = "debug")]
49
app.add_systems(EguiPrimaryContextPass, ui_system);
50
}
0 commit comments