mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 00:01:37 -07:00
2f1361a412
CogEngine: Fix and improve the Plot window - Fix ImPlot assert - Improve UI CogSample: - Add Inputs and AnimNotify plot events - Fix ability system warning
24 lines
600 B
C++
24 lines
600 B
C++
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "Animation/AnimNotifies/AnimNotify.h"
|
|
|
|
#include "CogSampleAnimNotify.generated.h"
|
|
|
|
UCLASS()
|
|
class UCogSampleAnimNotify : public UAnimNotify
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
UCogSampleAnimNotify(const FObjectInitializer& ObjectInitializer);
|
|
|
|
UFUNCTION(BlueprintNativeEvent)
|
|
FString GetDebugInfo() const;
|
|
|
|
void Notify(USkeletalMeshComponent* MeshComp, UAnimSequenceBase* Animation, const FAnimNotifyEventReference& EventReference) override;
|
|
|
|
void BranchingPointNotify(FBranchingPointNotifyPayload& BranchingPointPayload) override;
|
|
};
|