unreal.MovieGraphModifierBase

class unreal.MovieGraphModifierBase(outer: Object | None = None, name: Name | str = 'None')

Bases: Object

The base class that all modifiers should inherit from. Does not support collections (see UMovieGraphCollectionModifier).

C++ Source:

  • Plugin: MovieRenderPipeline

  • Module: MovieRenderPipelineCore

  • File: MovieGraphRenderLayerSubsystem.h

apply_modifier(world) None

Applies this modifier in the provided world. Called once per layer.

Parameters:

world (World)

get_modifier_name() Text

Gets the name of this modifier. Typically used for UI display purposes.

Return type:

Text

undo_modifier() None

Undoes the effects of this modifier. The modifier is responsible for tracking changes that it makes. Called once per layer.