cook.displaymode
cook.displaymode
#Overview
name: cook.displaymode
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Controls the display for cooker logging of packages:\n 0: No display\n 1: Display the Count of packages remaining\n 2: Display each package by Name\n 3: Display Names and Count\n 4: Display the Instigator of each package\n 5: Display Instigators and Count\n 6: Display Instigators and Names\n 7: Display Instigators and Names and Count\n
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/Editor/UnrealEd/Private/CookOnTheFlyServer.cpp:167
Scope: file
Source code excerpt:
int32 GCookProgressDisplay = (int32)ECookProgressDisplayMode::RemainingPackages;
static FAutoConsoleVariableRef CVarCookDisplayMode(
TEXT("cook.displaymode"),
GCookProgressDisplay,
TEXT("Controls the display for cooker logging of packages:\n")
TEXT(" 0: No display\n")
TEXT(" 1: Display the Count of packages remaining\n")
TEXT(" 2: Display each package by Name\n")
TEXT(" 3: Display Names and Count\n")