Search Issue Tracker
Fixed in 2020.2
Votes
0
Found in
2017.4
2018.4.13f1
2020.1
Issue ID
1210118
Regression
No
Graphic Raycaster Blocking Mask is accessible through the Inspector but not through script as its access modifier is "protected"
Reproduction steps:
1. Create a new project
2. Attach Graphic Raycaster component to any GameObject
3. Ensure that "Blocking Mask" can be accessed and changed in the Inspector
4. Create a new script and attach it to the said GameObject
5. Attempt to access GraphicRaycaster.m_blockingMask through script
Expected result: GraphicRaycaster.m_blockingMask can be accessed
Actual result: GraphicRaycaster.m_blockingMask cannot be accessed due to its "protected" access modifier
Reproduced in: 2017.4.36f1, 2018.4.16f1, 2019.2.19f1, 2019.3.0f6, 2020.1.0a20
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
- Shadows are not cast when you first Blit the Shadow map and then set it back to Buffer
- Changes to instanced detail mesh material don't immediately apply
- [uGUI] Vertices retrieved from GetUIVertexStream method cannot be modified when adjusting them through script
- Scroll bar scrolls less in the Package Manager packages than elsewhere when pressing on the empty scroll bar area to scroll
- Undo.RegisterCreatedObjectUndo dirties the scene, but no actual changes to Scene are made
Resolution Note (fix version 2020.2):
Fixed in 2020.2.0a11
Implemented Getter and Setter for Blocking Mask property, so that it can be accessed through script.