You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #rb none #ROBOMERGE-SOURCE: CL 10869241 via CL 10869527 via CL 10869904 #ROBOMERGE-BOT: (v613-10869866) [CL 10870586 by ryan durand in Main branch]
61 lines
2.3 KiB
C++
61 lines
2.3 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "MaterialShadingModelCustomization.h"
|
|
#include "IPropertyUtilities.h"
|
|
#include "PropertyRestriction.h"
|
|
#include "Engine/EngineTypes.h"
|
|
#include "IDetailChildrenBuilder.h"
|
|
#include "DetailLayoutBuilder.h"
|
|
#include "DetailCategoryBuilder.h"
|
|
#include "DetailWidgetRow.h"
|
|
#include "IDetailPropertyRow.h"
|
|
#include "PropertyCustomizationHelpers.h"
|
|
#include "MaterialEditor/MaterialEditorInstanceConstant.h"
|
|
#include "Materials/Material.h"
|
|
|
|
TSharedRef<IPropertyTypeCustomization> FMaterialShadingModelCustomization::MakeInstance()
|
|
{
|
|
return MakeShareable( new FMaterialShadingModelCustomization );
|
|
}
|
|
|
|
void FMaterialShadingModelCustomization::CustomizeHeader(TSharedRef<IPropertyHandle> PropertyHandle, class FDetailWidgetRow& HeaderRow, IPropertyTypeCustomizationUtils& CustomizationUtils)
|
|
{
|
|
// Hide special value by default
|
|
bool bShouldHideFromMaterialExpression = true;
|
|
|
|
// This piece of code enables the use of the Shading Model material output pin through selecting "From Material Expression" in the Shading Model drop down menu.
|
|
if (PropertyHandle->GetNumOuterObjects() == 1)
|
|
{
|
|
TArray<UObject*> OuterObjects;
|
|
PropertyHandle->GetOuterObjects(OuterObjects);
|
|
|
|
// Don't hide MSM_FromMaterialExpression on a UMaterial or on UMaterialEditorInstanceConstant
|
|
if (OuterObjects[0]->IsA<UMaterial>() || OuterObjects[0]->IsA<UMaterialEditorInstanceConstant>())
|
|
{
|
|
bShouldHideFromMaterialExpression = false;
|
|
}
|
|
}
|
|
|
|
// Add restrictin to property if asked for
|
|
if (bShouldHideFromMaterialExpression)
|
|
{
|
|
TSharedPtr<FPropertyRestriction> EnumRestriction = MakeShareable(new FPropertyRestriction(NSLOCTEXT("MaterialShadingModel", "FromMaterialExpression", "FromMaterialExpression is only available on UMaterial")));
|
|
const UEnum* const MaterialShadingModelEnum = StaticEnum<EMaterialShadingModel>();
|
|
EnumRestriction->AddHiddenValue(MaterialShadingModelEnum->GetNameStringByValue((int64)EMaterialShadingModel::MSM_FromMaterialExpression));
|
|
PropertyHandle->AddRestriction(EnumRestriction.ToSharedRef());
|
|
}
|
|
|
|
// Implement the copmbobox for the enum
|
|
HeaderRow
|
|
.NameContent()
|
|
[
|
|
PropertyHandle->CreatePropertyNameWidget()
|
|
]
|
|
.ValueContent()
|
|
.MinDesiredWidth(150.0f) // To fit the longer names
|
|
.MaxDesiredWidth(0.0f) // Don't care
|
|
[
|
|
PropertyCustomizationHelpers::MakePropertyComboBox(PropertyHandle)
|
|
];
|
|
}
|