You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UETOOL-3823 #rb ryan.schmidt #preflight 6101fb4b2b002800014f7007 [CL 17003092 by michael balzer in ue5-main branch]
33 lines
698 B
C++
33 lines
698 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "InteractiveToolBuilder.h"
|
|
#include "GeometryBase.h"
|
|
#include "MeshStatisticsProperties.generated.h"
|
|
|
|
|
|
// predeclarations
|
|
PREDECLARE_USE_GEOMETRY_CLASS(FDynamicMesh3);
|
|
|
|
|
|
UCLASS()
|
|
class MESHMODELINGTOOLSEXP_API UMeshStatisticsProperties : public UInteractiveToolPropertySet
|
|
{
|
|
GENERATED_BODY()
|
|
public:
|
|
|
|
UPROPERTY(VisibleAnywhere, Category = MeshStatistics)
|
|
FString Mesh;
|
|
|
|
UPROPERTY(VisibleAnywhere, Category = MeshStatistics, AdvancedDisplay)
|
|
FString UV;
|
|
|
|
UPROPERTY(VisibleAnywhere, Category = MeshStatistics, AdvancedDisplay)
|
|
FString Attributes;
|
|
|
|
void Update(const FDynamicMesh3& Mesh);
|
|
};
|
|
|