AbilitySystem.AbilityTask.Debug.AbilityTaskDebugPrintTopNResults
AbilitySystem.AbilityTask.Debug.AbilityTaskDebugPrintTopNResults
#Overview
name: AbilitySystem.AbilityTask.Debug.AbilityTaskDebugPrintTopNResults
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Set N to only print the top N results when printing ability task counts (N = 5 by default, if N = 0 prints all). Use \'AbilitySystem.AbilityTask.Debug.PrintCounts\' to print out the current counts.
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/Plugins/Runtime/GameplayAbilities/Source/GameplayAbilities/Private/Abilities/Tasks/AbilityTask.cpp:53
Scope (from outer to inner):
file
namespace AbilityTaskCVars
Source code excerpt:
static int32 AbilityTaskDebugPrintTopNResults = 5;
static FAutoConsoleVariableRef CVarAbilityTaskDebugPrintTopNResults(
TEXT("AbilitySystem.AbilityTask.Debug.AbilityTaskDebugPrintTopNResults"),
AbilityTaskDebugPrintTopNResults,
TEXT("Set N to only print the top N results when printing ability task counts (N = 5 by default, if N = 0 prints all). Use 'AbilitySystem.AbilityTask.Debug.PrintCounts' to print out the current counts.")
);
static FAutoConsoleCommand AbilityTaskPrintAbilityTaskCountsCmd(
TEXT("AbilitySystem.AbilityTask.Debug.PrintCounts"),