You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UETOOL-3823 #rb brooke.hubert #preflight 6109d1e9b4288d0001acb7ef [CL 17055606 by michael balzer in ue5-main branch]
63 lines
1.8 KiB
C++
63 lines
1.8 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "InteractiveTool.h"
|
|
#include "InteractiveToolBuilder.h"
|
|
#include "BaseBehaviors/SingleClickBehavior.h"
|
|
#include "SingleClickTool.generated.h"
|
|
|
|
|
|
|
|
/**
|
|
* Builder for USingleClickTool
|
|
*/
|
|
UCLASS()
|
|
class INTERACTIVETOOLSFRAMEWORK_API USingleClickToolBuilder : public UInteractiveToolBuilder
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
virtual bool CanBuildTool(const FToolBuilderState& SceneState) const override;
|
|
virtual UInteractiveTool* BuildTool(const FToolBuilderState& SceneState) const override;
|
|
};
|
|
|
|
|
|
/**
|
|
* USingleClickTool is perhaps the simplest possible interactive tool. It simply
|
|
* reacts to default primary button clicks for the active device (eg left-mouse clicks).
|
|
*
|
|
* The function ::IsHitByClick() determines what is clickable by this Tool. The default is
|
|
* to return true, which means the click will activate anywhere (the Tool itself has no
|
|
* notion of Actors, Components, etc). You can override this function to, for example,
|
|
* filter out clicks that don't hit a target object, etc.
|
|
*
|
|
* The function ::OnClicked() implements the action that will occur when a click happens.
|
|
* You must override this to implement any kind of useful behavior.
|
|
*/
|
|
UCLASS()
|
|
class INTERACTIVETOOLSFRAMEWORK_API USingleClickTool : public UInteractiveTool, public IClickBehaviorTarget
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
|
|
/**
|
|
* Register default primary-button-click InputBehaviors
|
|
*/
|
|
virtual void Setup() override;
|
|
|
|
/**
|
|
* Test if the Target is hit at this 2D position / 3D ray
|
|
*/
|
|
virtual FInputRayHit IsHitByClick(const FInputDeviceRay& ClickPos);
|
|
|
|
/**
|
|
* Click the Target at this 2D position / 3D ray. Default behavior is to print debug string.
|
|
*/
|
|
virtual void OnClicked(const FInputDeviceRay& ClickPos);
|
|
|
|
};
|
|
|