mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
20 lines
657 B
C++
20 lines
657 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Animation/AnimNotifies/AnimNotifyState.h"
|
|
#include "EMontageInterrupt.h"
|
|
#include "FortAnimNotifyState_RootMotionInterrupt.generated.h"
|
|
|
|
UCLASS(Blueprintable, CollapseCategories, EditInlineNew)
|
|
class UFortAnimNotifyState_RootMotionInterrupt : public UAnimNotifyState {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TEnumAsByte<EMontageInterrupt::Type> MontageInterrupt;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
uint8 bAllowMoveInput: 1;
|
|
|
|
UFortAnimNotifyState_RootMotionInterrupt();
|
|
};
|
|
|