Files
UnrealEngine/Engine/Source/Runtime/MovieSceneTracks/Public/Systems/IntegerChannelEvaluatorSystem.h
2025-05-18 13:04:45 +08:00

26 lines
780 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "EntitySystem/MovieSceneEntitySystem.h"
#include "UObject/ObjectMacros.h"
#include "UObject/UObjectGlobals.h"
#include "IntegerChannelEvaluatorSystem.generated.h"
/**
* System that is responsible for evaluating integer channels.
*/
UCLASS(MinimalAPI)
class UIntegerChannelEvaluatorSystem : public UMovieSceneEntitySystem
{
public:
GENERATED_BODY()
MOVIESCENETRACKS_API UIntegerChannelEvaluatorSystem(const FObjectInitializer& ObjInit);
MOVIESCENETRACKS_API virtual void OnSchedulePersistentTasks(UE::MovieScene::IEntitySystemScheduler* TaskScheduler) override;
MOVIESCENETRACKS_API virtual void OnRun(FSystemTaskPrerequisites& InPrerequisites, FSystemSubsequentTasks& Subsequents) override;
};