p.Chaos.StopVDRecording
p.Chaos.StopVDRecording
#Overview
name: p.Chaos.StopVDRecording
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Turn off the recording of debugging data
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/Experimental/ChaosVisualDebugger/Private/ChaosVDRuntimeModule.cpp:28
Scope: file
Source code excerpt:
FAutoConsoleCommand StopVDStartRecordingCommand(
TEXT("p.Chaos.StopVDRecording"),
TEXT("Turn off the recording of debugging data"),
FConsoleCommandWithArgsDelegate::CreateLambda([](const TArray<FString>& Args)
{
FChaosVDRuntimeModule::Get().StopRecording();
})
);