BP.ToggleUsePackagePathAsDefaultNamespace
BP.ToggleUsePackagePathAsDefaultNamespace
#Overview
name: BP.ToggleUsePackagePathAsDefaultNamespace
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Toggle the use of a type\'s package path as its default namespace when not explicitly assigned. Otherwise, all types default to the global namespace.
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/Editor/Kismet/Private/BlueprintNamespaceRegistry.cpp:43
Scope (from outer to inner):
file
function FBlueprintNamespaceRegistry::FBlueprintNamespaceRegistry
Source code excerpt:
IConsoleManager::Get().RegisterConsoleCommand
(
TEXT("BP.ToggleUsePackagePathAsDefaultNamespace"),
TEXT("Toggle the use of a type's package path as its default namespace when not explicitly assigned. Otherwise, all types default to the global namespace."),
FConsoleCommandDelegate::CreateRaw(this, &FBlueprintNamespaceRegistry::ToggleDefaultNamespace),
ECVF_Default
);
IConsoleManager::Get().RegisterConsoleCommand
(
TEXT("BP.DumpAllRegisteredNamespacePaths"),
TEXT("Dumps all registered namespace paths."),
FConsoleCommandDelegate::CreateRaw(this, &FBlueprintNamespaceRegistry::DumpAllRegisteredPaths),
ECVF_Default
);