234 lines
14 KiB
C++
234 lines
14 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
/*===========================================================================
|
|
Generated code exported from UnrealHeaderTool.
|
|
DO NOT modify this manually! Edit the corresponding .h files instead!
|
|
===========================================================================*/
|
|
|
|
#include "UObject/GeneratedCppIncludes.h"
|
|
#include "AnimationStateMachineSchema.h"
|
|
|
|
PRAGMA_DISABLE_DEPRECATION_WARNINGS
|
|
static_assert(!UE_WITH_CONSTINIT_UOBJECT, "This generated code can only be compiled with !UE_WITH_CONSTINIT_OBJECT");
|
|
void EmptyLinkFunctionForGeneratedCodeAnimationStateMachineSchema() {}
|
|
|
|
// ********** Begin Cross Module References ********************************************************
|
|
ANIMGRAPH_API UClass* Z_Construct_UClass_UAnimationStateMachineSchema();
|
|
ANIMGRAPH_API UClass* Z_Construct_UClass_UAnimationStateMachineSchema_NoRegister();
|
|
ANIMGRAPH_API UScriptStruct* Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateComment();
|
|
ANIMGRAPH_API UScriptStruct* Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateNode();
|
|
ENGINE_API UClass* Z_Construct_UClass_UEdGraphSchema();
|
|
ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FEdGraphSchemaAction();
|
|
UPackage* Z_Construct_UPackage__Script_AnimGraph();
|
|
// ********** End Cross Module References **********************************************************
|
|
|
|
// ********** Begin ScriptStruct FEdGraphSchemaAction_NewStateNode *********************************
|
|
struct Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateNode_Statics
|
|
{
|
|
static inline consteval int32 GetStructSize() { return sizeof(FEdGraphSchemaAction_NewStateNode); }
|
|
static inline consteval int16 GetStructAlignment() { return alignof(FEdGraphSchemaAction_NewStateNode); }
|
|
#if WITH_METADATA
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
|
|
{ "Comment", "/** Action to add a node to the graph */" },
|
|
{ "ModuleRelativePath", "Public/AnimationStateMachineSchema.h" },
|
|
{ "ToolTip", "Action to add a node to the graph" },
|
|
};
|
|
#endif // WITH_METADATA
|
|
|
|
// ********** Begin ScriptStruct FEdGraphSchemaAction_NewStateNode constinit property declarations *
|
|
// ********** End ScriptStruct FEdGraphSchemaAction_NewStateNode constinit property declarations ***
|
|
static void* NewStructOps()
|
|
{
|
|
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FEdGraphSchemaAction_NewStateNode>();
|
|
}
|
|
static const UECodeGen_Private::FStructParams StructParams;
|
|
}; // struct Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateNode_Statics
|
|
static_assert(std::is_polymorphic<FEdGraphSchemaAction_NewStateNode>() == std::is_polymorphic<FEdGraphSchemaAction>(), "USTRUCT FEdGraphSchemaAction_NewStateNode cannot be polymorphic unless super FEdGraphSchemaAction is polymorphic");
|
|
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateNode;
|
|
class UScriptStruct* FEdGraphSchemaAction_NewStateNode::StaticStruct()
|
|
{
|
|
if (!Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateNode.OuterSingleton)
|
|
{
|
|
Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateNode.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateNode, (UObject*)Z_Construct_UPackage__Script_AnimGraph(), TEXT("EdGraphSchemaAction_NewStateNode"));
|
|
}
|
|
return Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateNode.OuterSingleton;
|
|
}
|
|
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateNode_Statics::StructParams = {
|
|
(UObject* (*)())Z_Construct_UPackage__Script_AnimGraph,
|
|
Z_Construct_UScriptStruct_FEdGraphSchemaAction,
|
|
&NewStructOps,
|
|
"EdGraphSchemaAction_NewStateNode",
|
|
nullptr,
|
|
0,
|
|
sizeof(FEdGraphSchemaAction_NewStateNode),
|
|
alignof(FEdGraphSchemaAction_NewStateNode),
|
|
RF_Public|RF_Transient|RF_MarkAsNative,
|
|
EStructFlags(0x00000001),
|
|
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateNode_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateNode_Statics::Struct_MetaDataParams)
|
|
};
|
|
UScriptStruct* Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateNode()
|
|
{
|
|
if (!Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateNode.InnerSingleton)
|
|
{
|
|
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateNode.InnerSingleton, Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateNode_Statics::StructParams);
|
|
}
|
|
return CastChecked<UScriptStruct>(Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateNode.InnerSingleton);
|
|
}
|
|
// ********** End ScriptStruct FEdGraphSchemaAction_NewStateNode ***********************************
|
|
|
|
// ********** Begin ScriptStruct FEdGraphSchemaAction_NewStateComment ******************************
|
|
struct Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateComment_Statics
|
|
{
|
|
static inline consteval int32 GetStructSize() { return sizeof(FEdGraphSchemaAction_NewStateComment); }
|
|
static inline consteval int16 GetStructAlignment() { return alignof(FEdGraphSchemaAction_NewStateComment); }
|
|
#if WITH_METADATA
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
|
|
{ "Comment", "/** Action to create new comment */" },
|
|
{ "ModuleRelativePath", "Public/AnimationStateMachineSchema.h" },
|
|
{ "ToolTip", "Action to create new comment" },
|
|
};
|
|
#endif // WITH_METADATA
|
|
|
|
// ********** Begin ScriptStruct FEdGraphSchemaAction_NewStateComment constinit property declarations
|
|
// ********** End ScriptStruct FEdGraphSchemaAction_NewStateComment constinit property declarations
|
|
static void* NewStructOps()
|
|
{
|
|
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FEdGraphSchemaAction_NewStateComment>();
|
|
}
|
|
static const UECodeGen_Private::FStructParams StructParams;
|
|
}; // struct Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateComment_Statics
|
|
static_assert(std::is_polymorphic<FEdGraphSchemaAction_NewStateComment>() == std::is_polymorphic<FEdGraphSchemaAction>(), "USTRUCT FEdGraphSchemaAction_NewStateComment cannot be polymorphic unless super FEdGraphSchemaAction is polymorphic");
|
|
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateComment;
|
|
class UScriptStruct* FEdGraphSchemaAction_NewStateComment::StaticStruct()
|
|
{
|
|
if (!Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateComment.OuterSingleton)
|
|
{
|
|
Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateComment.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateComment, (UObject*)Z_Construct_UPackage__Script_AnimGraph(), TEXT("EdGraphSchemaAction_NewStateComment"));
|
|
}
|
|
return Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateComment.OuterSingleton;
|
|
}
|
|
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateComment_Statics::StructParams = {
|
|
(UObject* (*)())Z_Construct_UPackage__Script_AnimGraph,
|
|
Z_Construct_UScriptStruct_FEdGraphSchemaAction,
|
|
&NewStructOps,
|
|
"EdGraphSchemaAction_NewStateComment",
|
|
nullptr,
|
|
0,
|
|
sizeof(FEdGraphSchemaAction_NewStateComment),
|
|
alignof(FEdGraphSchemaAction_NewStateComment),
|
|
RF_Public|RF_Transient|RF_MarkAsNative,
|
|
EStructFlags(0x00000001),
|
|
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateComment_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateComment_Statics::Struct_MetaDataParams)
|
|
};
|
|
UScriptStruct* Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateComment()
|
|
{
|
|
if (!Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateComment.InnerSingleton)
|
|
{
|
|
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateComment.InnerSingleton, Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateComment_Statics::StructParams);
|
|
}
|
|
return CastChecked<UScriptStruct>(Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateComment.InnerSingleton);
|
|
}
|
|
// ********** End ScriptStruct FEdGraphSchemaAction_NewStateComment ********************************
|
|
|
|
// ********** Begin Class UAnimationStateMachineSchema *********************************************
|
|
FClassRegistrationInfo Z_Registration_Info_UClass_UAnimationStateMachineSchema;
|
|
UClass* UAnimationStateMachineSchema::GetPrivateStaticClass()
|
|
{
|
|
using TClass = UAnimationStateMachineSchema;
|
|
if (!Z_Registration_Info_UClass_UAnimationStateMachineSchema.InnerSingleton)
|
|
{
|
|
GetPrivateStaticClassBody(
|
|
TClass::StaticPackage(),
|
|
TEXT("AnimationStateMachineSchema"),
|
|
Z_Registration_Info_UClass_UAnimationStateMachineSchema.InnerSingleton,
|
|
StaticRegisterNativesUAnimationStateMachineSchema,
|
|
sizeof(TClass),
|
|
alignof(TClass),
|
|
TClass::StaticClassFlags,
|
|
TClass::StaticClassCastFlags(),
|
|
TClass::StaticConfigName(),
|
|
(UClass::ClassConstructorType)InternalConstructor<TClass>,
|
|
(UClass::ClassVTableHelperCtorCallerType)InternalVTableHelperCtorCaller<TClass>,
|
|
UOBJECT_CPPCLASS_STATICFUNCTIONS_FORCLASS(TClass),
|
|
&TClass::Super::StaticClass,
|
|
&TClass::WithinClass::StaticClass
|
|
);
|
|
}
|
|
return Z_Registration_Info_UClass_UAnimationStateMachineSchema.InnerSingleton;
|
|
}
|
|
UClass* Z_Construct_UClass_UAnimationStateMachineSchema_NoRegister()
|
|
{
|
|
return UAnimationStateMachineSchema::GetPrivateStaticClass();
|
|
}
|
|
struct Z_Construct_UClass_UAnimationStateMachineSchema_Statics
|
|
{
|
|
#if WITH_METADATA
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
|
|
{ "IncludePath", "AnimationStateMachineSchema.h" },
|
|
{ "ModuleRelativePath", "Public/AnimationStateMachineSchema.h" },
|
|
};
|
|
#endif // WITH_METADATA
|
|
|
|
// ********** Begin Class UAnimationStateMachineSchema constinit property declarations *************
|
|
// ********** End Class UAnimationStateMachineSchema constinit property declarations ***************
|
|
static UObject* (*const DependentSingletons[])();
|
|
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
|
|
TCppClassTypeTraits<UAnimationStateMachineSchema>::IsAbstract,
|
|
};
|
|
static const UECodeGen_Private::FClassParams ClassParams;
|
|
}; // struct Z_Construct_UClass_UAnimationStateMachineSchema_Statics
|
|
UObject* (*const Z_Construct_UClass_UAnimationStateMachineSchema_Statics::DependentSingletons[])() = {
|
|
(UObject* (*)())Z_Construct_UClass_UEdGraphSchema,
|
|
(UObject* (*)())Z_Construct_UPackage__Script_AnimGraph,
|
|
};
|
|
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAnimationStateMachineSchema_Statics::DependentSingletons) < 16);
|
|
const UECodeGen_Private::FClassParams Z_Construct_UClass_UAnimationStateMachineSchema_Statics::ClassParams = {
|
|
&UAnimationStateMachineSchema::StaticClass,
|
|
nullptr,
|
|
&StaticCppClassTypeInfo,
|
|
DependentSingletons,
|
|
nullptr,
|
|
nullptr,
|
|
nullptr,
|
|
UE_ARRAY_COUNT(DependentSingletons),
|
|
0,
|
|
0,
|
|
0,
|
|
0x000800A0u,
|
|
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAnimationStateMachineSchema_Statics::Class_MetaDataParams), Z_Construct_UClass_UAnimationStateMachineSchema_Statics::Class_MetaDataParams)
|
|
};
|
|
void UAnimationStateMachineSchema::StaticRegisterNativesUAnimationStateMachineSchema()
|
|
{
|
|
}
|
|
UClass* Z_Construct_UClass_UAnimationStateMachineSchema()
|
|
{
|
|
if (!Z_Registration_Info_UClass_UAnimationStateMachineSchema.OuterSingleton)
|
|
{
|
|
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAnimationStateMachineSchema.OuterSingleton, Z_Construct_UClass_UAnimationStateMachineSchema_Statics::ClassParams);
|
|
}
|
|
return Z_Registration_Info_UClass_UAnimationStateMachineSchema.OuterSingleton;
|
|
}
|
|
DEFINE_VTABLE_PTR_HELPER_CTOR_NS(, UAnimationStateMachineSchema);
|
|
UAnimationStateMachineSchema::~UAnimationStateMachineSchema() {}
|
|
// ********** End Class UAnimationStateMachineSchema ***********************************************
|
|
|
|
// ********** Begin Registration *******************************************************************
|
|
struct Z_CompiledInDeferFile_FID_Engine_Source_Editor_AnimGraph_Public_AnimationStateMachineSchema_h__Script_AnimGraph_Statics
|
|
{
|
|
static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = {
|
|
{ FEdGraphSchemaAction_NewStateNode::StaticStruct, Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateNode_Statics::NewStructOps, TEXT("EdGraphSchemaAction_NewStateNode"),&Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateNode, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FEdGraphSchemaAction_NewStateNode), 1441417167U) },
|
|
{ FEdGraphSchemaAction_NewStateComment::StaticStruct, Z_Construct_UScriptStruct_FEdGraphSchemaAction_NewStateComment_Statics::NewStructOps, TEXT("EdGraphSchemaAction_NewStateComment"),&Z_Registration_Info_UScriptStruct_FEdGraphSchemaAction_NewStateComment, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FEdGraphSchemaAction_NewStateComment), 2296973501U) },
|
|
};
|
|
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
|
|
{ Z_Construct_UClass_UAnimationStateMachineSchema, UAnimationStateMachineSchema::StaticClass, TEXT("UAnimationStateMachineSchema"), &Z_Registration_Info_UClass_UAnimationStateMachineSchema, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAnimationStateMachineSchema), 3423019734U) },
|
|
};
|
|
}; // Z_CompiledInDeferFile_FID_Engine_Source_Editor_AnimGraph_Public_AnimationStateMachineSchema_h__Script_AnimGraph_Statics
|
|
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Engine_Source_Editor_AnimGraph_Public_AnimationStateMachineSchema_h__Script_AnimGraph_2666240819{
|
|
TEXT("/Script/AnimGraph"),
|
|
Z_CompiledInDeferFile_FID_Engine_Source_Editor_AnimGraph_Public_AnimationStateMachineSchema_h__Script_AnimGraph_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Source_Editor_AnimGraph_Public_AnimationStateMachineSchema_h__Script_AnimGraph_Statics::ClassInfo),
|
|
Z_CompiledInDeferFile_FID_Engine_Source_Editor_AnimGraph_Public_AnimationStateMachineSchema_h__Script_AnimGraph_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Source_Editor_AnimGraph_Public_AnimationStateMachineSchema_h__Script_AnimGraph_Statics::ScriptStructInfo),
|
|
nullptr, 0,
|
|
};
|
|
// ********** End Registration *********************************************************************
|
|
|
|
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|