bp.DatabasePrimingMaxPerFrame

bp.DatabasePrimingMaxPerFrame

#Overview

name: bp.DatabasePrimingMaxPerFrame

This variable is created as a Console Variable (cvar).

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/BlueprintGraph/Private/BlueprintActionDatabase.cpp:1268

Scope: file

Source code excerpt:

int32 GBlueprintDatabasePrimingMaxPerFrame = 16;
static FAutoConsoleVariableRef CVarBlueprintDatabasePrimingMaxPerFrame(
	TEXT("bp.DatabasePrimingMaxPerFrame"),
	GBlueprintDatabasePrimingMaxPerFrame,
	TEXT("How many entries should be primed in to the database per frame."),
	ECVF_Default
);

//------------------------------------------------------------------------------