unreal.PCGSelectGrammarComparator¶
- class unreal.PCGSelectGrammarComparator¶
Bases:
EnumBaseAn enum representation of basic numerical comparisons for the Select Grammar operation.
C++ Source:
Plugin: PCG
Module: PCG
File: PCGSelectGrammar.h
- EQUAL_TO: PCGSelectGrammarComparator = Ellipsis¶
Select if ‘equal to’ (A == B)
- Type:
36
- GREATER_THAN: PCGSelectGrammarComparator = Ellipsis¶
Select if ‘greater than’ (A > B)
- Type:
38
- GREATER_THAN_EQUAL_TO: PCGSelectGrammarComparator = Ellipsis¶
Select if ‘greater than or equal to’ (A >= B)
- Type:
37
- LESS_THAN: PCGSelectGrammarComparator = Ellipsis¶
Select if ‘less than’ (A < B)
- Type:
34
- LESS_THAN_EQUAL_TO: PCGSelectGrammarComparator = Ellipsis¶
Select if ‘less than or equal to’ (A <= B)
- Type:
35
- RANGE_EXCLUSIVE: PCGSelectGrammarComparator = Ellipsis¶
Select if ‘within exclusive range’ (B < A < C)
- Type:
65
- RANGE_INCLUSIVE: PCGSelectGrammarComparator = Ellipsis¶
Select if ‘within inclusive range’ (B <= A <= C)
- Type:
66
- SELECT: PCGSelectGrammarComparator = Ellipsis¶
Select this grammar. Always evaluates to true.
- Type:
33