framepro.ScopeMinTimeMicroseconds

framepro.ScopeMinTimeMicroseconds

#Overview

name: framepro.ScopeMinTimeMicroseconds

The value of this variable can be defined or overridden in .ini config files. 2 .ini config files referencing this setting variable.

It is referenced in 1 C++ source file.

#Summary

#Setting Variables

#References In INI files

Location: <Workspace>/Engine/Config/Mac/BaseMacEngine.ini:33, section: [SystemSettings]

Location: <Workspace>/Engine/Config/Windows/WindowsEngine.ini:16, section: [SystemSettings]

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Source/Runtime/Core/Private/FramePro/FrameProProfiler.cpp:389

Scope: file

Source code excerpt:

static int32 ScopeMinTimeMicroseconds = 25;
static FAutoConsoleVariableRef CVarScopeMinTimeMicroseconds(
	TEXT("framepro.ScopeMinTimeMicroseconds"),
	ScopeMinTimeMicroseconds,
	TEXT("Scopes with time taken below this threshold are not recorded in the FramePro capture.\n")
	TEXT(" This value is only used when starting framepro captures with framepro.startrec.")
);

void FFrameProProfiler::StartFrameProRecordingFromCommand(const TArray< FString >& Args)