You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
26 lines
720 B
C++
26 lines
720 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "EntitySystem/MovieSceneEntityInstantiatorSystem.h"
|
|
#include "EntitySystem/MovieSceneEntitySystemTypes.h"
|
|
#include "EntitySystem/MovieSceneEntityIDs.h"
|
|
|
|
#include "MovieSceneMasterInstantiatorSystem.generated.h"
|
|
|
|
|
|
UCLASS()
|
|
class MOVIESCENE_API UMovieSceneMasterInstantiatorSystem : public UMovieSceneEntityInstantiatorSystem
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
|
|
UMovieSceneMasterInstantiatorSystem(const FObjectInitializer& ObjInit);
|
|
|
|
private:
|
|
|
|
virtual void OnRun(FSystemTaskPrerequisites& InPrerequisites, FSystemSubsequentTasks& Subsequents) override final;
|
|
|
|
void InstantiateAllocation(const UE::MovieScene::FEntityAllocation* ParentAllocation);
|
|
}; |