You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
472 B
18 lines
472 B
// Georgy Treshchev 2025.
|
|
|
|
#include "RealisticMetaHumanLipSyncMoodModel.h"
|
|
#include "RuntimeMetaHumanLipSyncModule.h"
|
|
|
|
FByteBulkData* URealisticMetaHumanLipSyncMoodModel::GetModelData()
|
|
{
|
|
return &Model;
|
|
}
|
|
|
|
void URealisticMetaHumanLipSyncMoodModel::Serialize(FArchive& Ar)
|
|
{
|
|
Super::Serialize(Ar);
|
|
|
|
Model.Serialize(Ar, this, INDEX_NONE, false);
|
|
|
|
UE_LOG(LogRuntimeMetaHumanLipSync, Log, TEXT("Serializing mood model data with %lld bytes"), Model.GetBulkDataSize());
|
|
}
|
|
|