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
- [Vulkan] Crash on with multiple stack traces when rendering large Terrain with specific hardware
- Crash on SkinnedMeshRendererManager when interacting with a prefab generated with uncombined meshes using Synty Sidekick Character Creator
- Crash on folly::detail::safe_assert_terminate_v when updating the Meta XR SDK Packages
- The text font falls back on a different font depending on the fallback font used
- Template is opened in Isolation when opening it in Context and users Save the UI Document when prompted to do so in UI Builder
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.