Navigation
API > API/Runtime > API/Runtime/MovieScene
Enumeration that defines a threading model for this entity manager
| Name | UE::MovieScene::EEntityThreadingModel |
| Type | enum |
| Header File | /Engine/Source/Runtime/MovieScene/Public/EntitySystem/MovieSceneMaybeAtomic.h |
| Include Path | #include "EntitySystem/MovieSceneMaybeAtomic.h" |
Syntax
namespace UE
{
namespace MovieScene
{
enum EEntityThreadingModel
{
NoThreading,
TaskGraph,
}
}
}
Values
| Name | Remarks |
|---|---|
| NoThreading | Specified when the data contained within an entity manager does not satisfy the requirements to justify using threaded evaluation |
| TaskGraph | Specified when the data contained within an entity manager is large or complex enough to justify threaded evaluation |