unreal.MovieSceneMetaData

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

Bases: Object

Movie scene meta-data that is stored on UMovieScene assets Meta-data is retrieved through ULevelSequence::FindMetaData<ULevelSequenceMetaData>()

C++ Source:

  • Module: MovieScene

  • File: MovieSceneMetaData.h

Editor Properties: (see get_editor_property/set_editor_property)

  • author (str): [Read-Write] The author that created this metadata

  • created (DateTime): [Read-Write] The created date at which the metadata was initiated

  • notes (str): [Read-Write] Notes for the metadata

get_author() str
Returns:

The author for this metadata

Return type:

str

get_created() DateTime
Returns:

The created date for this metadata

Return type:

DateTime

get_notes() str
Returns:

The notes for this metadata

Return type:

str

set_author(author) None

Set this metadata’s author

Parameters:

author (str) –

set_created(created) None

Set this metadata’s created date

Parameters:

created (DateTime) –

set_notes(notes) None

Set this metadata’s notes

Parameters:

notes (str) –