| | 1 | | using DCL; |
| | 2 | | using DCL.Builder; |
| | 3 | | using DCL.Builder.Manifest; |
| | 4 | | using DCL.Helpers; |
| | 5 | | using DCL.Interface; |
| | 6 | | using System; |
| | 7 | | using System.Collections; |
| | 8 | | using System.Linq; |
| | 9 | | using UnityEngine; |
| | 10 | | using Variables.RealmsInfo; |
| | 11 | | using Environment = DCL.Environment; |
| | 12 | | using Object = UnityEngine.Object; |
| | 13 | |
|
| | 14 | | public class BuilderMainPanelController : IHUD, IBuilderMainPanelController |
| | 15 | | { |
| | 16 | | private const string CREATING_PROJECT_ERROR = "Error creating a new project: "; |
| | 17 | | private const string OBTAIN_PROJECT_ERROR = "Error obtaining the project: "; |
| | 18 | | private const string TESTING_ETH_ADDRESS = "0xDc13378daFca7Fe2306368A16BCFac38c80BfCAD"; |
| | 19 | | private const string TESTING_TLD = "org"; |
| | 20 | | private const string VIEW_PREFAB_PATH = "BuilderProjectsPanel"; |
| | 21 | | private const string VIEW_PREFAB_PATH_DEV = "BuilderProjectsPanelDev"; |
| | 22 | |
|
| | 23 | | private const float CACHE_TIME_LAND = 5 * 60; |
| | 24 | | private const float CACHE_TIME_SCENES = 1 * 60; |
| | 25 | | private const float REFRESH_INTERVAL = 2 * 60; |
| | 26 | |
|
| | 27 | | internal IBuilderMainPanelView view; |
| | 28 | |
|
| | 29 | | private ISectionsController sectionsController; |
| | 30 | | private IProjectsController projectsController; |
| | 31 | | private IScenesViewController scenesViewController; |
| | 32 | | private ILandsController landsesController; |
| | 33 | | private UnpublishPopupController unpublishPopupController; |
| | 34 | |
|
| | 35 | | private INewProjectFlowController newProjectFlowController; |
| | 36 | |
|
| | 37 | | private SectionsHandler sectionsHandler; |
| | 38 | | private SceneContextMenuHandler sceneContextMenuHandler; |
| | 39 | | private LeftMenuHandler leftMenuHandler; |
| | 40 | | private LeftMenuSettingsViewHandler leftMenuSettingsViewHandler; |
| | 41 | |
|
| | 42 | | private ITheGraph theGraph; |
| | 43 | | private ICatalyst catalyst; |
| | 44 | |
|
| | 45 | | private bool isInitialized = false; |
| | 46 | | internal bool isFetchingLands = false; |
| | 47 | | internal bool isFetchingProjects = false; |
| | 48 | | private bool sendPlayerOpenPanelEvent = false; |
| | 49 | | private Coroutine fetchDataInterval; |
| | 50 | | private Promise<LandWithAccess[]> fetchLandPromise = null; |
| | 51 | | private Promise<ProjectData[]> fetchProjectsPromise = null; |
| | 52 | |
|
| | 53 | | public event Action OnJumpInOrEdit; |
| | 54 | |
|
| | 55 | | internal IContext context; |
| | 56 | |
|
| 51 | 57 | | BaseVariable<Transform> configureBuilderInFullscreenMenu => DataStore.i.exploreV2.configureBuilderInFullscreenMenu; |
| | 58 | |
|
| 17 | 59 | | public BuilderMainPanelController() |
| | 60 | | { |
| 17 | 61 | | if (DataStore.i.builderInWorld.isDevBuild.Get()) |
| 0 | 62 | | SetView(Object.Instantiate(Resources.Load<BuilderMainPanelView>(VIEW_PREFAB_PATH_DEV))); |
| | 63 | | else |
| 17 | 64 | | SetView(Object.Instantiate(Resources.Load<BuilderMainPanelView>(VIEW_PREFAB_PATH))); |
| | 65 | |
|
| 17 | 66 | | configureBuilderInFullscreenMenu.OnChange += ConfigureBuilderInFullscreenMenuChanged; |
| 17 | 67 | | ConfigureBuilderInFullscreenMenuChanged(configureBuilderInFullscreenMenu.Get(), null); |
| 17 | 68 | | } |
| | 69 | |
|
| | 70 | | internal void SetView(IBuilderMainPanelView view) |
| | 71 | | { |
| 17 | 72 | | this.view = view; |
| 17 | 73 | | view.OnClosePressed += OnClose; |
| 17 | 74 | | view.OnBackPressed += OnBack; |
| 17 | 75 | | } |
| | 76 | |
|
| | 77 | | private void OnBack() |
| | 78 | | { |
| 0 | 79 | | if (newProjectFlowController.IsActive()) |
| 0 | 80 | | newProjectFlowController.Hide(); |
| | 81 | | else |
| 0 | 82 | | OnClose(); |
| 0 | 83 | | } |
| | 84 | |
|
| | 85 | | public void Dispose() |
| | 86 | | { |
| 17 | 87 | | StopFetchInterval(); |
| | 88 | |
|
| 17 | 89 | | sectionsController.OnRequestOpenUrl -= OpenUrl; |
| 17 | 90 | | sectionsController.OnRequestGoToCoords -= GoToCoords; |
| 17 | 91 | | sectionsController.OnRequestEditSceneAtCoords -= OnGoToEditScene; |
| 17 | 92 | | sectionsController.OnCreateProjectRequest -= newProjectFlowController.NewProject; |
| | 93 | |
|
| 17 | 94 | | scenesViewController.OnJumpInPressed -= GoToCoords; |
| 17 | 95 | | scenesViewController.OnRequestOpenUrl -= OpenUrl; |
| 17 | 96 | | scenesViewController.OnEditorPressed -= OnGoToEditScene; |
| 17 | 97 | | projectsController.OnEditorPressed -= GetManifestToEdit; |
| | 98 | |
|
| 17 | 99 | | newProjectFlowController.OnNewProjectCrated -= CreateNewProject; |
| | 100 | |
|
| 17 | 101 | | view.OnCreateProjectPressed -= newProjectFlowController.NewProject; |
| | 102 | |
|
| 17 | 103 | | DataStore.i.HUDs.builderProjectsPanelVisible.OnChange -= OnVisibilityChanged; |
| 17 | 104 | | DataStore.i.builderInWorld.unpublishSceneResult.OnChange -= OnSceneUnpublished; |
| 17 | 105 | | view.OnClosePressed -= OnClose; |
| 17 | 106 | | view.OnBackPressed -= OnBack; |
| | 107 | |
|
| 17 | 108 | | unpublishPopupController?.Dispose(); |
| | 109 | |
|
| 17 | 110 | | fetchLandPromise?.Dispose(); |
| 17 | 111 | | fetchProjectsPromise?.Dispose(); |
| | 112 | |
|
| 17 | 113 | | leftMenuSettingsViewHandler?.Dispose(); |
| 17 | 114 | | sectionsHandler?.Dispose(); |
| 17 | 115 | | sceneContextMenuHandler?.Dispose(); |
| 17 | 116 | | leftMenuHandler?.Dispose(); |
| | 117 | |
|
| 17 | 118 | | sectionsController?.Dispose(); |
| 17 | 119 | | scenesViewController?.Dispose(); |
| | 120 | |
|
| 17 | 121 | | newProjectFlowController?.Dispose(); |
| | 122 | |
|
| 17 | 123 | | configureBuilderInFullscreenMenu.OnChange -= ConfigureBuilderInFullscreenMenuChanged; |
| | 124 | |
|
| 17 | 125 | | view.Dispose(); |
| 17 | 126 | | } |
| | 127 | |
|
| | 128 | | public void Initialize(IContext context) |
| | 129 | | { |
| 0 | 130 | | this.context = context; |
| 0 | 131 | | Initialize(new SectionsController(view.GetSectionContainer()), |
| | 132 | | new ScenesViewController(view.GetSceneCardViewPrefab(), view.GetTransform()), |
| | 133 | | new LandsController(), |
| | 134 | | new ProjectsController(view.GetProjectCardView(), view.GetTransform()), |
| | 135 | | new NewProjectFlowController(), |
| | 136 | | Environment.i.platform.serviceProviders.theGraph, |
| | 137 | | Environment.i.platform.serviceProviders.catalyst); |
| 0 | 138 | | } |
| | 139 | |
|
| | 140 | | internal void Initialize(ISectionsController sectionsController, |
| | 141 | | IScenesViewController scenesViewController, ILandsController landsesController, IProjectsController projectsCont |
| | 142 | | { |
| 17 | 143 | | if (isInitialized) |
| 0 | 144 | | return; |
| | 145 | |
|
| 17 | 146 | | isInitialized = true; |
| | 147 | |
|
| 17 | 148 | | this.sectionsController = sectionsController; |
| 17 | 149 | | this.scenesViewController = scenesViewController; |
| 17 | 150 | | this.landsesController = landsesController; |
| 17 | 151 | | this.projectsController = projectsController; |
| | 152 | |
|
| 17 | 153 | | this.newProjectFlowController = newProjectFlowController; |
| | 154 | |
|
| 17 | 155 | | this.theGraph = theGraph; |
| 17 | 156 | | this.catalyst = catalyst; |
| | 157 | |
|
| 17 | 158 | | this.unpublishPopupController = new UnpublishPopupController(view.GetUnpublishPopup()); |
| | 159 | |
|
| | 160 | | // set listeners for sections, setup searchbar for section, handle request for opening a new section |
| 17 | 161 | | sectionsHandler = new SectionsHandler(sectionsController, scenesViewController, landsesController, projectsContr |
| | 162 | | // handle if main panel or settings panel should be shown in current section |
| 17 | 163 | | leftMenuHandler = new LeftMenuHandler(view, sectionsController); |
| | 164 | | // handle project scene info on the left menu panel |
| 17 | 165 | | leftMenuSettingsViewHandler = new LeftMenuSettingsViewHandler(view.GetSettingsViewReferences(), scenesViewContro |
| | 166 | | // handle scene's context menu options |
| 17 | 167 | | sceneContextMenuHandler = new SceneContextMenuHandler(view.GetSceneCardViewContextMenu(), sectionsController, sc |
| | 168 | |
|
| 17 | 169 | | SetView(); |
| | 170 | |
|
| 17 | 171 | | sectionsController.OnRequestOpenUrl += OpenUrl; |
| 17 | 172 | | sectionsController.OnRequestGoToCoords += GoToCoords; |
| 17 | 173 | | sectionsController.OnRequestEditSceneAtCoords += OnGoToEditScene; |
| 17 | 174 | | sectionsController.OnCreateProjectRequest += newProjectFlowController.NewProject; |
| | 175 | |
|
| 17 | 176 | | scenesViewController.OnJumpInPressed += GoToCoords; |
| 17 | 177 | | scenesViewController.OnRequestOpenUrl += OpenUrl; |
| 17 | 178 | | scenesViewController.OnEditorPressed += OnGoToEditScene; |
| 17 | 179 | | newProjectFlowController.OnNewProjectCrated += CreateNewProject; |
| | 180 | |
|
| 17 | 181 | | view.OnCreateProjectPressed += this.newProjectFlowController.NewProject; |
| 17 | 182 | | this.projectsController.OnEditorPressed += GetManifestToEdit; |
| | 183 | |
|
| 17 | 184 | | DataStore.i.HUDs.builderProjectsPanelVisible.OnChange += OnVisibilityChanged; |
| 17 | 185 | | DataStore.i.builderInWorld.unpublishSceneResult.OnChange += OnSceneUnpublished; |
| 17 | 186 | | } |
| | 187 | |
|
| | 188 | | private void GetManifestToEdit(ProjectData data) |
| | 189 | | { |
| 0 | 190 | | Promise<Manifest> manifestPromise = context.builderAPIController.GetManifestById(data.id); |
| 0 | 191 | | manifestPromise.Then( OpenEditorFromManifest); |
| | 192 | |
|
| 0 | 193 | | manifestPromise.Catch( errorString => |
| | 194 | | { |
| 0 | 195 | | BIWUtils.ShowGenericNotification(OBTAIN_PROJECT_ERROR + errorString); |
| 0 | 196 | | }); |
| 0 | 197 | | } |
| | 198 | |
|
| | 199 | | private void CreateNewProject(ProjectData project) |
| | 200 | | { |
| 0 | 201 | | Promise<Manifest> projectPromise = context.builderAPIController.CreateNewProject(project); |
| | 202 | |
|
| 0 | 203 | | projectPromise.Then( OpenEditorFromManifest); |
| | 204 | |
|
| 0 | 205 | | projectPromise.Catch( errorString => |
| | 206 | | { |
| 0 | 207 | | BIWUtils.ShowGenericNotification(CREATING_PROJECT_ERROR + errorString); |
| 0 | 208 | | }); |
| 0 | 209 | | } |
| | 210 | |
|
| 0 | 211 | | private void OpenEditorFromManifest(Manifest manifest) { context.sceneManager.StartEditorFromManifest(manifest); } |
| | 212 | |
|
| 14 | 213 | | public void SetVisibility(bool visible) { DataStore.i.HUDs.builderProjectsPanelVisible.Set(visible); } |
| | 214 | |
|
| | 215 | | private void OnVisibilityChanged(bool isVisible, bool prev) |
| | 216 | | { |
| 7 | 217 | | if (isVisible == prev) |
| 0 | 218 | | return; |
| | 219 | |
|
| 7 | 220 | | view.SetVisible(isVisible); |
| | 221 | |
|
| 7 | 222 | | if (isVisible) |
| | 223 | | { |
| 4 | 224 | | if (DataStore.i.builderInWorld.landsWithAccess.Get() != null) |
| 4 | 225 | | PanelOpenEvent(DataStore.i.builderInWorld.landsWithAccess.Get()); |
| | 226 | | else |
| 0 | 227 | | sendPlayerOpenPanelEvent = true; |
| | 228 | |
|
| 4 | 229 | | FetchPanelInfo(); |
| 4 | 230 | | StartFetchInterval(); |
| 4 | 231 | | if (DataStore.i.builderInWorld.isDevBuild.Get()) |
| 0 | 232 | | sectionsController.OpenSection(SectionId.PROJECTS); |
| | 233 | | else |
| 4 | 234 | | sectionsController.OpenSection(SectionId.SCENES); |
| 4 | 235 | | } |
| | 236 | | else |
| | 237 | | { |
| 3 | 238 | | StopFetchInterval(); |
| | 239 | | } |
| 3 | 240 | | } |
| | 241 | |
|
| | 242 | | private void OnClose() |
| | 243 | | { |
| 1 | 244 | | if (!view.IsVisible()) |
| 0 | 245 | | return; |
| | 246 | |
|
| 1 | 247 | | SetVisibility(false); |
| | 248 | |
|
| 1 | 249 | | LandWithAccess[] lands = landsesController.GetLands(); |
| 1 | 250 | | if (lands != null) |
| | 251 | | { |
| 1 | 252 | | Vector2Int totalLands = GetAmountOfLandsOwnedAndOperator(lands); |
| 1 | 253 | | BIWAnalytics.PlayerClosesPanel(totalLands.x, totalLands.y); |
| | 254 | | } |
| 1 | 255 | | } |
| | 256 | |
|
| | 257 | | private void PanelOpenEvent(LandWithAccess[] lands) |
| | 258 | | { |
| 4 | 259 | | Vector2Int totalLands = GetAmountOfLandsOwnedAndOperator(lands); |
| 4 | 260 | | BIWAnalytics.PlayerOpenPanel(totalLands.x, totalLands.y); |
| 4 | 261 | | } |
| | 262 | |
|
| | 263 | | /// <summary> |
| | 264 | | /// This counts the amount of lands that the user own and the amount of lands that the user operate |
| | 265 | | /// </summary> |
| | 266 | | /// <param name="lands"></param> |
| | 267 | | /// <returns>Vector2: X = amount of owned lands, Y = amount of operator lands</returns> |
| | 268 | | private Vector2Int GetAmountOfLandsOwnedAndOperator(LandWithAccess[] lands) |
| | 269 | | { |
| 5 | 270 | | int ownedLandsCount = 0; |
| 5 | 271 | | int operatorLandsCount = 0; |
| 18 | 272 | | foreach (var land in lands) |
| | 273 | | { |
| 4 | 274 | | if (land.role == LandRole.OWNER) |
| 4 | 275 | | ownedLandsCount++; |
| | 276 | | else |
| 0 | 277 | | operatorLandsCount++; |
| | 278 | | } |
| | 279 | |
|
| 5 | 280 | | return new Vector2Int(ownedLandsCount, operatorLandsCount); |
| | 281 | | } |
| | 282 | |
|
| | 283 | | private void SetView() |
| | 284 | | { |
| 17 | 285 | | scenesViewController.AddListener((ISceneListener) view); |
| 17 | 286 | | projectsController.AddListener((IProjectsListener) view); |
| 17 | 287 | | } |
| | 288 | |
|
| | 289 | | private void FetchPanelInfo(float landCacheTime = CACHE_TIME_LAND, float scenesCacheTime = CACHE_TIME_SCENES) |
| | 290 | | { |
| 4 | 291 | | if (isFetchingLands || isFetchingProjects) |
| 0 | 292 | | return; |
| | 293 | |
|
| 4 | 294 | | isFetchingLands = true; |
| 4 | 295 | | isFetchingProjects = true; |
| | 296 | |
|
| 4 | 297 | | var address = UserProfile.GetOwnUserProfile().ethAddress; |
| 4 | 298 | | var network = KernelConfig.i.Get().network; |
| | 299 | |
|
| | 300 | | #if UNITY_EDITOR |
| | 301 | | // NOTE: to be able to test in editor without getting a profile we hardcode an address here |
| 4 | 302 | | if (string.IsNullOrEmpty(address)) |
| | 303 | | { |
| 0 | 304 | | address = TESTING_ETH_ADDRESS; |
| 0 | 305 | | network = TESTING_TLD; |
| 0 | 306 | | DataStore.i.realm.playerRealm.Set(new CurrentRealmModel() |
| | 307 | | { |
| | 308 | | domain = $"https://peer-lb.decentraland.{TESTING_TLD}", |
| | 309 | | contentServerUrl = $"https://peer-lb.decentraland.{TESTING_TLD}/content", |
| | 310 | | }); |
| | 311 | | } |
| | 312 | | #endif |
| | 313 | |
|
| 4 | 314 | | sectionsController.SetFetchingDataStart(); |
| | 315 | |
|
| 4 | 316 | | fetchLandPromise = DeployedScenesFetcher.FetchLandsFromOwner(catalyst, theGraph, address, network, landCacheTime |
| 4 | 317 | | fetchLandPromise |
| | 318 | | .Then(LandsFetched) |
| | 319 | | .Catch(LandsFetchedError); |
| | 320 | |
|
| 4 | 321 | | if (!DataStore.i.builderInWorld.isDevBuild.Get()) |
| 4 | 322 | | return; |
| 0 | 323 | | fetchProjectsPromise = BuilderPanelDataFetcher.FetchProjectData(context.builderAPIController); |
| 0 | 324 | | fetchProjectsPromise |
| | 325 | | .Then(ProjectsFetched) |
| | 326 | | .Catch(ProjectsFetchedError); |
| 0 | 327 | | } |
| | 328 | |
|
| | 329 | | internal void ProjectsFetched(ProjectData[] data) |
| | 330 | | { |
| 1 | 331 | | DataStore.i.builderInWorld.projectData.Set(data); |
| 1 | 332 | | isFetchingProjects = false; |
| 1 | 333 | | projectsController.SetProjects(data); |
| 1 | 334 | | UpdateProjectsDeploymentStatus(); |
| 1 | 335 | | } |
| | 336 | |
|
| | 337 | | internal void ProjectsFetchedError(string error) |
| | 338 | | { |
| 1 | 339 | | isFetchingProjects = false; |
| 1 | 340 | | sectionsController.SetFetchingDataEnd<SectionProjectController>(); |
| 1 | 341 | | projectsController.SetProjects(new ProjectData[] { }); |
| 1 | 342 | | BIWUtils.ShowGenericNotification(error); |
| 1 | 343 | | } |
| | 344 | |
|
| | 345 | | private void UpdateProjectsDeploymentStatus() |
| | 346 | | { |
| 2 | 347 | | if (isFetchingLands || isFetchingProjects) |
| 0 | 348 | | return; |
| | 349 | |
|
| 2 | 350 | | projectsController.UpdateDeploymentStatus(); |
| 2 | 351 | | } |
| | 352 | |
|
| | 353 | | internal void LandsFetchedError(string error) |
| | 354 | | { |
| 1 | 355 | | isFetchingLands = false; |
| 1 | 356 | | sectionsController.SetFetchingDataEnd<SectionLandController>(); |
| 1 | 357 | | sectionsController.SetFetchingDataEnd<SectionScenesController>(); |
| 1 | 358 | | landsesController.SetLands(new LandWithAccess[] { }); |
| 1 | 359 | | scenesViewController.SetScenes(new ISceneData[] { }); |
| 1 | 360 | | Debug.LogError(error); |
| 1 | 361 | | } |
| | 362 | |
|
| | 363 | | internal void LandsFetched(LandWithAccess[] lands) |
| | 364 | | { |
| 1 | 365 | | DataStore.i.builderInWorld.landsWithAccess.Set(lands.ToArray(), true); |
| 1 | 366 | | sectionsController.SetFetchingDataEnd<SectionLandController>(); |
| 1 | 367 | | isFetchingLands = false; |
| 1 | 368 | | UpdateProjectsDeploymentStatus(); |
| | 369 | |
|
| | 370 | | try |
| | 371 | | { |
| 2 | 372 | | ISceneData[] places = lands.Where(land => land.scenes != null && land.scenes.Count > 0) |
| 2 | 373 | | .Select(land => land.scenes.Where(scene => !scene.isEmpty).Select(scene => (ISceneData)new SceneData(sce |
| 0 | 374 | | .Aggregate((i, j) => i.Concat(j)) |
| | 375 | | .ToArray(); |
| | 376 | |
|
| 0 | 377 | | if (sendPlayerOpenPanelEvent) |
| 0 | 378 | | PanelOpenEvent(lands); |
| 0 | 379 | | landsesController.SetLands(lands); |
| 0 | 380 | | scenesViewController.SetScenes(places); |
| 0 | 381 | | } |
| 1 | 382 | | catch (Exception e) |
| | 383 | | { |
| 1 | 384 | | landsesController.SetLands(lands); |
| 1 | 385 | | scenesViewController.SetScenes(new ISceneData[] { }); |
| 1 | 386 | | } |
| 1 | 387 | | } |
| | 388 | |
|
| | 389 | | internal void GoToCoords(Vector2Int coords) |
| | 390 | | { |
| 1 | 391 | | WebInterface.GoTo(coords.x, coords.y); |
| 1 | 392 | | SetVisibility(false); |
| 1 | 393 | | OnJumpInOrEdit?.Invoke(); |
| 1 | 394 | | } |
| | 395 | |
|
| 0 | 396 | | private void OpenUrl(string url) { WebInterface.OpenURL(url); } |
| | 397 | |
|
| | 398 | | internal void OnGoToEditScene(Vector2Int coords) |
| | 399 | | { |
| 1 | 400 | | bool isGoingToTeleport = BIWTeleportAndEdit.TeleportAndEdit(coords); |
| 1 | 401 | | if (isGoingToTeleport) |
| | 402 | | { |
| 1 | 403 | | SetVisibility(false); |
| | 404 | | } |
| | 405 | |
|
| 1 | 406 | | OnJumpInOrEdit?.Invoke(); |
| 1 | 407 | | } |
| | 408 | |
|
| | 409 | | private void StartFetchInterval() |
| | 410 | | { |
| 4 | 411 | | if (fetchDataInterval != null) |
| | 412 | | { |
| 0 | 413 | | StopFetchInterval(); |
| | 414 | | } |
| | 415 | |
|
| 4 | 416 | | fetchDataInterval = CoroutineStarter.Start(RefreshDataInterval()); |
| 4 | 417 | | } |
| | 418 | |
|
| | 419 | | private void StopFetchInterval() |
| | 420 | | { |
| 20 | 421 | | CoroutineStarter.Stop(fetchDataInterval); |
| 20 | 422 | | fetchDataInterval = null; |
| 20 | 423 | | } |
| | 424 | |
|
| | 425 | | IEnumerator RefreshDataInterval() |
| | 426 | | { |
| 0 | 427 | | while (true) |
| | 428 | | { |
| 4 | 429 | | yield return WaitForSecondsCache.Get(REFRESH_INTERVAL); |
| 0 | 430 | | FetchPanelInfo(); |
| | 431 | | } |
| | 432 | | } |
| | 433 | |
|
| | 434 | | private void OnSceneUnpublished(PublishSceneResultPayload current, PublishSceneResultPayload previous) |
| | 435 | | { |
| 0 | 436 | | if (current.ok) |
| | 437 | | { |
| 0 | 438 | | FetchPanelInfo(CACHE_TIME_LAND, 0); |
| | 439 | | } |
| 0 | 440 | | } |
| | 441 | |
|
| 34 | 442 | | private void ConfigureBuilderInFullscreenMenuChanged(Transform currentParentTransform, Transform previousParentTrans |
| | 443 | | } |