EM_Task/UnrealEd/Classes/MaterialEditor/DEditorFontParameterValue.h

31 lines
755 B
C
Raw Permalink Normal View History

2026-02-13 16:18:33 +08:00
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "MaterialEditor/DEditorParameterValue.h"
#include "DEditorFontParameterValue.generated.h"
USTRUCT()
struct UNREALED_API FDFontParameters
{
GENERATED_USTRUCT_BODY()
UPROPERTY(EditAnywhere, Category = DFontParameter)
class UFont* FontValue = nullptr;
UPROPERTY(EditAnywhere, Category = DFontParameter)
int32 FontPage = 0;
};
UCLASS(hidecategories = Object, collapsecategories)
class UNREALED_API UDEditorFontParameterValue: public UDEditorParameterValue
{
GENERATED_UCLASS_BODY()
UPROPERTY(EditAnywhere, Category = DEditorFontParameterValue)
struct FDFontParameters ParameterValue;
};