Files
UnrealEngine/Engine/Plugins/Experimental/Mover/Source/MoverCVDData/Private/MoverCVDDataWrappers.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

28 lines
579 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "MoverCVDDataWrappers.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(MoverCVDDataWrappers)
FStringView FMoverCVDSimDataWrapper::WrapperTypeName = TEXT("FMoverCVDSimDataWrapper");
bool FMoverCVDSimDataWrapper::Serialize(FArchive& Ar)
{
Ar << bHasValidData;
if (!bHasValidData)
{
return !Ar.IsError();
}
Ar << SolverID;
Ar << ParticleID;
Ar << SyncStateBytes;
Ar << SyncStateDataCollectionBytes;
Ar << InputCmdBytes;
Ar << InputMoverDataCollectionBytes;
Ar << LocalSimDataBytes;
return !Ar.IsError();
}