Search Issue Tracker
By Design
Votes
0
Found in
2019.4
2020.3
2020.3.31f1
2021.3
2022.1
2022.2
Issue ID
1423852
Regression
No
RenderFeatures do not affect the Graphics settings when those are instantiated from AssetBundles
Reproduction steps:
1. Open the attached 'customer_project'
2. Go to the 'Window -> Asset Management -> Addressables -> Groups'
3. 'Build -> Clean Build -> All'
4. 'Build -> New Build -> Default Build Script'
5. After building Addressables go to the 'File -> Build Settings'
6. In the Scenes In Builds section make sure that only 'Scenes/LaunchScene' is included
7. Build and Run the Scene
8. Click on the 'LoadScene' button
9. Click on the 'Toggle SSAO' button
Expected result: The Screen Space Ambient Occlusion (SSAO) image effect applied to the Scene
Actual result: The effect doesn't show up
Reproducible with: 7.7.1 (2019.4.38f1), 10.9.0 (2020.3.34f1), 12.1.6 (2021.3.2f1), 13.1.7 (2022.1.0b16), 14.0.2 (2022.2.0a12)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Articulation Body with 'Revolute' Joint Type has erratic behavior when Upper Limit is set to above 360
- WebGL Player fails to render Scene when Terrain with Detail Mesh is added and WebGPU Graphics API is used
- Inconsistent errors are logged when different types are passed into the Query "Q<>" method in UIToolkit and the ancestor VisualElement is null
- Crash on GetMaterialPropertyByIndex when opening a specific Scene
- Discrepancies in the styling are present when using a TSS file instead of a USS file in custom EditorWindow
Resolution Note:
This is closed by design but is noted as a feature request in the meantime there is a workaround for this:
var renderer = UniversalRenderPipeline.asset.scriptableRenderer;
var property = typeof(ScriptableRenderer).GetProperty("rendererFeatures", BindingFlags.NonPublic | BindingFlags.Instance);
List<ScriptableRendererFeature> features = property.GetValue(renderer) as List<ScriptableRendererFeature>;
features[0].SetActive(!features[0].isActive);