From d90919474b1758e545a06fd08b32694cf25b3734 Mon Sep 17 00:00:00 2001 From: Sewmina Date: Fri, 15 Apr 2022 02:24:09 +0530 Subject: [PATCH] Building shop functional and Building states are saved online --- .consulo/copyright/profiles_settings.xml | 5 + .consulo/modules.xml | 417 +++ .consulo/vcs.xml | 7 + .consulo/workspace.xml | 761 +++++ Assembly-CSharp.csproj | 1485 ++++----- Assets/Game/Scenes/GameScene.unity | 2766 ++++++++++------- Assets/Game/Scenes/Login.unity | 3 +- .../ScriptableObjects/BuildingData/Hall.asset | 2 +- .../ScriptableObjects/BuildingData/Mine.asset | 1 + .../BuildingData/MoonMineral.asset | 1 + .../BuildingData/O2Mine.asset | 1 + .../BuildingData/Research Facility.asset | 4 +- Assets/Game/Scripts/Building.cs | 14 + Assets/Game/Scripts/BuildingManager.cs | 38 + Assets/Game/Scripts/BuildingManager.cs.meta | 11 + Assets/Game/Scripts/DBmanager.cs | 77 +- Assets/Game/Scripts/LoginManager.cs | 4 +- Assets/Game/Scripts/SelectedItemMenu.cs | 1 + Assets/Game/Scripts/ShopBuildingButton.cs | 40 + .../Game/Scripts/ShopBuildingButton.cs.meta | 11 + Packages/manifest.json | 13 + Packages/packages-lock.json | 21 + ProjectSettings/PackageManagerSettings.asset | 25 +- UPF.sln | 125 +- Unity.CollabProxy.Editor.csproj | 105 +- Unity.Mathematics.Editor.csproj | 5 +- Unity.Mathematics.csproj | 59 +- Unity.PlasticSCM.Editor.csproj | 298 +- ...derPipeline.Universal.ShaderLibrary.csproj | 3 + Unity.RenderPipelines.Core.Editor.csproj | 63 +- Unity.RenderPipelines.Core.Runtime.csproj | 93 +- ....RenderPipelines.Core.ShaderLibrary.csproj | 3 + ...ines.ShaderGraph.ShaderGraphLibrary.csproj | 3 + Unity.RenderPipelines.Universal.Editor.csproj | 127 +- ...y.RenderPipelines.Universal.Runtime.csproj | 99 +- ...y.RenderPipelines.Universal.Shaders.csproj | 3 + Unity.Searcher.Editor.csproj | 11 +- Unity.Services.Core.Editor.csproj | 59 +- Unity.ShaderGraph.Editor.csproj | 599 ++-- Unity.ShaderGraph.Utilities.csproj | 5 +- Unity.TextMeshPro.Editor.csproj | 43 +- Unity.TextMeshPro.csproj | 61 +- Unity.Timeline.Editor.csproj | 241 +- Unity.Timeline.csproj | 69 +- Unity.VSCode.Editor.csproj | 5 +- Unity.VisualStudio.Editor.csproj | 33 +- UnityEditor.TestRunner.csproj | 146 +- UnityEditor.UI.csproj | 35 +- UnityEngine.TestRunner.csproj | 114 +- UnityEngine.UI.csproj | 67 +- ...mbly-CSharp.csproj.AssemblyReference.cache | Bin 293050 -> 320576 bytes ...tons.Editor.csproj.AssemblyReference.cache | Bin 0 -> 168152 bytes ...EasyButtons.csproj.AssemblyReference.cache | Bin 0 -> 163590 bytes ...roxy.Editor.csproj.AssemblyReference.cache | Bin 170279 -> 172647 bytes ...tics.Editor.csproj.AssemblyReference.cache | Bin 170279 -> 170994 bytes ...Mathematics.csproj.AssemblyReference.cache | Bin 255402 -> 256117 bytes ...cSCM.Editor.csproj.AssemblyReference.cache | Bin 166994 -> 168647 bytes ...aderLibrary.csproj.AssemblyReference.cache | Bin 255402 -> 256117 bytes ...Core.Editor.csproj.AssemblyReference.cache | Bin 170279 -> 170994 bytes ...ore.Runtime.csproj.AssemblyReference.cache | Bin 255402 -> 256117 bytes ...aderLibrary.csproj.AssemblyReference.cache | Bin 255402 -> 256117 bytes ...raphLibrary.csproj.AssemblyReference.cache | Bin 255402 -> 256117 bytes ...rsal.Editor.csproj.AssemblyReference.cache | Bin 170279 -> 170994 bytes ...sal.Runtime.csproj.AssemblyReference.cache | Bin 255402 -> 256117 bytes ...sal.Shaders.csproj.AssemblyReference.cache | Bin 255402 -> 256117 bytes ...cher.Editor.csproj.AssemblyReference.cache | Bin 170279 -> 170994 bytes ...Core.Editor.csproj.AssemblyReference.cache | Bin 170279 -> 170994 bytes ...raph.Editor.csproj.AssemblyReference.cache | Bin 170279 -> 170994 bytes ...h.Utilities.csproj.AssemblyReference.cache | Bin 170279 -> 170994 bytes ...hPro.Editor.csproj.AssemblyReference.cache | Bin 170279 -> 170994 bytes ...TextMeshPro.csproj.AssemblyReference.cache | Bin 255402 -> 256117 bytes ...line.Editor.csproj.AssemblyReference.cache | Bin 170279 -> 170994 bytes ...ty.Timeline.csproj.AssemblyReference.cache | Bin 255402 -> 256117 bytes ...Code.Editor.csproj.AssemblyReference.cache | Bin 170279 -> 170994 bytes ...udio.Editor.csproj.AssemblyReference.cache | Bin 161193 -> 163561 bytes ....ide.Editor.csproj.AssemblyReference.cache | Bin 0 -> 168152 bytes ...tyEditor.UI.csproj.AssemblyReference.cache | Bin 170279 -> 170994 bytes ...tyEngine.UI.csproj.AssemblyReference.cache | Bin 255402 -> 256117 bytes 78 files changed, 5247 insertions(+), 2935 deletions(-) create mode 100644 .consulo/copyright/profiles_settings.xml create mode 100644 .consulo/modules.xml create mode 100644 .consulo/vcs.xml create mode 100644 .consulo/workspace.xml create mode 100644 Assets/Game/Scripts/BuildingManager.cs create mode 100644 Assets/Game/Scripts/BuildingManager.cs.meta create mode 100644 Assets/Game/Scripts/ShopBuildingButton.cs create mode 100644 Assets/Game/Scripts/ShopBuildingButton.cs.meta create mode 100644 obj/Debug/EasyButtons.Editor.csproj.AssemblyReference.cache create mode 100644 obj/Debug/EasyButtons.csproj.AssemblyReference.cache create mode 100644 obj/Debug/Unity.com.consulo.ide.Editor.csproj.AssemblyReference.cache diff --git a/.consulo/copyright/profiles_settings.xml b/.consulo/copyright/profiles_settings.xml new file mode 100644 index 000000000..3572571ad --- /dev/null +++ b/.consulo/copyright/profiles_settings.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/.consulo/modules.xml b/.consulo/modules.xml new file mode 100644 index 000000000..7468c48aa --- /dev/null +++ b/.consulo/modules.xml @@ -0,0 +1,417 @@ + + + + + + + + DEBUG + ENABLE_AR + ENABLE_AUDIO + ENABLE_BURST_AOT + ENABLE_CACHING + ENABLE_CLOTH + ENABLE_CLOUD_LICENSE + ENABLE_CLOUD_SERVICES + ENABLE_CLOUD_SERVICES_ADS + ENABLE_CLOUD_SERVICES_ANALYTICS + ENABLE_CLOUD_SERVICES_BUILD + ENABLE_CLOUD_SERVICES_COLLAB + ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS + ENABLE_CLOUD_SERVICES_CRASH_REPORTING + ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING + ENABLE_CLOUD_SERVICES_PURCHASING + ENABLE_CLOUD_SERVICES_UNET + ENABLE_CLOUD_SERVICES_USE_WEBREQUEST + ENABLE_CRUNCH_TEXTURE_COMPRESSION + ENABLE_CUSTOM_RENDER_TEXTURE + ENABLE_DIRECTOR + ENABLE_DIRECTOR_AUDIO + ENABLE_DIRECTOR_TEXTURE + ENABLE_EDITOR_HUB_LICENSE + ENABLE_EGL + ENABLE_ENGINE_CODE_STRIPPING + ENABLE_EVENT_QUEUE + ENABLE_LEGACY_INPUT_MANAGER + ENABLE_LOCALIZATION + ENABLE_LZMA + ENABLE_MANAGED_ANIMATION_JOBS + ENABLE_MANAGED_AUDIO_JOBS + ENABLE_MANAGED_JOBS + ENABLE_MANAGED_TRANSFORM_JOBS + ENABLE_MANAGED_UNITYTLS + ENABLE_MICROPHONE + ENABLE_MONO + ENABLE_MONO_BDWGC + ENABLE_MULTIPLE_DISPLAYS + ENABLE_NETWORK + ENABLE_ONSCREEN_KEYBOARD + ENABLE_PHYSICS + ENABLE_PROFILER + ENABLE_RUNTIME_GI + ENABLE_RUNTIME_PERMISSIONS + ENABLE_SCRIPTING_GC_WBARRIERS + ENABLE_SPATIALTRACKING + ENABLE_SPRITES + ENABLE_TERRAIN + ENABLE_TEXTURE_STREAMING + ENABLE_TILEMAP + ENABLE_TIMELINE + ENABLE_UNET + ENABLE_UNITYADS_RUNTIME + ENABLE_UNITYEVENTS + ENABLE_UNITYWEBREQUEST + ENABLE_UNITY_COLLECTIONS_CHECKS + ENABLE_VIDEO + ENABLE_VR + ENABLE_WEBCAM + ENABLE_WEBSOCKET_CLIENT + ENABLE_WWW + INCLUDE_DYNAMIC_GI + NET_STANDARD_2_0 + PLATFORM_ANDROID + PLATFORM_EXTENDS_VULKAN_DEVICE + PLATFORM_HAS_MULTIPLE_SWAPCHAINS + PLATFORM_SUPPORTS_MONO + SCENE_TEMPLATE_MODULE + TRACE + UNITY_2017_1_OR_NEWER + UNITY_2017_2_OR_NEWER + UNITY_2017_3_OR_NEWER + UNITY_2017_4_OR_NEWER + UNITY_2018_1_OR_NEWER + UNITY_2018_2_OR_NEWER + UNITY_2018_3_OR_NEWER + UNITY_2018_4_OR_NEWER + UNITY_2019_1_OR_NEWER + UNITY_2019_2_OR_NEWER + UNITY_2019_3_OR_NEWER + UNITY_2019_4_OR_NEWER + UNITY_2020 + UNITY_2020_1_OR_NEWER + UNITY_2020_2_OR_NEWER + UNITY_2020_3 + UNITY_2020_3_26 + UNITY_2020_3_OR_NEWER + UNITY_5_3_OR_NEWER + UNITY_5_4_OR_NEWER + UNITY_5_5_OR_NEWER + UNITY_5_6_OR_NEWER + UNITY_ANDROID + UNITY_ANDROID_API + UNITY_ANDROID_SUPPORTS_SHADOWFILES + UNITY_ASSERTIONS + UNITY_CAN_SHOW_SPLASH_SCREEN + UNITY_EDITOR + UNITY_EDITOR_64 + UNITY_EDITOR_LINUX + UNITY_HAS_GOOGLEVR + UNITY_HAS_TANGO + UNITY_INCLUDE_TESTS + UNITY_TEAM_LICENSE + UNITY_UNITYADS_API + USE_SEARCH_ENGINE_API + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.consulo/vcs.xml b/.consulo/vcs.xml new file mode 100644 index 000000000..5f1c1b26f --- /dev/null +++ b/.consulo/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.consulo/workspace.xml b/.consulo/workspace.xml new file mode 100644 index 000000000..ea5829edc --- /dev/null +++ b/.consulo/workspace.xml @@ -0,0 +1,761 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JsonUtility + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +