Files
UnrealEngine/Engine/Plugins/MetaHuman/MetaHumanAnimator/Source/MetaHumanSequencer/Private/MetaHumanAudioTrack.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

14 lines
404 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "MetaHumanAudioTrack.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(MetaHumanAudioTrack)
UMetaHumanAudioTrack::UMetaHumanAudioTrack(const FObjectInitializer& InObjectInitializer)
: Super{ InObjectInitializer }
{
// This disables the "Add Section" entry in the track's context menu
SupportedBlendTypes = FMovieSceneBlendTypeField::None();
}