unreal.MovieGraphConditionGroupOpType

class unreal.MovieGraphConditionGroupOpType

Bases: EnumBase

Operation types available on condition groups.

C++ Source:

  • Plugin: MovieRenderPipeline

  • Module: MovieRenderPipelineCore

  • File: MovieGraphRenderLayerSubsystem.h

ADD: MovieGraphConditionGroupOpType

Adds the contents of the condition group to the results from the previous condition group (if any).

Type:

0

AND: MovieGraphConditionGroupOpType

Replaces the results of the previous condition group(s) with only the elements that exist in both that group, and this group. Intersecting with an empty condition group will result in an empty condition group.

Type:

2

SUBTRACT: MovieGraphConditionGroupOpType

Removes the contents of the condition group from the result of the previous condition group (if any). Any items in this condition group that aren’t also found in the previous condition group will be ignored.

Type:

1