> 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.useconditions.md).

# Interactable.UseConditions

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

Enables **conditions** for this Interactable.\
Set this to `true` if you want the Interactable to **evaluate its Conditions list at runtime**.

```csharp
public Interactable interactable;

public void ActivateConditionAtRuntime()
{
    interactable.UseConditions = true;
}
```
