LEAP Documentation 40220
Documentation for the LEAP project
AfflictionInstanceDisableRotate.h
Go to the documentation of this file.
1// Copyright Blue Isle Studios Inc 2018. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
7#include "AfflictionInstanceDisableRotate.generated.h"
8
12UCLASS()
14{
15 GENERATED_BODY()
16public:
17 virtual bool GetBoolModifier() { return bDisableRotationModifier; }
18
19protected:
20 virtual void ApplyModifier() override;
21
22 /* Disables the rotation of the controlled pawn */
23 UPROPERTY(EditDefaultsOnly, Category = "Affliction")
24 bool bDisableRotationModifier = true;
25};
Definition: AfflictionInstanceBool.h:14
Definition: AfflictionInstanceDisableRotate.h:14
virtual bool GetBoolModifier()
Definition: AfflictionInstanceDisableRotate.h:17