GeometryCollection.PrintStatistics
GeometryCollection.PrintStatistics
#Overview
name: GeometryCollection.PrintStatistics
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Prints statistics of the contents of the collection.
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/Experimental/GeometryCollectionPlugin/Source/GeometryCollectionEditor/Private/GeometryCollection/GeometryCollectionEditorPlugin.cpp:150
Scope (from outer to inner):
file
function void IGeometryCollectionEditorPlugin::StartupModule
Source code excerpt:
));
EditorCommands.Add(IConsoleManager::Get().RegisterConsoleCommand(
TEXT("GeometryCollection.PrintStatistics"),
TEXT("Prints statistics of the contents of the collection."),
FConsoleCommandWithWorldDelegate::CreateStatic(&FGeometryCollectionCommands::PrintStatistics),
ECVF_Default
));
EditorCommands.Add(IConsoleManager::Get().RegisterConsoleCommand(
TEXT("GeometryCollection.PrintDetailedStatistics"),
TEXT("Prints detailed statistics of the contents of the collection."),
FConsoleCommandWithWorldDelegate::CreateStatic(&FGeometryCollectionCommands::PrintDetailedStatistics),
ECVF_Default
));
EditorCommands.Add(IConsoleManager::Get().RegisterConsoleCommand(