# ApplyLinearImpulseToCenter(Vector2, bool)

> Apply an impulse to the center of mass. This immediately modifies the velocity. This should be used for one-shot impulses. If you need a steady force, use a force instead, which will work better with the sub-stepping solver.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine.LowLevelPhysics2D](/engine/6000.3/script-reference/unityengine/lowlevelphysics2d.md)
* **Assembly:** UnityEngine.Physics2DModule

```csharp
public void ApplyLinearImpulseToCenter(Vector2 impulse, bool wake = true)
```

### Parameters

**** (\[Vector2]\(/engine/6000.3/script-reference/unityengine/vector2)): The world impulse vector, usually in N"s or kg"m/s.**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): Should the body be woken up.
