Table of Contents

Enum EntityReferenceComparisonMode

Namespace
ElectricDrill.AstraRpgFramework.Conditions
Assembly
com.electricdrill.astra-rpg-framework.Runtime.dll

Defines how two resolved entity slots should be compared.

public enum EntityReferenceComparisonMode

Fields

DifferentEntity = 1

Evaluates to true only when both slots resolve to non-null entities and both resolved references do not point to the same EntityCore instance.

LeftIsNotNull = 3

Evaluates to true when the left slot resolves to a non-null entity.

LeftIsNull = 2

Evaluates to true when the left slot resolves to null.

RightIsNotNull = 5

Evaluates to true when the right slot resolves to a non-null entity.

RightIsNull = 4

Evaluates to true when the right slot resolves to null.

SameEntity = 0

Evaluates to true only when both slots resolve to non-null entities and both references point to the same EntityCore instance.