From f170449b887954eb2acd66ee8fcb9cd245d58ec3 Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Mon, 10 Jul 2017 10:25:37 -0700 Subject: [PATCH] Don't show SPECTATOR app in Desktop mode --- scripts/system/spectatorCamera.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/system/spectatorCamera.js b/scripts/system/spectatorCamera.js index 6a80daae85..99f064e933 100644 --- a/scripts/system/spectatorCamera.js +++ b/scripts/system/spectatorCamera.js @@ -131,10 +131,10 @@ // Relevant Variables: // -button: The tablet button. // -buttonName: The name of the button. - // -showInDesktop: Set to "true" to show the "SPECTATOR" app in desktop mode. + // -showSpectatorInDesktop: Set to "true" to show the "SPECTATOR" app in desktop mode. var button = false; var buttonName = "SPECTATOR"; - var showSpectatorInDesktop = true; + var showSpectatorInDesktop = false; function addOrRemoveButton(isShuttingDown, isHMDMode) { if (!tablet) { print("Warning in addOrRemoveButton(): 'tablet' undefined!");