UMovieSceneEntitySystem::DefineImplicitPrerequisite

Creates a relationship between the two system types that ensures any systems of type UpstreamSystemType always execute before DownstreamSystemType if they are both present

Windows
MacOS
Linux

References

Module

MovieScene

Header

/Engine/Source/Runtime/MovieScene/Public/EntitySystem/MovieSceneEntitySystem.h

Include

#include "EntitySystem/MovieSceneEntitySystem.h"

Source

/Engine/Source/Runtime/MovieScene/Private/EntitySystem/MovieSceneEntitySystem.cpp

Syntax

static void DefineImplicitPrerequisite
(
    TSubclassOf< UMovieSceneEntitySystem > UpstreamSystemType,
    TSubclassOf< UMovieSceneEntitySystem > DownstreamSystemType
)

Remarks

Creates a relationship between the two system types that ensures any systems of type UpstreamSystemType always execute before DownstreamSystemType if they are both present

Parameters

Parameter

Description

UpstreamSystemType

The UClass of the system that should always be a prerequisite of DownstreamSystemType (ie, runs first)

DownstreamSystemType

The UClass of the system that should always run after UpstreamSystemType

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss