Search Issue Tracker
By Design
Votes
0
Found in
2019.2.0a1
2019.2.0b6
2019.3.0a1
Issue ID
1164455
Regression
Yes
[UIElements]Mouse events cannot be taken out of VisualElement.layout when using transform
How to reproduce:
1. Open user-supplied project
2. Open "BugReport" from the Menu tab > TransformBoundWindow
3. Move the mouse inside layout and try to go on the green layout
Expected result: Mouse moves all around the "Bounding Box"
Actual result: Mouse events cannot be taken outside the brown square (VisualElement.layout)
Reproducible with: 2019.2.0b6, 2019.3.0a6
Not reproducable with: 2017.4.29f1, 2018.4.2f1, 2019.1.7f1
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
- Search: Inspector section icon is less sharp/more pixelated than other editor icons
- Search description string is always truncated
- [VFX] When Grouped Nodes are converted to Subgraph Operator resulting Graph Node is not included in the Group
- Search window icons are less sharp/more pixelated than other editor icons
- The Inspector can be covered when scaling the horizontal separator bar
Resolution Note (2019.3.X):
The problem reported happens because of a picking optimization which limits picking to the bounding box of the visual element (the union of the element enclosing rect and all of its children bounding box).
It worked in previous versions because the user is overriding ContainsPoint() so that it returns true outside the element enclosing rect. However, it now never gets called because we use bounding boxes as a first test for picking. This test is not overridable by users.
Since the user wants to draw and pick outside the MyIMGUIContainer element, I suggest this element be made as large as the enclosing window.