Search Issue Tracker
Won't Fix
Votes
0
Found in
2020.3.44f1
2021.3.17f1
2022.2.3f1
2023.1.0a26
Issue ID
UUM-24683
Regression
No
EventType.MouseUp is ignored when used on variable fields
How to reproduce:
1. Open the user-attached “AnimationFPS” project
2. Open the “SampleScene” Scene
3. Select the “Main Camera” GameObject
4. Press on the “Animator” field in the Animation Manager Script Component
5. Open the Console window
6. Notice the printed “dasd” message
7. Press on the numerical value fields e.g: Distance field in Animation Tiers drop-down
Expected result: “dasd” is printed
Actual result: EventType.MouseUp does not work with variable fields
Reproducible with: 2020.3.44f1, 2021.3.17f1, 2022.2.3f1, 2023.1.0a26
Reproduced on: macOS Ventura 13.1 (Intel), Windows 10
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
- [Linux] Package Manager window disappears when adding a package from git URL
- Duplicating an array element in Inspector when there's a scrollbar makes an invisible item at the bottom
- Text in the Profiler events disappears before the event reaches the bottom of the window when changing the height of the Module details pane
- The Text Field of the parameters of the “Layout Element” Component disappears when inserting the “NaN” text
- Mesh Collider stops working and throws an error "doesn’t have Read/Write enabled" in the Development Console when in the Player
Resolution Note:
Hi - Unfortunately we won't be able to support mouse events for OnInspectorGUI due to resource constraints on legacy features. We do encourage users to move on to uitk, which should support the use case described in this ticket:
VisualElement inspectorFoldout = myInspector.Q("Default_Inspector");
RegisterCallback<PointerDown>(() => Do Something)