Gizmos.DotThreshold
Gizmos.DotThreshold
#Overview
name: Gizmos.DotThreshold
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Dot threshold for determining whether the rotation plane is perpendicular to the camera view [0.2, 1.0]
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/Experimental/EditorInteractiveToolsFramework/Private/EditorGizmos/TransformGizmo.cpp:29
Scope (from outer to inner):
file
namespace GizmoLocals
Source code excerpt:
static float DotThreshold = 0.2f;
static FAutoConsoleVariableRef CVarDotThreshold(
TEXT("Gizmos.DotThreshold"),
DotThreshold,
TEXT("Dot threshold for determining whether the rotation plane is perpendicular to the camera view [0.2, 1.0]"),
FConsoleVariableDelegate::CreateLambda([](IConsoleVariable*)
{
DotThreshold = FMath::Clamp(DotThreshold, 0.2, 1.0);
})