vr.HMDVersion
vr.HMDVersion
#Overview
name: vr.HMDVersion
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Prints version information for the current HMD device.
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/Runtime/XRBase/Source/XRBase/Private/HeadMountedDisplayConsoleCommands.cpp:442
Scope: file
Source code excerpt:
static FAutoConsoleCommand CHMDVersionCmd(
TEXT("vr.HMDVersion"),
*LOCTEXT("CCommandText_HMDVersion", "Prints version information for the current HMD device.").ToString(),
FConsoleCommandWithWorldArgsAndOutputDeviceDelegate::CreateStatic(HMDVersion));
static void WorldToMeters(const TArray<FString>& Args, UWorld* World, FOutputDevice& Ar)
{
if (Args.Num())
#Loc: <Workspace>/Engine/Plugins/Runtime/XRBase/Source/XRBase/Private/HeadMountedDisplayConsoleCommands.cpp:534
Scope (from outer to inner):
file
function static bool CompatExec
Source code excerpt:
else if (FParse::Command(&Cmd, TEXT("HMDVERSION")))
{
AliasedCommand = TEXT("vr.HMDVersion");
}
if (!AliasedCommand.IsEmpty())
{
Ar.Logf(ELogVerbosity::Warning, TEXT("%s is deprecated. Use %s instead"), OrigCmd, *AliasedCommand);