You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
287fa130a3
#rb none #rnx [CL 4677654 by Ben Marsh in Dev-Build branch]
14 lines
488 B
C++
14 lines
488 B
C++
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
struct FMeshDescription;
|
|
class UMaterialInterface;
|
|
|
|
class IMeshMergeExtension
|
|
{
|
|
public:
|
|
virtual void OnCreatedMergedRawMeshes(const TArray<UStaticMeshComponent*>& MergedComponents, const class FMeshMergeDataTracker& DataTracker, TArray<FMeshDescription>& MergedMeshLODs) = 0;
|
|
|
|
virtual void OnCreatedProxyMaterial(const TArray<UStaticMeshComponent*>& MergedComponents, UMaterialInterface* ProxyMaterial) = 0;
|
|
}; |