wp.Runtime.DebugFilterByCellName

wp.Runtime.DebugFilterByCellName

#Overview

name: wp.Runtime.DebugFilterByCellName

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/Runtime/Engine/Private/WorldPartition/WorldPartitionDebugHelper.cpp:138

Scope: file

Source code excerpt:

TArray<FString> FWorldPartitionDebugHelper::DebugCellNameFilter;
FAutoConsoleCommand FWorldPartitionDebugHelper::DebugFilterByCellNameCommand(
	TEXT("wp.Runtime.DebugFilterByCellName"),
	TEXT("Filter debug diplay of world partition streaming by full or partial cell name. Args [cell name]"),
	FConsoleCommandWithArgsDelegate::CreateLambda([](const TArray<FString>& InArgs)
	{
		TSet<FString> Filter;
		Filter.Append(InArgs);
		DebugCellNameFilter = Filter.Array();