| | 1 | | using UnityEngine; |
| | 2 | |
|
| | 3 | | namespace DCL |
| | 4 | | { |
| | 5 | | public class DataStore_ExploreV2 |
| | 6 | | { |
| 305 | 7 | | public readonly BaseVariable<bool> isInitialized = new BaseVariable<bool>(false); |
| 305 | 8 | | public readonly BaseVariable<bool> isPlacesAndEventsSectionInitialized = new BaseVariable<bool>(false); |
| 305 | 9 | | public readonly BaseVariable<bool> isOpen = new BaseVariable<bool>(false); |
| 305 | 10 | | public readonly BaseVariable<bool> isInShowAnimationTransiton = new BaseVariable<bool>(false); |
| 305 | 11 | | public readonly BaseVariable<int> currentSectionIndex = new BaseVariable<int>(0); |
| 305 | 12 | | public readonly BaseVariable<bool> placesAndEventsVisible = new BaseVariable<bool>(false); |
| 305 | 13 | | public readonly BaseVariable<bool> profileCardIsOpen = new BaseVariable<bool>(false); |
| 305 | 14 | | public readonly BaseVariable<bool> isSomeModalOpen = new BaseVariable<bool>(false); |
| 305 | 15 | | public readonly BaseVariable<Transform> configureBackpackInFullscreenMenu = new BaseVariable<Transform>(null); |
| 305 | 16 | | public readonly BaseVariable<Transform> configureMapInFullscreenMenu = new BaseVariable<Transform>(null); |
| 305 | 17 | | public readonly BaseVariable<Transform> configureBuilderInFullscreenMenu = new BaseVariable<Transform>(null); |
| 305 | 18 | | public readonly BaseVariable<Transform> configureCameraReelInFullScreenMenu = new BaseVariable<Transform>(null); |
| 305 | 19 | | public readonly BaseVariable<Transform> configureQuestInFullscreenMenu = new BaseVariable<Transform>(null); |
| 305 | 20 | | public readonly BaseVariable<Transform> configureSettingsInFullscreenMenu = new BaseVariable<Transform>(null); |
| 305 | 21 | | public readonly BaseVariable<Transform> configureWalletSectionInFullscreenMenu = new BaseVariable<Transform>(nul |
| 305 | 22 | | public readonly BaseVariable<Transform> configureMyAccountSectionInFullscreenMenu = new BaseVariable<Transform>( |
| 305 | 23 | | public readonly BaseVariable<Transform> topMenuTooltipReference = new BaseVariable<Transform>(null); |
| 305 | 24 | | public readonly BaseVariable<Transform> placesAndEventsTooltipReference = new BaseVariable<Transform>(null); |
| 305 | 25 | | public readonly BaseVariable<Transform> backpackTooltipReference = new BaseVariable<Transform>(null); |
| 305 | 26 | | public readonly BaseVariable<Transform> mapTooltipReference = new BaseVariable<Transform>(null); |
| 305 | 27 | | public readonly BaseVariable<Transform> builderTooltipReference = new BaseVariable<Transform>(null); |
| 305 | 28 | | public readonly BaseVariable<Transform> questTooltipReference = new BaseVariable<Transform>(null); |
| 305 | 29 | | public readonly BaseVariable<Transform> settingsTooltipReference = new BaseVariable<Transform>(null); |
| 305 | 30 | | public readonly BaseVariable<Transform> cameraReelTooltipReference = new BaseVariable<Transform>(null); |
| 305 | 31 | | public readonly BaseVariable<Transform> profileCardTooltipReference = new BaseVariable<Transform>(null); |
| 305 | 32 | | public readonly BaseVariable<ExploreV2CurrentModal> currentVisibleModal = new BaseVariable<ExploreV2CurrentModal |
| | 33 | | } |
| | 34 | | } |