From fea03e5a27efbebe66e5f1d6f88b6d695cb2bee7 Mon Sep 17 00:00:00 2001 From: newDINO Date: Tue, 18 Nov 2025 12:35:04 +0800 Subject: [PATCH 1/2] fix ssr not working --- crates/bevy_pbr/src/ssr/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/bevy_pbr/src/ssr/mod.rs b/crates/bevy_pbr/src/ssr/mod.rs index 631acf6a5381d..07c1cab77090a 100644 --- a/crates/bevy_pbr/src/ssr/mod.rs +++ b/crates/bevy_pbr/src/ssr/mod.rs @@ -428,7 +428,6 @@ pub fn prepare_ssr_pipelines( With, With, With, - With, ), >, ) { From f97857b384c55e0a999b3200a29cda13aa70d457 Mon Sep 17 00:00:00 2001 From: newDINO Date: Tue, 18 Nov 2025 14:00:20 +0800 Subject: [PATCH 2/2] ssr doc enhance --- crates/bevy_pbr/src/ssr/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/bevy_pbr/src/ssr/mod.rs b/crates/bevy_pbr/src/ssr/mod.rs index 07c1cab77090a..40b84f3d733f7 100644 --- a/crates/bevy_pbr/src/ssr/mod.rs +++ b/crates/bevy_pbr/src/ssr/mod.rs @@ -62,7 +62,8 @@ pub struct ScreenSpaceReflectionsPlugin; /// /// Screen-space reflections currently require deferred rendering in order to /// appear. Therefore, they also need the [`DepthPrepass`] and [`DeferredPrepass`] -/// components, which are inserted automatically. +/// components, which are inserted automatically, +/// but deferred rendering itself is not automatically enabled. /// /// SSR currently performs no roughness filtering for glossy reflections, so /// only very smooth surfaces will reflect objects in screen space. You can