# dampingRatio

> The amount by which the spring force is reduced in proportion to the movement speed.

## Definition

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

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

### Remarks

The spring will oscillate with a certain frequency as it attempts to reestablish the desired distance between the objects. The higher the damping ratio, the quicker the oscillation will die down to zero.

Additional Resources: [FixedJoint2D.frequency](/engine/6000.0/script-reference/unityengine/fixedjoint2d/frequency.md).
