Files
UnrealEngine/Engine/Plugins/MetaHuman/MetaHumanAnimator/Source/MetaHumanSequencer/Private/MetaHumanAudioSection.cpp
2025-05-18 13:04:45 +08:00

19 lines
390 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "MetaHumanAudioSection.h"
FMetaHumanAudioSection::FMetaHumanAudioSection(UMovieSceneSection& InSection, TWeakPtr<ISequencer> InSequencer)
: FAudioSection{ InSection, InSequencer }
{
}
bool FMetaHumanAudioSection::SectionIsResizable() const
{
return false;
}
bool FMetaHumanAudioSection::IsReadOnly() const
{
return true;
}