ai.debug.so.RegisterAllSmartObjects
ai.debug.so.RegisterAllSmartObjects
#Overview
name: ai.debug.so.RegisterAllSmartObjects
This variable is created as a Console Variable (cvar).
- type:
Cmd - help:
Force register all objects registered in the subsystem to simulate & debug runtime flows (will ignore already registered components).
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/Runtime/SmartObjects/Source/SmartObjectsModule/Private/SmartObjectSubsystem.cpp:52
Scope (from outer to inner):
file
namespace UE::SmartObject
namespace Debug
Source code excerpt:
static FAutoConsoleCommandWithWorld RegisterAllSmartObjectsCmd
(
TEXT("ai.debug.so.RegisterAllSmartObjects"),
TEXT("Force register all objects registered in the subsystem to simulate & debug runtime flows (will ignore already registered components)."),
FConsoleCommandWithWorldDelegate::CreateLambda([](const UWorld* InWorld)
{
if (USmartObjectSubsystem* Subsystem = USmartObjectSubsystem::GetCurrent(InWorld))
{
Subsystem->DebugRegisterAllSmartObjects();