# operator >>(PhysicsMask, int)

> Bitwise RIGHT-SHIFT operator for PhysicsMask.

## Definition

* **Type:** Operator
* **Namespace:** [Unity.U2D.Physics](/engine/6000.5/script-reference/unity/u2d/physics.md)
* **Assembly:** UnityEngine.PhysicsCore2DModule

```csharp
public static PhysicsMask operator >>(PhysicsMask bitMask, int bitShift)
```

### Parameters

**** (\[PhysicsMask]\(/engine/6000.5/script-reference/unity/u2d/physics/physicsmask)): The PhysicsMask to perform the operation with.**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): The number of bits to shift the bitmask.

### Returns

| Type                                                                            | Description                                 |
| ------------------------------------------------------------------------------- | ------------------------------------------- |
| [PhysicsMask](/engine/6000.5/script-reference/unity/u2d/physics/physicsmask.md) | The bit-wise operation using both BitMasks. |
