You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
58 lines
1.9 KiB
C++
58 lines
1.9 KiB
C++
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
/**
|
|
* Allows the user to place verts in an orthographic viewport and create a brush afterwards.
|
|
*/
|
|
|
|
#pragma once
|
|
#include "GeomModifier_Pen.generated.h"
|
|
|
|
UCLASS()
|
|
class UGeomModifier_Pen : public UGeomModifier_Edit
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
/** If true, the shape will be automatically extruded into a brush upon completion. */
|
|
UPROPERTY(EditAnywhere, Category=Settings)
|
|
uint32 bAutoExtrude:1;
|
|
|
|
/** If true, the tool will try and optimize the resulting triangles into convex polygons before creating the brush. */
|
|
UPROPERTY(EditAnywhere, Category=Settings)
|
|
uint32 bCreateConvexPolygons:1;
|
|
|
|
/** If true, the resulting shape will be turned into an ABrushShape actor. */
|
|
UPROPERTY(EditAnywhere, Category=Settings)
|
|
uint32 bCreateBrushShape:1;
|
|
|
|
/** How far to extrude the newly created brush if bAutoExtrude is set to true. */
|
|
UPROPERTY(EditAnywhere, Category=Settings)
|
|
int32 ExtrudeDepth;
|
|
|
|
/** The vertices that the user has dropped down in the world so far. */
|
|
UPROPERTY()
|
|
TArray<FVector> ShapeVertices;
|
|
|
|
/** The mouse position, in world space, where the user currently is hovering (snapped to grid if that setting is enabled). */
|
|
UPROPERTY(transient)
|
|
FVector MouseWorldSpacePos;
|
|
|
|
|
|
FLevelEditorViewportClient* UsingViewportClient;
|
|
|
|
// Begin UGeomModifier Interface
|
|
virtual bool InputKey(class FLevelEditorViewportClient* ViewportClient, FViewport* Viewport, FKey Key, EInputEvent Event) OVERRIDE;
|
|
virtual void Render(const FSceneView* View,FViewport* Viewport,FPrimitiveDrawInterface* PDI) OVERRIDE;
|
|
virtual void DrawHUD(FLevelEditorViewportClient* ViewportClient,FViewport* Viewport,const FSceneView* View,FCanvas* Canvas) OVERRIDE;
|
|
virtual void Tick(FLevelEditorViewportClient* ViewportClient,float DeltaTime) OVERRIDE;
|
|
virtual void WasActivated() OVERRIDE;
|
|
protected:
|
|
virtual bool OnApply() OVERRIDE;
|
|
// End UGeomModifier Interface
|
|
private:
|
|
void Apply();
|
|
};
|
|
|
|
|
|
|