unreal.MovieGraphConditionGroupQueryOpType

class unreal.MovieGraphConditionGroupQueryOpType

Bases: EnumBase

Operation types available on condition group queries.

C++ Source:

  • Plugin: MovieRenderPipeline

  • Module: MovieRenderPipelineCore

  • File: MovieGraphRenderLayerSubsystem.h

ADD: MovieGraphConditionGroupQueryOpType

Adds the results of the query to the results from the previous query (if any).

Type:

0

AND: MovieGraphConditionGroupQueryOpType

Replaces the results of the previous queries with only the items that exist in both those queries, and this query result. Intersecting with a query which returns nothing will create an empty query result.

Type:

2

SUBTRACT: MovieGraphConditionGroupQueryOpType

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

Type:

1