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]
36 lines
1.0 KiB
C++
36 lines
1.0 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/WeakObjectPtr.h"
|
|
#include "IDetailCustomization.h"
|
|
#include "PropertyRestriction.h"
|
|
|
|
class IPropertyHandle;
|
|
class IDetailLayoutBuilder;
|
|
class SObjectPropertyEntryBox;
|
|
struct FAssetData;
|
|
class UMaterialExpressionTextureBase;
|
|
struct FPropertyChangedEvent;
|
|
|
|
class FMaterialExpressionTextureBaseDetails : public IDetailCustomization
|
|
{
|
|
public:
|
|
/** Makes a new instance of this detail layout class for a specific detail view requesting it */
|
|
static TSharedRef<IDetailCustomization> MakeInstance();
|
|
|
|
virtual ~FMaterialExpressionTextureBaseDetails();
|
|
|
|
/** IDetailCustomization interface */
|
|
virtual void CustomizeDetails( IDetailLayoutBuilder& DetailLayout ) override;
|
|
|
|
TSharedPtr<FPropertyRestriction> EnumRestriction;
|
|
TWeakObjectPtr<UMaterialExpressionTextureBase> Expression;
|
|
FDelegateHandle DelegateHandle;
|
|
|
|
void OnTextureChanged();
|
|
void OnPropertyChanged(UObject* ObjectBeingModified, FPropertyChangedEvent& PropertyChangedEvent);
|
|
};
|
|
|