# velocity

> The velocity of the particle, measured in units per second.

## Definition

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

```csharp
public Vector3 velocity { get; set; }
```

### Remarks

This velocity is used for effects that are based on physics. Examples of features that use this type of velocity are the Force module, Gravity, and Start Speed. The system stores this velocity across frames, and reapplies it to the particle position on each simulation step.

The velocity is also used by the [ParticleSystemRenderer](/engine/6000.5/script-reference/unityengine/particlesystemrenderer.md) if *Render Mode* is set to [ParticleSystemRenderMode.Stretch](/engine/6000.5/script-reference/unityengine/particlesystemrendermode/stretch.md).

Additional Resources: [ParticleSystem.Particle.animatedVelocity](/engine/6000.5/script-reference/unityengine/particlesystem/particle/animatedvelocity.md), [ParticleSystem.Particle.totalVelocity](/engine/6000.5/script-reference/unityengine/particlesystem/particle/totalvelocity.md).
