You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Jimmy.Andrews #rnx #jira UE-132659 #preflight 617873b073fec30001c02f1d #ROBOMERGE-AUTHOR: semion.piskarev #ROBOMERGE-SOURCE: CL 17947002 in //UE5/Release-5.0/... via CL 17947021 via CL 17947037 #ROBOMERGE-BOT: STARSHIP (Release-Engine-Test -> Main) (v885-17909292) [CL 17947060 by semion piskarev in ue5-main branch]
103 lines
3.4 KiB
C++
103 lines
3.4 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "BaseBehaviors/BehaviorTargetInterfaces.h"
|
|
#include "InteractiveToolActivity.h"
|
|
|
|
#include "PolyEditInsetOutsetActivity.generated.h"
|
|
|
|
class UPolyEditActivityContext;
|
|
class UPolyEditPreviewMesh;
|
|
class USpatialCurveDistanceMechanic;
|
|
|
|
UCLASS()
|
|
class MESHMODELINGTOOLS_API UPolyEditInsetOutsetProperties : public UInteractiveToolPropertySet
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
/** Amount of smoothing applied to outset boundary */
|
|
UPROPERTY(EditAnywhere, Category = "Inset/Outset",
|
|
meta = (UIMin = "0.0", UIMax = "1.0", EditCondition = "bBoundaryOnly == false"))
|
|
float Softness = 0.5;
|
|
|
|
/** Controls whether outset operation will move interior vertices as well as border vertices */
|
|
UPROPERTY(EditAnywhere, Category = "Inset/Outset", AdvancedDisplay)
|
|
bool bBoundaryOnly = false;
|
|
|
|
/** Tweak area scaling when solving for interior vertices */
|
|
UPROPERTY(EditAnywhere, Category = "Inset/Outset", AdvancedDisplay,
|
|
meta = (UIMin = "0.0", UIMax = "1.0", EditCondition = "bBoundaryOnly == false"))
|
|
float AreaScale = true;
|
|
|
|
/** When insetting, determines whether vertices in inset region should be projected back onto input surface */
|
|
UPROPERTY(EditAnywhere, Category = "Inset/Outset", Meta = (EditCondition = "!bOutset", HideEditConditionToggle, EditConditionHides))
|
|
bool bReproject = true;
|
|
|
|
//~ This is not user editable- it gets set by PolyEdit depending on whether the user clicks
|
|
//~ inset or outset. Currently, both operations share the same code, and one may argue that
|
|
//~ we should just determine which to do based on where the user clicks. However, our long
|
|
//~ term plan is that they will be more differentiated in operation, to the point that we
|
|
//~ may split them into separate activities.
|
|
UPROPERTY()
|
|
bool bOutset = false;
|
|
};
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class MESHMODELINGTOOLS_API UPolyEditInsetOutsetActivity : public UInteractiveToolActivity,
|
|
public IClickBehaviorTarget, public IHoverBehaviorTarget
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
// IInteractiveToolActivity
|
|
virtual void Setup(UInteractiveTool* ParentTool) override;
|
|
virtual void Shutdown(EToolShutdownType ShutdownType) override;
|
|
virtual bool CanStart() const override;
|
|
virtual EToolActivityStartResult Start() override;
|
|
virtual bool IsRunning() const override { return bIsRunning; }
|
|
virtual bool CanAccept() const override;
|
|
virtual EToolActivityEndResult End(EToolShutdownType) override;
|
|
virtual void Render(IToolsContextRenderAPI* RenderAPI) override;
|
|
virtual void Tick(float DeltaTime) override;
|
|
|
|
// IClickBehaviorTarget API
|
|
virtual FInputRayHit IsHitByClick(const FInputDeviceRay& ClickPos) override;
|
|
virtual void OnClicked(const FInputDeviceRay& ClickPos) override;
|
|
|
|
// IHoverBehaviorTarget implementation
|
|
virtual FInputRayHit BeginHoverSequenceHitTest(const FInputDeviceRay& PressPos) override;
|
|
virtual void OnBeginHover(const FInputDeviceRay& DevicePos) override {}
|
|
virtual bool OnUpdateHover(const FInputDeviceRay& DevicePos) override;
|
|
virtual void OnEndHover() override {}
|
|
|
|
UPROPERTY()
|
|
TObjectPtr<UPolyEditInsetOutsetProperties> Settings;
|
|
|
|
protected:
|
|
void Clear();
|
|
bool BeginInset();
|
|
void ApplyInset();
|
|
|
|
bool bIsRunning = false;
|
|
bool bPreviewUpdatePending = false;
|
|
|
|
UPROPERTY()
|
|
TObjectPtr<UPolyEditPreviewMesh> EditPreview;
|
|
|
|
UPROPERTY()
|
|
TObjectPtr<USpatialCurveDistanceMechanic> CurveDistMechanic = nullptr;
|
|
|
|
UPROPERTY()
|
|
TObjectPtr<UPolyEditActivityContext> ActivityContext;
|
|
|
|
float UVScaleFactor = 1.0f;
|
|
};
|