> For the complete documentation index, see [llms.txt](https://fast-studios.gitbook.io/press-e/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fast-studios.gitbook.io/press-e/manual/scripting/interactable/interactable.physicsgrabmode.md).

# Interactable.PhysicsGrabMode

<mark style="color:blue;">public bool</mark> <mark style="color:$primary;">PhysicsGrabMode</mark>;

This bool is **exclusive to the** [**Grab**](/press-e/manual/components/interactable/grab.md) **interaction type**.\
When enabled, grab interaction makes more calculations related to physics, and when disabled it sticks to simple grab mode.

```csharp
public void TogglePhysicsGrab(Interactable interactable)
{
    interactable.PhysicsGrabMode = !interactable.PhysicsGrabMode;
}
```
