unreal.MovieGraphMember

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

Bases: MovieGraphValueContainer

Movie Graph Member

C++ Source:

  • Plugin: MovieRenderPipeline

  • Module: MovieRenderPipelineCore

  • File: MovieGraphConfig.h

Editor Properties: (see get_editor_property/set_editor_property)

  • description (str): [Read-Write] The optional description of this member, which is user-facing.

  • value (InstancedPropertyBag): [Read-Write] The value held by this object.

can_rename(new_name) Text or None

Determines if this member can be renamed to the specified name. If the rename is not possible, returns false and OutError is populated with the reason, else returns true.

Parameters:

new_name (Text)

Returns:

out_error (Text):

Return type:

Text or None

property description: str

[Read-Write] The optional description of this member, which is user-facing.

Type:

(str)

get_guid() Guid

Gets the GUID that uniquely identifies this member.

Return type:

Guid

get_member_name() str

Gets the name of this member.

Return type:

str

is_deletable() bool

Determines if this member can be deleted.

Return type:

bool

is_editable() bool

Gets whether this member is editable via the UI.

Return type:

bool

set_member_name(new_name) bool

Sets the name of this member. Returns true if the rename was successful, else false.

Parameters:

new_name (str)

Return type:

bool