Hello,
I’m experiencing this warning message each time I run my game. Today I finally managed to track its origin but I’m not sure how to fix it. I have my own custom SaveGame class that has a USTRUCT() variable. Inside that struct there is a UPROPERTY() for a UTexture2D*. If I comment out this property the warning disappears. Something during serialization of my SavedGamed->Struct->Property goes wrong and I get the said warning. I tried using TAssetRef instead but that didn’t help either. I also changed the UTexture2D* to AActor* and I still get this warning.
The bad news is that I tried to reproduce this in a brand new project by making a SaveGame class that uses the same structures but the warning didn’t appear. The warning occurs in UObjectGlobals.cpp on line 842. I’m posting the call stack of the warning below. It doesn’t cause me any problems besides filling my Output Log with a bunch of warnings.
> UE4Editor-CoreUObject.dll!StaticLoadObject(UClass * ObjectClass, UObject * InOuter, const wchar_t * InName, const wchar_t * Filename, unsigned int LoadFlags, UPackageMap * Sandbox, bool bAllowObjectReconciliation) Line 842 C++
UE4Editor-CoreUObject.dll!FObjectAndNameAsStringProxyArchive::operator<<(UObject * & Obj) Line 92 C++
UE4Editor-CoreUObject.dll!UObjectProperty::SerializeItem(FArchive & Ar, void * Value, const void * Defaults) Line 32 C++
UE4Editor-CoreUObject.dll!FPropertyTag::SerializeTaggedProperty(FArchive & Ar, UProperty * Property, unsigned char * Value, unsigned char * Defaults) Line 145 C++
UE4Editor-CoreUObject.dll!UStruct::SerializeTaggedProperties(FArchive & Ar, unsigned char * Data, UStruct * DefaultsStruct, unsigned char * Defaults, const UObject * BreakRecursionIfFullyLoad) Line 1320 C++
UE4Editor-CoreUObject.dll!UStructProperty::StaticSerializeItem(FArchive & Ar, void * Value, const void * Defaults, UScriptStruct * Struct, const bool bUseBinarySerialization, const bool bUseNativeSerialization) Line 153 C++
UE4Editor-CoreUObject.dll!UStructProperty::SerializeItem(FArchive & Ar, void * Value, const void * Defaults) Line 168 C++
UE4Editor-CoreUObject.dll!UArrayProperty::SerializeItem(FArchive & Ar, void * Value, const void * Defaults) Line 68 C++
UE4Editor-CoreUObject.dll!FPropertyTag::SerializeTaggedProperty(FArchive & Ar, UProperty * Property, unsigned char * Value, unsigned char * Defaults) Line 145 C++
UE4Editor-CoreUObject.dll!UStruct::SerializeTaggedProperties(FArchive & Ar, unsigned char * Data, UStruct * DefaultsStruct, unsigned char * Defaults, const UObject * BreakRecursionIfFullyLoad) Line 1320 C++
UE4Editor-CoreUObject.dll!UStructProperty::StaticSerializeItem(FArchive & Ar, void * Value, const void * Defaults, UScriptStruct * Struct, const bool bUseBinarySerialization, const bool bUseNativeSerialization) Line 153 C++
UE4Editor-CoreUObject.dll!UStructProperty::SerializeItem(FArchive & Ar, void * Value, const void * Defaults) Line 168 C++
UE4Editor-CoreUObject.dll!FPropertyTag::SerializeTaggedProperty(FArchive & Ar, UProperty * Property, unsigned char * Value, unsigned char * Defaults) Line 145 C++
UE4Editor-CoreUObject.dll!UStruct::SerializeTaggedProperties(FArchive & Ar, unsigned char * Data, UStruct * DefaultsStruct, unsigned char * Defaults, const UObject * BreakRecursionIfFullyLoad) Line 1320 C++
UE4Editor-CoreUObject.dll!UStructProperty::StaticSerializeItem(FArchive & Ar, void * Value, const void * Defaults, UScriptStruct * Struct, const bool bUseBinarySerialization, const bool bUseNativeSerialization) Line 153 C++
UE4Editor-CoreUObject.dll!UStructProperty::SerializeItem(FArchive & Ar, void * Value, const void * Defaults) Line 168 C++
UE4Editor-CoreUObject.dll!FPropertyTag::SerializeTaggedProperty(FArchive & Ar, UProperty * Property, unsigned char * Value, unsigned char * Defaults) Line 145 C++
UE4Editor-CoreUObject.dll!UStruct::SerializeTaggedProperties(FArchive & Ar, unsigned char * Data, UStruct * DefaultsStruct, unsigned char * Defaults, const UObject * BreakRecursionIfFullyLoad) Line 1320 C++
UE4Editor-CoreUObject.dll!UObject::SerializeScriptProperties(FArchive & Ar) Line 984 C++
UE4Editor-CoreUObject.dll!UObject::Serialize(FArchive & Ar) Line 926 C++
UE4Editor-Engine.dll!UGameplayStatics::LoadGameFromSlot(const FString & SlotName, const int UserIndex) Line 1350 C++
UE4Editor-TPS.dll!ATPSMenuMode::BeginPlay() Line 17 C++
UE4Editor-Engine.dll!AWorldSettings::NotifyBeginPlay() Line 132 C++
UE4Editor-Engine.dll!AGameMode::HandleMatchHasStarted() Line 605 C++
UE4Editor-Engine.dll!AGameMode::SetMatchState(FName NewState) Line 721 C++
UE4Editor-Engine.dll!AGameMode::StartMatch() Line 582 C++
UE4Editor-Engine.dll!UWorld::BeginPlay() Line 3050 C++
UE4Editor-Engine.dll!UGameInstance::StartPIEGameInstance(ULocalPlayer * LocalPlayer, bool bInSimulateInEditor, bool bAnyBlueprintErrors, bool bStartInSpectatorMode) Line 273 C++
UE4Editor-UnrealEd.dll!UEditorEngine::CreatePIEGameInstance(int PIEInstance, bool bInSimulateInEditor, bool bAnyBlueprintErrors, bool bStartInSpectatorMode, bool bRunAsDedicated, float PIEStartTime) Line 3137 C++
UE4Editor-UnrealEd.dll!UEditorEngine::PlayInEditor(UWorld * InWorld, bool bInSimulateInEditor) Line 2385 C++
UE4Editor-UnrealEd.dll!UEditorEngine::StartQueuedPlayMapRequest() Line 1066 C++
UE4Editor-UnrealEd.dll!UEditorEngine::Tick(float DeltaSeconds, bool bIdleMode) Line 1244 C++
UE4Editor-UnrealEd.dll!UUnrealEdEngine::Tick(float DeltaSeconds, bool bIdleMode) Line 366 C++
UE4Editor.exe!FEngineLoop::Tick() Line 2428 C++
UE4Editor.exe!GuardedMain(const wchar_t * CmdLine, HINSTANCE__ * hInInstance, HINSTANCE__ * hPrevInstance, int nCmdShow) Line 142 C++
UE4Editor.exe!GuardedMainWrapper(const wchar_t * CmdLine, HINSTANCE__ * hInInstance, HINSTANCE__ * hPrevInstance, int nCmdShow) Line 126 C++
UE4Editor.exe!WinMain(HINSTANCE__ * hInInstance, HINSTANCE__ * hPrevInstance, char * __formal, int nCmdShow) Line 200 C++
[External Code]