UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
AnimNotifyLibrary.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
8#include "AnimNotifyLibrary.generated.h"
9
10
12
16UCLASS(meta = (ScriptName = "UAnimNotifyLibrary"), MinimalAPI)
18{
20public:
21
26 UFUNCTION(BlueprintPure, Category = "Utilities|Animation|Notifies" , meta = (ScriptMethod))
27 static ENGINE_API bool NotifyStateReachedEnd(const FAnimNotifyEventReference& EventReference);
28
35 UFUNCTION(BlueprintPure, Category = "Utilities|Animation|Notifies" , meta = (ScriptMethod))
37
44 UFUNCTION(BlueprintPure, Category = "Utilities|Animation|Notifies" , meta = (ScriptMethod))
45 static ENGINE_API float GetCurrentAnimationTimeRatio(const FAnimNotifyEventReference& EventReference);
46
55 UFUNCTION(BlueprintPure, Category = "Utilities|Animation|Notifies" , meta = (ScriptMethod))
56 static ENGINE_API float GetCurrentAnimationNotifyStateTime(const FAnimNotifyEventReference& EventReference);
57
64 UFUNCTION(BlueprintPure, Category = "Utilities|Animation|Notifies" , meta = (ScriptMethod))
65 static ENGINE_API float GetCurrentAnimationNotifyStateTimeRatio(const FAnimNotifyEventReference& EventReference);
66
73 UFUNCTION(BlueprintPure, Category = "Utilities|Animation|Notifies" , meta = (ScriptMethod))
74 static ENGINE_API bool IsBlendingOut(const FAnimNotifyEventReference& EventReference);
75};
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define GENERATED_BODY(...)
Definition ObjectMacros.h:765
#define UFUNCTION(...)
Definition ObjectMacros.h:745
#define UCLASS(...)
Definition ObjectMacros.h:776
Definition AnimNotifyLibrary.h:18
Definition BlueprintFunctionLibrary.h:16
Definition AnimNotifyQueue.h:22
float GetCurrentAnimationTime() const
Definition AnimNotifyQueue.h:107