You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
21 lines
593 B
C
21 lines
593 B
C
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "CoreMinimal.h"
|
||
|
|
#include "IEditableMeshFormat.h"
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Implements interactive mesh editing support for Static Meshes
|
||
|
|
*/
|
||
|
|
class FStaticMeshEditableMeshFormat : public IEditableMeshFormat
|
||
|
|
{
|
||
|
|
|
||
|
|
public:
|
||
|
|
|
||
|
|
// IEditableMeshFormat interface
|
||
|
|
virtual void FillMeshObjectPtr( class UPrimitiveComponent& Component, FEditableMeshSubMeshAddress& SubMeshAddress ) override;
|
||
|
|
virtual UEditableMesh* MakeEditableMesh( class UPrimitiveComponent& Component, const FEditableMeshSubMeshAddress& SubMeshAddress ) override;
|
||
|
|
|
||
|
|
};
|