Navigation
API > API/Runtime > API/Runtime/Engine
Enum that controls the scoping behavior of FScopedMovementUpdate. Note that EScopedUpdate::ImmediateUpdates is not allowed within outer scopes that defer updates, and any attempt to do so will change the new inner scope to use deferred updates instead.
| Name | EScopedUpdate::Type |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/Engine/ScopedMovementUpdate.h |
| Include Path | #include "Engine/ScopedMovementUpdate.h" |
Syntax
namespace EScopedUpdate
{
enum Type
{
ImmediateUpdates,
DeferredUpdates,
DeferredGroupUpdates,
}
}
Values
| Name | Remarks |
|---|---|
| ImmediateUpdates | Apply changes immediately, this cannot be nested inside deferred updates |
| DeferredUpdates | Apply changes when the last FScopedMovementUpdate on the stack ends. |
| DeferredGroupUpdates | Experimental. |