Search Issue Tracker
By Design
Votes
0
Found in
2022.3.54f1
6000.0.30f1
6000.1.0a7
Issue ID
UUM-90169
Regression
No
Visual glitches when using Handles API
Reproduction steps:
1. Open the attached "VisualGlitchTest.zip" project
2. Open the “/Assets/Scenes/SampleScene.unity” Scene
3. In Hierarchy, select “Test Point“ GameObject
4. Observe the GameObject while panning in the Scene view
Expected result: No visual glitches are present
Actual result: Flickering/other graphical glitches are seen
Reproducible with: 2022.3.54f1, 6000.0.30f1, 6000.1.0a7
Reproducible on: M1 Max MacOS 15.1.1
Not reproducible on: No other environment tested
Note: Similar glitches are happening inconsistently in all of the Unity Editor windows
-
Emily60
Nov 30, 2024 13:01
Hi everyone I am Emily Naomi wanna give a big thanks to this wonderful psychic for bringing my husband back to me.. I never really believed in magic spells or anything spiritual but a trusted friend opened my eyes to the truth about life. My marriage was heading to divorce a few months ago. I was so confused and devastated with no clue or help on how to prevent it, till I was introduced to this psychic Priest Ray that did a love spell and broke every spiritual distraction from my marriage. A day later my husband started showing me love and care even better than it used to be, he’s ready to talk things through and find ways for us to stay happy. It’s such a miracle that my marriage can be saved so quickly without stress. You can also contact him for help by email psychicspellshrine@gmail. com
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
- “Readme” Asset is unreadable in the Inspector window when switching Editor Theme to Light
- “NullReferenceException” error thrown when switching Editor Theme to Light if “Unity Version Control” tab is enabled
- A Warning is displayed in the Inspector when a Mesh with any Material is added as a Terrain Detail
- [Android][Vulkan] Memory leak when playing and stopping a video using the Video Player on some devices
- Caret moves by a character when typing "." and any number into 'Grid and Snap' toolbar's input field
Resolution Note:
Hi there!
Thanks for reaching out about this problem.
This is actually a known issue caused by the user code. All drawing functions, including the HandleCap, have to be called only during Repaint event.
Indeed, the last parameter of the function is an event type but see that as a filter that says which event should be treated for that call (repaint or layout), but there is no check that it's actually the current event type.
Just adding in your scripts a check that the current event is a repaint event when drawing handles will fix your bug :)
I would invite you to take a look at the documentation on this method that does it the correct way:
https://docs.unity3d.com/ScriptReference/Handles.SphereHandleCap.html