Search Issue Tracker
Won't Fix
Votes
0
Found in
6000.0.60f1
6000.2.8f1
6000.3.0b6
6000.4.0a2
Issue ID
UUM-121822
Regression
No
Default Volume Profile property does not get reset when the property is selected and the reset button is pressed
Steps to reproduce:
- Create a new Unity project using the Universal 3D template
- Select the "Assets/Settings/DefaultVolumeProfile.asset" asset in the Project Browser
- Change Bloom "Threshold" property to "222" and select all characters
- Click the burger icon button in the Bloom section and select "Reset"
- Observe the Bloom "Threshold" property
Actual results: The property is not reset to the default value (0.9)
Expected results: The property is reset to the default value (0.9)
Reproducible with versions: 6000.0.60f1, 6000.2.8f1, 6000.3.0b6, 6000.4.0a2
Tested on (OS): MacOS Silicon Sequoia 15.6.1
Notes:
- Does not reproduce on the Global Volume GameObject
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
- [Android] Stage information is not logged when Log Shader Compilation is enabled
- [Vulkan] The memory allocation increases rapidly when there are multiple (three or more) Real-Time Reflection Probes in the Scene
- [macOS] Library folder of the opened project can be deleted which leads to the crash
- “Default Scene” dropdown field contains a spelling mistake “Default Builtin”
- Editor crashes on PPtr<Mesh> after adding Text Mesh and Cloth Components to the same GameObject
Resolution Note:
This occurs when you trigger a component Reset while a field has focus. Here's what happens:
• You type in a field - Unity stores this temporarily in the UI layer only
• While still focused, you click "Reset" in the component menu
• The Reset operation modifies the underlying serialized data
• The field continues displaying your uncommitted UI value
• When you lose focus:
- If you press Enter: Your typed value overwrites the reset data
- If you cancel (Esc/tab away): The reset value is shown
This is expected Unity editor behavior - the UI maintains your uncommitted edits until you explicitly commit or cancel them.