Navigation
API > API/Runtime > API/Runtime/Engine
References
| |
|
| Module |
Engine |
| Header |
/Engine/Source/Runtime/Engine/Public/SceneInterface.h |
| Include |
#include "SceneInterface.h" |
Syntax
enum EUpdateAllPrimitiveSceneInfosAsyncOps
{
None = 0,
CacheMeshDrawCommands = 1 << 0,
CreateLightPrimitiveInteractions = 1 << 1,
CacheMaterialUniformExpressions = 1 << 2,
All = CacheMeshDrawCommands | CreateLightPrimitiveInteractions | CacheMaterialUniformExpressions,
}
Values
| Name |
Description |
| None |
|
| CacheMeshDrawCommands |
Cached mesh draw commands are cached asynchronously. |
| CreateLightPrimitiveInteractions |
Light primitive interactions are created asynchronously. |
| CacheMaterialUniformExpressions |
Material uniform expressions are cached asynchronously. |
| All |
|