Version: 2019.4
Add a layer to a layerMask
Constraints

Remove a layer from a layerMask

To remove a layer from a layermask, use the logical AND operator on the original layermask and the bitwise complement of the layer to remove it.

originalLayerMask |= ~(1 << layerToRemove);

Additional resources

Add a layer to a layerMask
Constraints