wp.Runtime.DrawWorldPartitionIndex

wp.Runtime.DrawWorldPartitionIndex

#Overview

name: wp.Runtime.DrawWorldPartitionIndex

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/WorldPartitionSubsystem.cpp:61

Scope: file

Source code excerpt:

static int32 GDrawWorldPartitionIndex = -1;
static FAutoConsoleCommand CVarDrawWorldPartitionIndex(
	TEXT("wp.Runtime.DrawWorldPartitionIndex"),
	TEXT("Sets the index of the wanted partitioned world to display debug draw.\n")
	TEXT("Sets < 0 to display debug draw all registered partitioned worlds.\n"),
	FConsoleCommandWithArgsDelegate::CreateLambda([](const TArray<FString>& Args)
	{
		if (Args.Num() == 1)
		{