unreal.PCGBooleanOperationMode

class unreal.PCGBooleanOperationMode

Bases: EnumBase

EPCGBoolean Operation Mode

C++ Source:

  • Plugin: PCGGeometryScriptInterop

  • Module: PCGGeometryScriptInterop

  • File: PCGBooleanOperation.h

EACH_A_WITH_EACH_B: PCGBooleanOperationMode = Ellipsis

Each input in A is boolean’d with its associated input in B (A1 with B1, A2 with B2, etc…). Produces N outputs.

Type:

0

EACH_A_WITH_EACH_B_SEQUENTIALLY: PCGBooleanOperationMode = Ellipsis

Each input in A is boolean’d with every input in B sequentially. (A1 with B1 then with B2, A2 with B1 then B2, etc…). Produces N outputs.

Type:

1

EACH_A_WITH_EVERY_B: PCGBooleanOperationMode = Ellipsis

A1 with B1, A1 with B2, A2 with B1, A2 with B2, etc…). Produces N * M outputs.

Type:

2

Type:

Each input in A is boolean’d with input in B individually (Cartesian product