bp.ScriptRecurseLimit
bp.ScriptRecurseLimit
#Overview
name: bp.ScriptRecurseLimit
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Sets the number of recursions before script is considered in an infinite loop.\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/Runtime/CoreUObject/Private/UObject/ScriptCore.cpp:64
Scope: file
Source code excerpt:
static int32 GScriptRecurseLimit = 120;
static FAutoConsoleVariableRef CVarScriptRecurseLimit(
TEXT("bp.ScriptRecurseLimit"),
GScriptRecurseLimit,
TEXT("Sets the number of recursions before script is considered in an infinite loop.\n"),
ECVF_Default
);
#if PER_FUNCTION_SCRIPT_STATS