# linearDamping

> A force applied to slow linear movement of any Collider2D in contact with the effector.

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine](/engine/6000.5/script-reference/unityengine.md)
* **Assembly:** UnityEngine.Physics2DModule

```csharp
public float linearDamping { get; set; }
```

### Remarks

Linear damping provides the ability to slow [Collider2D](/engine/6000.5/script-reference/unityengine/collider2d.md) in contact with the effector.  Increasing the linear damping simulates an increasingly viscous fluid making it harder for colliders to move through it.

It is similar to ::Rigidbody2D::linearDamping but is more complex in that damping is applied not only as a function of velocity but also takes into account the [Collider2D](/engine/6000.5/script-reference/unityengine/collider2d.md) submerged area.  The damping force is applied to the center of the submerged area and therefore can generate torque i.e. make the object rotate.
