Files
UnrealEngine/Engine/Source/Runtime/Experimental/GeometryCollectionEngine/Public/GeometryCollection/GeometryCollectionCreationParameters.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

21 lines
535 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
class FGeometryCollection;
class FGeometryCollectionCreationParameters
{
public:
GEOMETRYCOLLECTIONENGINE_API FGeometryCollectionCreationParameters(FGeometryCollection& GeometryCollection, bool ReCalculateNormalsIn = false, bool ReCalculateTangetsIn = false);
GEOMETRYCOLLECTIONENGINE_API ~FGeometryCollectionCreationParameters();
private:
bool ReCalculateNormals;
bool ReCalculateTangents;
FGeometryCollection& GeometryCollection;
};