TaskGraph.TaskPriorities.NavTriggerAsyncQueries
TaskGraph.TaskPriorities.NavTriggerAsyncQueries
#Overview
name: TaskGraph.TaskPriorities.NavTriggerAsyncQueries
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Task and thread priority for UNavigationSystemV1::PerformAsyncQueries.\nArguments are three characters: [ThreadPriority][TaskPriority][TaskPriorityIfForcedToNormalThreadPriority] where ThreadPriority is \'h\' or \'n\' or \'b\' (high/normal/background) and TaskPriority is \'h\' or \'n\' (high/normal). Example: TaskGraph.TaskPriorities.NavTriggerAsyncQueries bnh
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/NavigationSystem/Private/NavigationSystem.cpp:1792
Scope: file
Source code excerpt:
FAutoConsoleTaskPriority CPrio_TriggerAsyncQueries(
TEXT("TaskGraph.TaskPriorities.NavTriggerAsyncQueries"),
TEXT("Task and thread priority for UNavigationSystemV1::PerformAsyncQueries."),
ENamedThreads::BackgroundThreadPriority, // if we have background priority task threads, then use them...
ENamedThreads::NormalTaskPriority, // .. at normal task priority
ENamedThreads::NormalTaskPriority // if we don't have background threads, then use normal priority threads at normal task priority instead
);