bShowWorldScaleProgressBar

bShowWorldScaleProgressBar

#Overview

name: bShowWorldScaleProgressBar

The value of this variable can be defined or overridden in .ini config files. 1 .ini config file referencing this setting variable.

It is referenced in 2 C++ source files.

#Summary

#Setting Variables

#References In INI files

Location: <Workspace>/Engine/Config/BaseEditorSettings.ini:56, section: [/Script/VREditor.VRModeSettings]

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Source/Editor/VREditor/Private/VREditorAvatarActor.cpp:298

Scope (from outer to inner):

file
function     void AVREditorAvatarActor::TickManually

Source code excerpt:

		UVREditorInteractor* RightHandInteractor = VRMode->GetHandInteractor( EControllerHand::Right );

		if (GetDefault<UVRModeSettings>()->bShowWorldScaleProgressBar &&
			LeftHandInteractor != nullptr && RightHandInteractor != nullptr &&
			 ( ( LeftHandInteractor->GetDraggingMode() == EViewportInteractionDraggingMode::World && RightHandInteractor->GetDraggingMode() == EViewportInteractionDraggingMode::AssistingDrag ) ||
			   ( LeftHandInteractor->GetDraggingMode() == EViewportInteractionDraggingMode::AssistingDrag && RightHandInteractor->GetDraggingMode() == EViewportInteractionDraggingMode::World ) ) )
		{
			// Setting all components to be visible
			CurrentScaleProgressMeshComponent->SetVisibility( true );

#Loc: <Workspace>/Engine/Source/Editor/VREditor/Public/VRModeSettings.h:59

Scope (from outer to inner):

file
class        class UVRModeSettings : public UVISettings

Source code excerpt:

	/** Display a progress bar while scaling that shows your current scale */
	UPROPERTY(EditAnywhere, config, Category = "UI Customization")
	uint32 bShowWorldScaleProgressBar : 1;

	/** Adjusts the brightness of the UI panels */
	UPROPERTY(EditAnywhere, config, Category = "UI Customization", meta = (DisplayName = "UI Panel Brightness", ClampMin = 0.01, UIMax = 10.0))
	float UIBrightness;

	/** The size of the transform gizmo */