# accelerationSpeed

> Controls how quickly the SceneView camera accelerates while it moves.

## Definition

* **Type:** Property
* **Namespace:** [UnityEditor](/engine/6000.5/script-reference/unityeditor.md)
* **Assembly:** UnityEditor.CoreModule

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

### Remarks

This value sets the rate the camera's speed increases when [SceneView.CameraSettings.accelerationEnabled](/engine/6000.5/script-reference/unityeditor/sceneview/camerasettings/accelerationenabled.md) is on. The camera's movement starts at the base [SceneView.CameraSettings.speed](/engine/6000.5/script-reference/unityeditor/sceneview/camerasettings/speed.md), and then increases over the duration of the movement according to this setting.

A higher value causes the camera to reach its maximum speed more quickly, which is useful for traversing long distances. A lower value provides a more gradual and subtle increase in speed, allowing for finer control over short movements.
