@@ -54,6 +54,8 @@ export interface Config {
5454 xyDimensions : boolean ;
5555 zDimension : boolean ;
5656 promoInfo : boolean ;
57+ settingsBar : boolean ;
58+ zoomBeacons : boolean ;
5759 solar : boolean ;
5860 utilitiesPost : boolean ;
5961 packaging : boolean ;
@@ -123,6 +125,8 @@ export const INITIAL: Config = {
123125 xyDimensions : false ,
124126 zDimension : false ,
125127 promoInfo : true ,
128+ settingsBar : true ,
129+ zoomBeacons : true ,
126130 solar : false ,
127131 utilitiesPost : true ,
128132 packaging : false ,
@@ -152,9 +156,9 @@ export const BOOLEAN_KEYS = [
152156 "legsFlush" , "labels" , "labelsOnHover" , "ground" , "grid" , "axes" , "trail" ,
153157 "tracks" , "clouds" , "perspective" , "bot" , "laser" , "cableCarriers" ,
154158 "viewCube" , "stats" , "config" , "zoom" , "pan" , "bounds" , "threeAxes" ,
155- "xyDimensions" , "zDimension" , "promoInfo" , "solar " , "utilitiesPost " ,
156- "packaging " , "lab " , "people " , "lowDetail " , "eventDebug " , "cableDebug " ,
157- "zoomBeaconDebug" , "animate" ,
159+ "xyDimensions" , "zDimension" , "promoInfo" , "settingsBar " , "zoomBeacons " ,
160+ "solar " , "utilitiesPost " , "packaging " , "lab " , "people " , "lowDetail " ,
161+ "eventDebug" , "cableDebug" , " zoomBeaconDebug", "animate" ,
158162] ;
159163
160164export const PRESETS : Record < string , Config > = {
@@ -259,6 +263,8 @@ export const PRESETS: Record<string, Config> = {
259263 xyDimensions : false ,
260264 zDimension : false ,
261265 promoInfo : false ,
266+ settingsBar : false ,
267+ zoomBeacons : false ,
262268 solar : false ,
263269 utilitiesPost : false ,
264270 packaging : false ,
@@ -308,6 +314,8 @@ export const PRESETS: Record<string, Config> = {
308314 xyDimensions : true ,
309315 zDimension : true ,
310316 promoInfo : true ,
317+ settingsBar : true ,
318+ zoomBeacons : true ,
311319 solar : true ,
312320 utilitiesPost : true ,
313321 packaging : true ,
@@ -335,9 +343,10 @@ const OTHER_CONFIG_KEYS: (keyof Config)[] = [
335343 "bedBrightness" , "soilBrightness" , "plants" , "labels" , "ground" , "grid" , "axes" ,
336344 "trail" , "clouds" , "sunInclination" , "sunAzimuth" , "perspective" , "bot" , "laser" ,
337345 "tool" , "cableCarriers" , "viewCube" , "stats" , "config" , "zoom" , "bounds" ,
338- "threeAxes" , "xyDimensions" , "zDimension" , "labelsOnHover" , "promoInfo" , "pan" ,
339- "solar" , "utilitiesPost" , "packaging" , "lab" , "people" , "scene" , "lowDetail" ,
340- "eventDebug" , "cableDebug" , "zoomBeaconDebug" , "animate" ,
346+ "threeAxes" , "xyDimensions" , "zDimension" , "labelsOnHover" , "promoInfo" ,
347+ "settingsBar" , "zoomBeacons" , "pan" , "solar" , "utilitiesPost" , "packaging" , "lab" ,
348+ "people" , "scene" , "lowDetail" , "eventDebug" , "cableDebug" , "zoomBeaconDebug" ,
349+ "animate" ,
341350] ;
342351
343352export const modifyConfig = ( config : Config , update : Partial < Config > ) => {
0 commit comments