Search Issue Tracker
By Design
Votes
0
Found in [Package]
2020.1
Issue ID
1181410
Regression
No
[UIElements Runtime] Setting an image with UIElements Hover state added to a class doesn't set the image
Reproduction steps:
1. Open "UnityPhysicsExamples.zip" project and "Shop" scene
2. Enter Play mode
3. Hover over UI objects
Expected Result: Images change when hovered
Actual Result: Images don't change
Reproduced with: 2020.1.0a3, 2019.3.0b2
Could not reproduce on, because package doesn't exist on: 2019.2.4f1, 2019.1.14f1, 2018.4.8f1, 2017.4.32f1
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
- GfxDevice::UpdateBufferRanges when running UIBuilder tests
- [Android][BiRP] Depth processing is handled incorrectly on certain Android devices when using 2 camera's
- [APV] Cancelling Display Dialog Error is thrown after Adaptive Probe Volumes tab is open in Lighting Window
- [APV] NullReferenceException is thrown when baking Adaptive Probe Volume for a Terrain with Non-GI Contributing Tree Prototypes and multiple APV objects with different LayerMasks are present on the scene
- Hands are not recognized when using Hololens 2
Resolution Note:
file.uss had wrong code, change:
".shopItem:focus:hover {
background-image: url('/Assets/MagnetFrenzy/Art/box/box_select2.png');
}"
To
".shopItem:hover {
background-image: url('/Assets/MagnetFrenzy/Art/box/box_select2.png');
}"