GeometryCollection.SelectNone
GeometryCollection.SelectNone
#Overview
name: GeometryCollection.SelectNone
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Deselect all geometry in hierarchy.
It is referenced in 2
C++ source files.
#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:90
Scope (from outer to inner):
file
function void IGeometryCollectionEditorPlugin::StartupModule
Source code excerpt:
));
EditorCommands.Add(IConsoleManager::Get().RegisterConsoleCommand(
TEXT("GeometryCollection.SelectNone"),
TEXT("Deselect all geometry in hierarchy."),
FConsoleCommandWithWorldAndArgsDelegate::CreateStatic(&FGeometryCollectionCommands::SelectNone),
ECVF_Default
));
EditorCommands.Add(IConsoleManager::Get().RegisterConsoleCommand(
TEXT("GeometryCollection.SelectLessThenVolume"),
TEXT("Select all geometry with a volume less than specified."),
FConsoleCommandWithWorldAndArgsDelegate::CreateStatic(&FGeometryCollectionCommands::SelectLessThenVolume),
ECVF_Default
));
EditorCommands.Add(IConsoleManager::Get().RegisterConsoleCommand(
#Loc: <Workspace>/Engine/Source/Editor/LevelEditor/Private/LevelEditorActions.cpp:3575
Scope (from outer to inner):
file
function void FLevelEditorActionCallbacks::GeometryCollection_SelectNone
Source code excerpt:
void FLevelEditorActionCallbacks::GeometryCollection_SelectNone()
{
GEditor->Exec(GetWorld(), TEXT("GeometryCollection.SelectNone"));
}
void FLevelEditorActionCallbacks::GeometryCollection_SelectInverseGeometry()
{
GEditor->Exec(GetWorld(), TEXT("GeometryCollection.SelectInverseGeometry"));
}