Documentation for the Unreal C++ Plugin
Loading...
Searching...
No Matches
InteractionLever.h
Go to the documentation of this file.
1// Copyright(c) Pixo Group. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "Components/TextRenderComponent.h"
7#include "Grippables/GrippableStaticMeshActor.h"
8#include "Interactibles/VRLeverComponent.h"
9#include "InteractionLever.generated.h"
10
14UCLASS()
15class PIXOCORE_API AInteractionLever : public AGrippableStaticMeshActor
16{
17 GENERATED_BODY()
18
19public:
20 AInteractionLever(const FObjectInitializer& ObjectInitializer);
21
22 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = Components)
23 UVRLeverComponent* Lever;
24
25 UPROPERTY(VisibleAnywhere, BlueprintReadWrite, Category = Components)
26 UTextRenderComponent* TextRenderComp;
27};
Actor representing an interaction valve.
UTextRenderComponent * TextRenderComp
UPROPERTY(VisibleAnywhere, BlueprintReadWrite, Category = Components)
UVRLeverComponent * Lever
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = Components)