> 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/enums.md).

# Enums

## InteractMode

```csharp
public enum InteractMode
{
    UnityEvent = 1,
    Hold = 2,
    Grab = 3,
    Drag = 4,
    Inspection = 5
}
```

## LogicalJoin

```csharp
public enum LogicalJoin
{
    And,
    Or
}
```

## ConditionOperator

```csharp
public enum ConditionOperator
{
    [InspectorName("=")] Equal,
    [InspectorName("!=")] NotEqual,
    [InspectorName(">")] Greater,
    [InspectorName(">=")] GreaterOrEqual,
    [InspectorName("<")] Less,
    [InspectorName("<=")] LessOrEqual,
    
    [InspectorName("X =")] XEqual,
    [InspectorName("Y =")] YEqual,
    [InspectorName("Z =")] ZEqual,
    
    Contains, 
    [InspectorName("Starts With")] StartsWith, 
    [InspectorName("Ends With")] EndsWith,
    
    [InspectorName("Is True")] IsTrue, [InspectorName("Is False")] IsFalse,
    [InspectorName("Is Null")] IsNull, [InspectorName("Not Null")] NotNull
}
```
