# Vector3.SmoothDamp

```csharp
static Vector3 SmoothDamp(in Vector3 current, in Vector3 target, ref Vector3 velocity, float smoothTime, float deltaTime)
```

Smoothly move towards the target vector

### Parameters

- `in current` (`Vector3`)
- `in target` (`Vector3`)
- `ref velocity` (`Vector3`)
- `smoothTime` (`float`)
- `deltaTime` (`float`)

### Returns

`Vector3`

Declared in [Vector3](/api/Vector3).
Assembly: `Sandbox.System`.
