> 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/interaction-manager/interactionmanager.throwablekey.md).

# InteractionManager.throwableKey

Controls the key used to **throw** a Grab-type interactable.<br>

To change it via script:

```csharp
void Start()
{
    ChangeKey(KeyCode.A);
}

void ChangeKey(KeyCode newKey)
{
    InteractionManager.singleton.throwableKey = newKey;
}
```
