Search Issue Tracker
Fixed
Votes
0
Found in
2021.2.14f1
2021.3
2022.1
2022.2
Issue ID
1419427
Regression
No
[HDRP] Visual Environment Background clouds setting doesn't change when changing via script
How to reproduce:
1. Open the user's attached "BrokenCloudTypeOverride" project
2. Enter the Play Mode in the "OutdoorsScene" Scene
3. Press the "2" key button on the keyboard to change the Visual Environment Background clouds to "Cloud Layer"
Expected result: Background clouds type changes to "Cloud Layer" and clouds become visible in the Scene
Actual result: Background cloud type changes, but visually nothing does
Reproducible with: 12.1.6 (2021.3.1f1), 13.1.8 (2022.1.0f1), 14.0.2 (2022.2.0a11)
Couldn't test with: 7.7.1 (2019.4.38f1), 10.8.1 (2020.3.33f1) (the project isn't compatible)
Note: When the Background clouds type is changed in the Inspector, the problem doesn't occur. However, if the type was changed via script, then the issue will reproduce even changing via Inspector afterward
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
- Crash on D3D12CommonShader::ApplyGpuProgram when attaching material which samples "_UnityFBInput0" to "Full Screen Pass Renderer Feature" Component
- SpeedTree meshes and objects count differs when comparing the numbers in the Player with the Editor
- Model and Prefab Preview icons are not updated after upgrading associated Materials to URP
- Game view is rendered white when viewing the Editor with HDR display and Post Proccesing is enabled on the Main Camera with 2D URP
- UI Builder doesn't update the style sheet when using "Extract inline style" right-click option
Resolution Note:
The volume system in script doesn't work that way. You have to edit the parameter instead of creating a new instance.
Try changing the code in ChangeCloudType.cs to:
if (Input.GetKey(KeyCode.Alpha1))
{
visualEnv.cloudType.value = 0;
}
if (Input.GetKey(KeyCode.Alpha2))
{
visualEnv.cloudType.value = (int)CloudType.CloudLayer;
}
You can find documentation on how to edit volumes at runtime here https://docs.unity3d.com/Packages/com.unity.render-pipelines.high-definition@13.1/manual/Volumes-API.html