162 lines
13 KiB
C++
162 lines
13 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 "MaterialX/MaterialExpressions/MaterialExpressionDisjointOver.h"
|
|
#include "Materials/MaterialExpression.h"
|
|
|
|
PRAGMA_DISABLE_DEPRECATION_WARNINGS
|
|
static_assert(!UE_WITH_CONSTINIT_UOBJECT, "This generated code can only be compiled with !UE_WITH_CONSTINIT_OBJECT");
|
|
void EmptyLinkFunctionForGeneratedCodeMaterialExpressionDisjointOver() {}
|
|
|
|
// ********** Begin Cross Module References ********************************************************
|
|
ENGINE_API UClass* Z_Construct_UClass_UMaterialExpression();
|
|
ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FExpressionInput();
|
|
INTERCHANGEIMPORT_API UClass* Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver();
|
|
INTERCHANGEIMPORT_API UClass* Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_NoRegister();
|
|
UPackage* Z_Construct_UPackage__Script_InterchangeImport();
|
|
// ********** End Cross Module References **********************************************************
|
|
|
|
// ********** Begin Class UMaterialExpressionMaterialXDisjointOver *********************************
|
|
FClassRegistrationInfo Z_Registration_Info_UClass_UMaterialExpressionMaterialXDisjointOver;
|
|
UClass* UMaterialExpressionMaterialXDisjointOver::GetPrivateStaticClass()
|
|
{
|
|
using TClass = UMaterialExpressionMaterialXDisjointOver;
|
|
if (!Z_Registration_Info_UClass_UMaterialExpressionMaterialXDisjointOver.InnerSingleton)
|
|
{
|
|
GetPrivateStaticClassBody(
|
|
TClass::StaticPackage(),
|
|
TEXT("MaterialExpressionMaterialXDisjointOver"),
|
|
Z_Registration_Info_UClass_UMaterialExpressionMaterialXDisjointOver.InnerSingleton,
|
|
StaticRegisterNativesUMaterialExpressionMaterialXDisjointOver,
|
|
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_UMaterialExpressionMaterialXDisjointOver.InnerSingleton;
|
|
}
|
|
UClass* Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_NoRegister()
|
|
{
|
|
return UMaterialExpressionMaterialXDisjointOver::GetPrivateStaticClass();
|
|
}
|
|
struct Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics
|
|
{
|
|
#if WITH_METADATA
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
|
|
{ "Comment", "/**\n * Merge nodes take two 4-channel (color4) inputs and use the built-in alpha channel(s) to control the\n * compositing of the A and B inputs. \"A\" and \"B\" refer to the non-alpha channels of the A and B inputs respectively, \n * and \"a\" and \"b\" refer to the alpha channels of the A and B inputs.\n * Merge nodes are only defined for float4 inputs\n * Merge nodes support an optional float input Alpha , which can be used to mix the\n * original B value with the result of the blend operation.\n * \n * Operation: A + B if a + b <= 1;\n * A + B(1-a)/b if a + b > 1\n * Result: Lerp(B, Op, Alpha)\n */" },
|
|
{ "HideCategories", "Object Object" },
|
|
{ "IncludePath", "MaterialX/MaterialExpressions/MaterialExpressionDisjointOver.h" },
|
|
{ "ModuleRelativePath", "Private/MaterialX/MaterialExpressions/MaterialExpressionDisjointOver.h" },
|
|
{ "Private", "" },
|
|
{ "ToolTip", "Merge nodes take two 4-channel (color4) inputs and use the built-in alpha channel(s) to control the\ncompositing of the A and B inputs. \"A\" and \"B\" refer to the non-alpha channels of the A and B inputs respectively,\nand \"a\" and \"b\" refer to the alpha channels of the A and B inputs.\nMerge nodes are only defined for float4 inputs\nMerge nodes support an optional float input Alpha , which can be used to mix the\noriginal B value with the result of the blend operation.\n\nOperation: A + B if a + b <= 1;\n A + B(1-a)/b if a + b > 1\nResult: Lerp(B, Op, Alpha)" },
|
|
};
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_A_MetaData[] = {
|
|
{ "ModuleRelativePath", "Private/MaterialX/MaterialExpressions/MaterialExpressionDisjointOver.h" },
|
|
};
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_B_MetaData[] = {
|
|
{ "ModuleRelativePath", "Private/MaterialX/MaterialExpressions/MaterialExpressionDisjointOver.h" },
|
|
};
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Alpha_MetaData[] = {
|
|
{ "ModuleRelativePath", "Private/MaterialX/MaterialExpressions/MaterialExpressionDisjointOver.h" },
|
|
{ "RequiredInput", "false" },
|
|
{ "ToolTip", "Defaults to 'ConstAlpha' if not specified" },
|
|
};
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ConstAlpha_MetaData[] = {
|
|
{ "Category", "MaterialExpressionLinearInterpolate" },
|
|
{ "Comment", "/** only used if Alpha is not hooked up */" },
|
|
{ "ModuleRelativePath", "Private/MaterialX/MaterialExpressions/MaterialExpressionDisjointOver.h" },
|
|
{ "OverridingInputProperty", "Alpha" },
|
|
{ "ToolTip", "only used if Alpha is not hooked up" },
|
|
};
|
|
#endif // WITH_METADATA
|
|
|
|
// ********** Begin Class UMaterialExpressionMaterialXDisjointOver constinit property declarations *
|
|
static const UECodeGen_Private::FStructPropertyParams NewProp_A;
|
|
static const UECodeGen_Private::FStructPropertyParams NewProp_B;
|
|
static const UECodeGen_Private::FStructPropertyParams NewProp_Alpha;
|
|
static const UECodeGen_Private::FFloatPropertyParams NewProp_ConstAlpha;
|
|
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
|
|
// ********** End Class UMaterialExpressionMaterialXDisjointOver constinit property declarations ***
|
|
static UObject* (*const DependentSingletons[])();
|
|
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
|
|
TCppClassTypeTraits<UMaterialExpressionMaterialXDisjointOver>::IsAbstract,
|
|
};
|
|
static const UECodeGen_Private::FClassParams ClassParams;
|
|
}; // struct Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics
|
|
|
|
// ********** Begin Class UMaterialExpressionMaterialXDisjointOver Property Definitions ************
|
|
const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::NewProp_A = { "A", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialExpressionMaterialXDisjointOver, A), Z_Construct_UScriptStruct_FExpressionInput, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_A_MetaData), NewProp_A_MetaData) };
|
|
const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::NewProp_B = { "B", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialExpressionMaterialXDisjointOver, B), Z_Construct_UScriptStruct_FExpressionInput, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_B_MetaData), NewProp_B_MetaData) };
|
|
const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::NewProp_Alpha = { "Alpha", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialExpressionMaterialXDisjointOver, Alpha), Z_Construct_UScriptStruct_FExpressionInput, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Alpha_MetaData), NewProp_Alpha_MetaData) };
|
|
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::NewProp_ConstAlpha = { "ConstAlpha", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialExpressionMaterialXDisjointOver, ConstAlpha), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ConstAlpha_MetaData), NewProp_ConstAlpha_MetaData) };
|
|
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::PropPointers[] = {
|
|
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::NewProp_A,
|
|
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::NewProp_B,
|
|
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::NewProp_Alpha,
|
|
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::NewProp_ConstAlpha,
|
|
};
|
|
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::PropPointers) < 2048);
|
|
// ********** End Class UMaterialExpressionMaterialXDisjointOver Property Definitions **************
|
|
UObject* (*const Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::DependentSingletons[])() = {
|
|
(UObject* (*)())Z_Construct_UClass_UMaterialExpression,
|
|
(UObject* (*)())Z_Construct_UPackage__Script_InterchangeImport,
|
|
};
|
|
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::DependentSingletons) < 16);
|
|
const UECodeGen_Private::FClassParams Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::ClassParams = {
|
|
&UMaterialExpressionMaterialXDisjointOver::StaticClass,
|
|
"MaterialExpressions",
|
|
&StaticCppClassTypeInfo,
|
|
DependentSingletons,
|
|
nullptr,
|
|
Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::PropPointers,
|
|
nullptr,
|
|
UE_ARRAY_COUNT(DependentSingletons),
|
|
0,
|
|
UE_ARRAY_COUNT(Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::PropPointers),
|
|
0,
|
|
0x000820B4u,
|
|
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::Class_MetaDataParams), Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::Class_MetaDataParams)
|
|
};
|
|
void UMaterialExpressionMaterialXDisjointOver::StaticRegisterNativesUMaterialExpressionMaterialXDisjointOver()
|
|
{
|
|
}
|
|
UClass* Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver()
|
|
{
|
|
if (!Z_Registration_Info_UClass_UMaterialExpressionMaterialXDisjointOver.OuterSingleton)
|
|
{
|
|
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UMaterialExpressionMaterialXDisjointOver.OuterSingleton, Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver_Statics::ClassParams);
|
|
}
|
|
return Z_Registration_Info_UClass_UMaterialExpressionMaterialXDisjointOver.OuterSingleton;
|
|
}
|
|
DEFINE_VTABLE_PTR_HELPER_CTOR_NS(, UMaterialExpressionMaterialXDisjointOver);
|
|
UMaterialExpressionMaterialXDisjointOver::~UMaterialExpressionMaterialXDisjointOver() {}
|
|
// ********** End Class UMaterialExpressionMaterialXDisjointOver ***********************************
|
|
|
|
// ********** Begin Registration *******************************************************************
|
|
struct Z_CompiledInDeferFile_FID_Engine_Plugins_Interchange_Runtime_Source_Import_Private_MaterialX_MaterialExpressions_MaterialExpressionDisjointOver_h__Script_InterchangeImport_Statics
|
|
{
|
|
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
|
|
{ Z_Construct_UClass_UMaterialExpressionMaterialXDisjointOver, UMaterialExpressionMaterialXDisjointOver::StaticClass, TEXT("UMaterialExpressionMaterialXDisjointOver"), &Z_Registration_Info_UClass_UMaterialExpressionMaterialXDisjointOver, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UMaterialExpressionMaterialXDisjointOver), 355280360U) },
|
|
};
|
|
}; // Z_CompiledInDeferFile_FID_Engine_Plugins_Interchange_Runtime_Source_Import_Private_MaterialX_MaterialExpressions_MaterialExpressionDisjointOver_h__Script_InterchangeImport_Statics
|
|
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Engine_Plugins_Interchange_Runtime_Source_Import_Private_MaterialX_MaterialExpressions_MaterialExpressionDisjointOver_h__Script_InterchangeImport_4128827364{
|
|
TEXT("/Script/InterchangeImport"),
|
|
Z_CompiledInDeferFile_FID_Engine_Plugins_Interchange_Runtime_Source_Import_Private_MaterialX_MaterialExpressions_MaterialExpressionDisjointOver_h__Script_InterchangeImport_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Plugins_Interchange_Runtime_Source_Import_Private_MaterialX_MaterialExpressions_MaterialExpressionDisjointOver_h__Script_InterchangeImport_Statics::ClassInfo),
|
|
nullptr, 0,
|
|
nullptr, 0,
|
|
};
|
|
// ********** End Registration *********************************************************************
|
|
|
|
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|