2021-04-29 18:12:32 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "IGeometryProcessingInterfacesModule.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class IGeometryProcessing_ApproximateActors;
|
2023-02-26 21:00:47 -05:00
|
|
|
class IGeometryProcessing_CombineMeshInstances;
|
2023-06-15 10:37:22 -04:00
|
|
|
class IGeometryProcessing_MeshAutoUV;
|
2023-02-26 21:00:47 -05:00
|
|
|
|
2021-04-29 18:12:32 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Implementation of IGeometryProcessingInterfacesModule (which extends the standard IModuleInterface)
|
|
|
|
|
* to provide access to various "Operation" interfaces
|
|
|
|
|
*/
|
|
|
|
|
class FGeometryProcessingInterfacesModule : public IGeometryProcessingInterfacesModule
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
virtual void StartupModule() override;
|
|
|
|
|
virtual void ShutdownModule() override;
|
|
|
|
|
|
2023-06-15 10:37:22 -04:00
|
|
|
|
2021-04-29 18:12:32 -04:00
|
|
|
/**
|
|
|
|
|
* @return implementation of IGeometryProcessing_ApproximateActors, if available, or nullptr (result is cached internally)
|
|
|
|
|
*/
|
|
|
|
|
virtual IGeometryProcessing_ApproximateActors* GetApproximateActorsImplementation() override;
|
|
|
|
|
|
2023-02-26 21:00:47 -05:00
|
|
|
/**
|
|
|
|
|
* @return implementation of IGeometryProcessing_CombineMeshInstances, if available, or nullptr (result is cached internally)
|
|
|
|
|
*/
|
|
|
|
|
virtual IGeometryProcessing_CombineMeshInstances* GetCombineMeshInstancesImplementation() override;
|
|
|
|
|
|
2023-06-15 10:37:22 -04:00
|
|
|
/**
|
|
|
|
|
* @return implementation of IGeometryProcessing_MeshAutoUV, if available, or nullptr (result is cached internally)
|
|
|
|
|
*/
|
|
|
|
|
virtual IGeometryProcessing_MeshAutoUV* GetMeshAutoUVImplementation() override;
|
2023-02-26 21:00:47 -05:00
|
|
|
|
2021-04-29 18:12:32 -04:00
|
|
|
private:
|
|
|
|
|
IGeometryProcessing_ApproximateActors* ApproximateActors = nullptr;
|
2023-02-26 21:00:47 -05:00
|
|
|
IGeometryProcessing_CombineMeshInstances* CombineMeshInstances = nullptr;
|
2023-06-15 10:37:22 -04:00
|
|
|
IGeometryProcessing_MeshAutoUV* MeshAutoUV = nullptr;
|
2021-04-29 18:12:32 -04:00
|
|
|
};
|