Search Issue Tracker
By Design
Votes
0
Found in
2019.4
2019.4.19f1
2020.2
2021.1
2021.2
Issue ID
1311563
Regression
No
Collisons not ignored when Physics2D.SetLayerCollisionMask is set
How to reproduce:
1. Open the user's attached project
2. Enter Play mode
3. Try to walk through a door
Expected results: You're able to walk through the door and wall when the door's trigger is entered because then Physics2D.SetLayerCollisionMask is set to ignore collisions between Player and Environment layers
Actual results: You're not able to walk through the door because when Physics2D.SetLayerCollisionMask is used, the collisions are not ignored
Reproducible with: 2019.4.20f1, 2020.2.5f1, 2021.1.0b7, 2021.2.0a6
Could not test with: 2018.4.32f1 (Errors downgrading)
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
- Articulation Body with 'Revolute' Joint Type has erratic behavior when Upper Limit is set to above 360
- WebGL Player fails to render Scene when Terrain with Detail Mesh is added and WebGPU Graphics API is used
- Inconsistent errors are logged when different types are passed into the Query "Q<>" method in UIToolkit and the ancestor VisualElement is null
- Crash on GetMaterialPropertyByIndex when opening a specific Scene
- Discrepancies in the styling are present when using a TSS file instead of a USS file in custom EditorWindow
Resolution Note:
Changing the layer collision matrix via code only changes new contacts and doesn't go over all existing contacts and re-evaluate them because they would become very expensive on larger projects.
To force re-evaluation of contacts you can use Rigidbody2D.simulated by toggling it off/on in script.