Files
UnrealEngineUWP/Engine/Plugins/Editor/MeshEditor/Source/PolygonModeling/UnHideAllGeometryCollectionCommand.h
Ryan Durand 28d3d740dd (Integrating from Dev-EngineMerge to Main)
Second batch of remaining Engine copyright updates.

#rnx
#rb none
#jira none

[CL 10871196 by Ryan Durand in Main branch]
2019-12-27 07:44:07 -05:00

34 lines
952 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "EditableMesh.h"
#include "EngineDefines.h"
#include "GeometryCollectionCommandCommon.h"
#include "MeshEditorCommands.h"
#include "UnHideAllGeometryCollectionCommand.generated.h"
DECLARE_LOG_CATEGORY_EXTERN(LogUnHideAllGeometryCommand, Log, All);
/** Select All chunks in mesh */
UCLASS()
class UUnHideAllGeometryCollectionCommand : public UMeshEditorInstantCommand, public FGeometryCollectionCommandCommon
{
public:
GENERATED_BODY()
protected:
// Overrides
virtual EEditableMeshElementType GetElementType() const override
{
return EEditableMeshElementType::Fracture;
}
virtual FUIAction MakeUIAction(class IMeshEditorModeUIContract& MeshEditorMode) override;
virtual void RegisterUICommand(class FBindingContext* BindingContext) override;
virtual void Execute(class IMeshEditorModeEditingContract& MeshEditorMode) override;
private:
};