EM_Task/UnrealEd/Classes/MaterialEditor/DEditorMPCValue.h
Boshuang Zhao 5144a49c9b add
2026-02-13 16:18:33 +08:00

27 lines
703 B
C++

#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "MaterialEditor/DEditorParameterValue.h"
#include "DEditorMPCValue.generated.h"
UCLASS(hidecategories = Object, collapsecategories, editinlinenew)
class UNREALED_API UDEditorMPCValue: public UDEditorParameterValue
{
GENERATED_UCLASS_BODY()
public:
UPROPERTY(EditAnywhere, Category = DEditorMPCValue)
bool bIsValid = true;
UPROPERTY()
bool bHasChange = false;
UPROPERTY(EditAnywhere, Category = DEditorMPCValue)
class UMaterialParameterCollection* OriginalCollection;
UPROPERTY(EditAnywhere, Category = DEditorMPCValue)
class UMaterialParameterCollection* OverridenCollection;
};