[Backout] - CL18942719

Backing out due to Horde cook breakage:  https://horde.devtools.epicgames.com/job/620596dc6d374b98b0977945?step=dad9

#preflight https://horde.devtools.epicgames.com/job/6205b061672f831308bc87ef

[FYI] Simon.Therriault
Original CL Desc
-----------------------------------------------------------------
- Updating MessageBus protocol and CBor serialization backend to support communication between LWC and non LWC endpoints

#rb francis.hurteau, jason.walter
#lockdown alejandro.arango
#jira UE-142171
#preflight 62055181a155a4cddac2660c

#ROBOMERGE-AUTHOR: eric.mcdaniel
#ROBOMERGE-SOURCE: CL 18947525 in //UE5/Release-5.0/... via CL 18947673 via CL 18947789
#ROBOMERGE-BOT: UE5 (Release-Engine-Test -> Main) (v917-18934589)

[CL 18947792 by eric mcdaniel in ue5-main branch]
This commit is contained in:
eric mcdaniel
2022-02-10 20:22:10 -05:00
parent 210b03eecd
commit 36b8f32278
11 changed files with 25 additions and 595 deletions
@@ -1,31 +0,0 @@
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
namespace StructSerializationUtilities
{
static bool IsLWCType(const UStruct* Type)
{
static TSet<FName> LWCTypes = { NAME_Vector
, NAME_Vector2D
, NAME_Vector4
, NAME_Matrix
, NAME_Plane
, NAME_Quat
, NAME_Rotator
, NAME_Transform
, NAME_Box
, NAME_Box2D
, NAME_BoxSphereBounds
, FName(TEXT("OrientedBox"))};
if (Type)
{
const FName StructName = Type->GetFName();
return LWCTypes.Contains(StructName);
}
return false;
}
};