├── .github └── FUNDING.yml ├── ProjectSettings ├── ProjectVersion.txt ├── ClusterInputManager.asset ├── PresetManager.asset ├── NetworkManager.asset ├── EditorBuildSettings.asset ├── VersionControlSettings.asset ├── TimeManager.asset ├── VFXManager.asset ├── AudioManager.asset ├── TagManager.asset ├── EditorSettings.asset ├── UnityConnectSettings.asset ├── DynamicsManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── NavMeshAreas.asset ├── GraphicsSettings.asset ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── InputManager.asset └── ProjectSettings.asset ├── Assets ├── Scripts.meta ├── Examples.meta ├── Examples │ ├── Scenes.meta │ └── Scenes │ │ ├── ExampleScene.unity.meta │ │ └── ExampleScene.unity └── Scripts │ ├── MaskInverter.cs.meta │ └── MaskInverter.cs ├── README.md ├── UserSettings └── EditorUserSettings.asset ├── LICENSE ├── .gitignore └── Packages ├── manifest.json └── packages-lock.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | custom: [https://nowpayments.io/donation/dreamcode] 3 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2020.3.41f1 2 | m_EditorVersionWithRevision: 2020.3.41f1 (7c19dc9acfda) 3 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a570a30c85318741b7ffad1a0916845 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /Assets/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69d5b429c12de5b4a81cd0d46f73d487 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95cbb4c2349e5ad4f99994ff452bbab9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scenes/ExampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 174a9ea353513a84da8b6a0d6aeb0a8d 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Assets/Scripts/MaskInverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b6173ba2cbebd8459659d17dd098fc1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_StripUpdateShader: {fileID: 0} 10 | m_RenderPipeSettingsPath: 11 | m_FixedTimeStep: 0.016666668 12 | m_MaxDeltaTime: 0.05 13 | m_CompiledVersion: 0 14 | m_RuntimeVersion: 0 15 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 0 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_SpatializerPlugin: 15 | m_AmbisonicDecoderPlugin: 16 | m_DisableAudio: 0 17 | m_VirtualizeEffects: 1 18 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /Assets/Scripts/MaskInverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using UnityEngine.UI; 4 | using UnityEngine.Rendering; 5 | 6 | namespace DreamCode.UI 7 | { 8 | [AddComponentMenu("DreamCode/UI/Mask Inverter")] 9 | public sealed class MaskInverter : MonoBehaviour, IMaterialModifier 10 | { 11 | private static readonly int _stencilComp = Shader.PropertyToID("_StencilComp"); 12 | 13 | public Material GetModifiedMaterial(Material baseMaterial) 14 | { 15 | var resultMaterial = new Material(baseMaterial); 16 | resultMaterial.SetFloat(_stencilComp, Convert.ToSingle(CompareFunction.NotEqual)); 17 | return resultMaterial; 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 7 7 | m_ExternalVersionControlSupport: Hidden Meta Files 8 | m_SerializationMode: 2 9 | m_LineEndingsForNewScripts: 2 10 | m_DefaultBehaviorMode: 0 11 | m_SpritePackerMode: 0 12 | m_SpritePackerPaddingPower: 1 13 | m_EtcTextureCompressorBehavior: 1 14 | m_EtcTextureFastCompressor: 1 15 | m_EtcTextureNormalCompressor: 2 16 | m_EtcTextureBestCompressor: 4 17 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp 18 | m_ProjectGenerationRootNamespace: 19 | m_UserGeneratedProjectSuffix: 20 | m_CollabEditorSettings: 21 | inProgressEnabled: 1 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # What is it :mag: 2 | 3 | Reverse Mask of Unity "Mask" component. 4 | ![mask_test](https://cloud.githubusercontent.com/assets/7010398/10592593/955f4836-76c5-11e5-9262-81b36b241c68.PNG) 5 | 6 | # Usage :computer: 7 | 8 | Add a `Mask Inverter` component to the child UI element of the Mask component 9 | 10 | `DreamCode > UI > Mask Inverter` 11 | 12 | ![image](https://user-images.githubusercontent.com/7010398/235316659-6f0c5d83-8d86-4a0d-aaaa-baddd7e9d72a.png) 13 | 14 | ![image](https://user-images.githubusercontent.com/7010398/235317171-d6d601dd-8f44-4aa9-a9cd-7624fe1cab68.png) 15 | 16 | https://github.com/user-attachments/assets/547f0f35-2d68-4fd4-9bd1-53299d9434a1 17 | 18 | # Samples 📖 19 | 20 | See `Assets\Examples\Scenes\ExampleScene` 21 | -------------------------------------------------------------------------------- /UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!162 &1 4 | EditorUserSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_ConfigSettings: 8 | RecentlyUsedScenePath-0: 9 | value: 22424703114646760c07026c052d56040f 10 | flags: 0 11 | RecentlyUsedScenePath-1: 12 | value: 224247031146467e150f01321c264c5f25141d24293b691535281023eee5073be7e933a7f234362820 13 | flags: 0 14 | vcSharedLogLevel: 15 | value: 0d5e400f0650 16 | flags: 0 17 | m_VCAutomaticAdd: 1 18 | m_VCDebugCom: 0 19 | m_VCDebugCmd: 0 20 | m_VCDebugOut: 0 21 | m_SemanticMergeMode: 2 22 | m_VCShowFailedCheckout: 1 23 | m_VCOverwriteFailedCheckoutAssets: 1 24 | m_VCProjectOverlayIcons: 1 25 | m_VCHierarchyOverlayIcons: 1 26 | m_VCOtherOverlayIcons: 1 27 | m_VCAllowAsyncUpdate: 1 28 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | m_Enabled: 0 7 | m_TestMode: 0 8 | m_TestEventUrl: 9 | m_TestConfigUrl: 10 | m_TestInitMode: 0 11 | CrashReportingSettings: 12 | m_EventUrl: https://perf-events.cloud.unity3d.com/api/events/crashes 13 | m_NativeEventUrl: https://perf-events.cloud.unity3d.com/symbolicate 14 | m_Enabled: 0 15 | m_CaptureEditorExceptions: 1 16 | UnityPurchasingSettings: 17 | m_Enabled: 0 18 | m_TestMode: 0 19 | UnityAnalyticsSettings: 20 | m_Enabled: 1 21 | m_InitializeOnStartup: 1 22 | m_TestMode: 0 23 | m_TestEventUrl: 24 | m_TestConfigUrl: 25 | UnityAdsSettings: 26 | m_Enabled: 0 27 | m_InitializeOnStartup: 1 28 | m_TestMode: 0 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | m_GameIds: {} 32 | m_GameId: 33 | PerformanceReportingSettings: 34 | m_Enabled: 0 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Yaroslav Petrichka 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 7 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_ClothInterCollisionDistance: 0 18 | m_ClothInterCollisionStiffness: 0 19 | m_ContactsGeneration: 1 20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 21 | m_AutoSimulation: 1 22 | m_AutoSyncTransforms: 1 23 | m_ClothInterCollisionSettingsToggle: 0 24 | m_ContactPairsMode: 0 25 | m_BroadphaseType: 0 26 | m_WorldBounds: 27 | m_Center: {x: 0, y: 0, z: 0} 28 | m_Extent: {x: 250, y: 250, z: 250} 29 | m_WorldSubdivisions: 8 30 | -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_EnablePreviewPackages: 0 16 | m_EnablePackageDependencies: 0 17 | m_AdvancedSettingsExpanded: 1 18 | m_ScopedRegistriesSettingsExpanded: 1 19 | oneTimeWarningShown: 0 20 | m_Registries: 21 | - m_Id: main 22 | m_Name: 23 | m_Url: https://packages.unity.com 24 | m_Scopes: [] 25 | m_IsDefault: 1 26 | m_Capabilities: 7 27 | m_UserSelectedRegistryName: 28 | m_UserAddingNewScopedRegistry: 0 29 | m_RegistryInfoDraft: 30 | m_ErrorMessage: 31 | m_Original: 32 | m_Id: 33 | m_Name: 34 | m_Url: 35 | m_Scopes: [] 36 | m_IsDefault: 0 37 | m_Capabilities: 0 38 | m_Modified: 0 39 | m_Name: 40 | m_Url: 41 | m_Scopes: 42 | - 43 | m_SelectedScopeIndex: 0 44 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # This .gitignore file should be placed at the root of your Unity project directory 2 | # 3 | # Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore 4 | # 5 | /[Ll]ibrary/ 6 | /[Tt]emp/ 7 | /[Oo]bj/ 8 | /[Bb]uild/ 9 | /[Bb]uilds/ 10 | /[Ll]ogs/ 11 | /[Mm]emoryCaptures/ 12 | 13 | # Asset meta data should only be ignored when the corresponding asset is also ignored 14 | !/[Aa]ssets/**/*.meta 15 | 16 | # Uncomment this line if you wish to ignore the asset store tools plugin 17 | # /[Aa]ssets/AssetStoreTools* 18 | 19 | # Autogenerated Jetbrains Rider plugin 20 | [Aa]ssets/Plugins/Editor/JetBrains* 21 | 22 | # Visual Studio cache directory 23 | .vs/ 24 | 25 | # Gradle cache directory 26 | .gradle/ 27 | 28 | # Autogenerated VS/MD/Consulo solution and project files 29 | ExportedObj/ 30 | .consulo/ 31 | *.csproj 32 | *.unityproj 33 | *.sln 34 | *.suo 35 | *.tmp 36 | *.user 37 | *.userprefs 38 | *.pidb 39 | *.booproj 40 | *.svd 41 | *.pdb 42 | *.mdb 43 | *.opendb 44 | *.VC.db 45 | 46 | # Unity3D generated meta files 47 | *.pidb.meta 48 | *.pdb.meta 49 | *.mdb.meta 50 | 51 | # Unity3D generated file on crash reports 52 | sysinfo.txt 53 | 54 | # Builds 55 | *.apk 56 | *.unitypackage 57 | 58 | # Crashlytics generated file 59 | crashlytics-build.properties -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_Gravity: {x: 0, y: -9.81} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_VelocityIterations: 8 10 | m_PositionIterations: 3 11 | m_VelocityThreshold: 1 12 | m_MaxLinearCorrection: 0.2 13 | m_MaxAngularCorrection: 8 14 | m_MaxTranslationSpeed: 100 15 | m_MaxRotationSpeed: 360 16 | m_BaumgarteScale: 0.2 17 | m_BaumgarteTimeOfImpactScale: 0.75 18 | m_TimeToSleep: 0.5 19 | m_LinearSleepTolerance: 0.01 20 | m_AngularSleepTolerance: 2 21 | m_DefaultContactOffset: 0.01 22 | m_AutoSimulation: 1 23 | m_QueriesHitTriggers: 1 24 | m_QueriesStartInColliders: 1 25 | m_ChangeStopsCallbacks: 0 26 | m_CallbacksOnDisable: 1 27 | m_AutoSyncTransforms: 1 28 | m_AlwaysShowColliders: 0 29 | m_ShowColliderSleep: 1 30 | m_ShowColliderContacts: 0 31 | m_ShowColliderAABB: 0 32 | m_ContactArrowScale: 0.2 33 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 34 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 35 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 36 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 37 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 38 | -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshProjectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | areas: 8 | - name: Walkable 9 | cost: 1 10 | - name: Not Walkable 11 | cost: 1 12 | - name: Jump 13 | cost: 2 14 | - name: 15 | cost: 1 16 | - name: 17 | cost: 1 18 | - name: 19 | cost: 1 20 | - name: 21 | cost: 1 22 | - name: 23 | cost: 1 24 | - name: 25 | cost: 1 26 | - name: 27 | cost: 1 28 | - name: 29 | cost: 1 30 | - name: 31 | cost: 1 32 | - name: 33 | cost: 1 34 | - name: 35 | cost: 1 36 | - name: 37 | cost: 1 38 | - name: 39 | cost: 1 40 | - name: 41 | cost: 1 42 | - name: 43 | cost: 1 44 | - name: 45 | cost: 1 46 | - name: 47 | cost: 1 48 | - name: 49 | cost: 1 50 | - name: 51 | cost: 1 52 | - name: 53 | cost: 1 54 | - name: 55 | cost: 1 56 | - name: 57 | cost: 1 58 | - name: 59 | cost: 1 60 | - name: 61 | cost: 1 62 | - name: 63 | cost: 1 64 | - name: 65 | cost: 1 66 | - name: 67 | cost: 1 68 | - name: 69 | cost: 1 70 | - name: 71 | cost: 1 72 | m_LastAgentTypeID: -887442657 73 | m_Settings: 74 | - serializedVersion: 2 75 | agentTypeID: 0 76 | agentRadius: 0.5 77 | agentHeight: 2 78 | agentSlope: 45 79 | agentClimb: 0.75 80 | ledgeDropHeight: 0 81 | maxJumpAcrossDistance: 0 82 | minRegionArea: 2 83 | manualCellSize: 0 84 | cellSize: 0.16666667 85 | manualTileSize: 0 86 | tileSize: 256 87 | accuratePlacement: 0 88 | debug: 89 | m_Flags: 0 90 | m_SettingNames: 91 | - Humanoid 92 | -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.2d.sprite": "1.0.0", 4 | "com.unity.collab-proxy": "1.17.2", 5 | "com.unity.ide.rider": "3.0.15", 6 | "com.unity.ide.visualstudio": "2.0.16", 7 | "com.unity.ide.vscode": "1.2.5", 8 | "com.unity.test-framework": "1.1.33", 9 | "com.unity.textmeshpro": "3.0.6", 10 | "com.unity.timeline": "1.4.8", 11 | "com.unity.ugui": "1.0.0", 12 | "com.unity.modules.ai": "1.0.0", 13 | "com.unity.modules.androidjni": "1.0.0", 14 | "com.unity.modules.animation": "1.0.0", 15 | "com.unity.modules.assetbundle": "1.0.0", 16 | "com.unity.modules.audio": "1.0.0", 17 | "com.unity.modules.cloth": "1.0.0", 18 | "com.unity.modules.director": "1.0.0", 19 | "com.unity.modules.imageconversion": "1.0.0", 20 | "com.unity.modules.imgui": "1.0.0", 21 | "com.unity.modules.jsonserialize": "1.0.0", 22 | "com.unity.modules.particlesystem": "1.0.0", 23 | "com.unity.modules.physics": "1.0.0", 24 | "com.unity.modules.physics2d": "1.0.0", 25 | "com.unity.modules.screencapture": "1.0.0", 26 | "com.unity.modules.terrain": "1.0.0", 27 | "com.unity.modules.terrainphysics": "1.0.0", 28 | "com.unity.modules.tilemap": "1.0.0", 29 | "com.unity.modules.ui": "1.0.0", 30 | "com.unity.modules.uielements": "1.0.0", 31 | "com.unity.modules.umbra": "1.0.0", 32 | "com.unity.modules.unityanalytics": "1.0.0", 33 | "com.unity.modules.unitywebrequest": "1.0.0", 34 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 35 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 36 | "com.unity.modules.unitywebrequesttexture": "1.0.0", 37 | "com.unity.modules.unitywebrequestwww": "1.0.0", 38 | "com.unity.modules.vehicles": "1.0.0", 39 | "com.unity.modules.video": "1.0.0", 40 | "com.unity.modules.vr": "1.0.0", 41 | "com.unity.modules.wind": "1.0.0", 42 | "com.unity.modules.xr": "1.0.0" 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!30 &1 4 | GraphicsSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 12 7 | m_Deferred: 8 | m_Mode: 1 9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} 10 | m_DeferredReflections: 11 | m_Mode: 1 12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} 13 | m_ScreenSpaceShadows: 14 | m_Mode: 1 15 | m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} 16 | m_LegacyDeferred: 17 | m_Mode: 1 18 | m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} 19 | m_DepthNormals: 20 | m_Mode: 1 21 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} 22 | m_MotionVectors: 23 | m_Mode: 1 24 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} 25 | m_LightHalo: 26 | m_Mode: 1 27 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} 28 | m_LensFlare: 29 | m_Mode: 1 30 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} 31 | m_AlwaysIncludedShaders: 32 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 33 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} 34 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} 35 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} 36 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} 37 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 38 | m_PreloadedShaders: [] 39 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, 40 | type: 0} 41 | m_CustomRenderPipeline: {fileID: 0} 42 | m_TransparencySortMode: 0 43 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 44 | m_DefaultRenderingPath: 1 45 | m_DefaultMobileRenderingPath: 1 46 | m_TierSettings: [] 47 | m_LightmapStripping: 0 48 | m_FogStripping: 0 49 | m_InstancingStripping: 0 50 | m_LightmapKeepPlain: 1 51 | m_LightmapKeepDirCombined: 1 52 | m_LightmapKeepDynamicPlain: 1 53 | m_LightmapKeepDynamicDirCombined: 1 54 | m_LightmapKeepShadowMask: 1 55 | m_LightmapKeepSubtractive: 1 56 | m_FogKeepLinear: 1 57 | m_FogKeepExp: 1 58 | m_FogKeepExp2: 1 59 | m_AlbedoSwatchInfos: [] 60 | m_LightsUseLinearIntensity: 0 61 | m_LightsUseColorTemperature: 0 62 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!47 &1 4 | QualitySettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 5 7 | m_CurrentQuality: 5 8 | m_QualitySettings: 9 | - serializedVersion: 2 10 | name: Very Low 11 | pixelLightCount: 0 12 | shadows: 0 13 | shadowResolution: 0 14 | shadowProjection: 1 15 | shadowCascades: 1 16 | shadowDistance: 15 17 | shadowNearPlaneOffset: 3 18 | shadowCascade2Split: 0.33333334 19 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 20 | shadowmaskMode: 0 21 | blendWeights: 1 22 | textureQuality: 1 23 | anisotropicTextures: 0 24 | antiAliasing: 0 25 | softParticles: 0 26 | softVegetation: 0 27 | realtimeReflectionProbes: 0 28 | billboardsFaceCameraPosition: 0 29 | vSyncCount: 0 30 | lodBias: 0.3 31 | maximumLODLevel: 0 32 | particleRaycastBudget: 4 33 | asyncUploadTimeSlice: 2 34 | asyncUploadBufferSize: 4 35 | resolutionScalingFixedDPIFactor: 1 36 | excludedTargetPlatforms: [] 37 | - serializedVersion: 2 38 | name: Low 39 | pixelLightCount: 0 40 | shadows: 0 41 | shadowResolution: 0 42 | shadowProjection: 1 43 | shadowCascades: 1 44 | shadowDistance: 20 45 | shadowNearPlaneOffset: 3 46 | shadowCascade2Split: 0.33333334 47 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 48 | shadowmaskMode: 0 49 | blendWeights: 2 50 | textureQuality: 0 51 | anisotropicTextures: 0 52 | antiAliasing: 0 53 | softParticles: 0 54 | softVegetation: 0 55 | realtimeReflectionProbes: 0 56 | billboardsFaceCameraPosition: 0 57 | vSyncCount: 0 58 | lodBias: 0.4 59 | maximumLODLevel: 0 60 | particleRaycastBudget: 16 61 | asyncUploadTimeSlice: 2 62 | asyncUploadBufferSize: 4 63 | resolutionScalingFixedDPIFactor: 1 64 | excludedTargetPlatforms: [] 65 | - serializedVersion: 2 66 | name: Medium 67 | pixelLightCount: 1 68 | shadows: 1 69 | shadowResolution: 0 70 | shadowProjection: 1 71 | shadowCascades: 1 72 | shadowDistance: 20 73 | shadowNearPlaneOffset: 3 74 | shadowCascade2Split: 0.33333334 75 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 76 | shadowmaskMode: 0 77 | blendWeights: 2 78 | textureQuality: 0 79 | anisotropicTextures: 1 80 | antiAliasing: 0 81 | softParticles: 0 82 | softVegetation: 0 83 | realtimeReflectionProbes: 0 84 | billboardsFaceCameraPosition: 0 85 | vSyncCount: 1 86 | lodBias: 0.7 87 | maximumLODLevel: 0 88 | particleRaycastBudget: 64 89 | asyncUploadTimeSlice: 2 90 | asyncUploadBufferSize: 4 91 | resolutionScalingFixedDPIFactor: 1 92 | excludedTargetPlatforms: [] 93 | - serializedVersion: 2 94 | name: High 95 | pixelLightCount: 2 96 | shadows: 2 97 | shadowResolution: 1 98 | shadowProjection: 1 99 | shadowCascades: 2 100 | shadowDistance: 40 101 | shadowNearPlaneOffset: 3 102 | shadowCascade2Split: 0.33333334 103 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 104 | shadowmaskMode: 1 105 | blendWeights: 2 106 | textureQuality: 0 107 | anisotropicTextures: 1 108 | antiAliasing: 0 109 | softParticles: 0 110 | softVegetation: 1 111 | realtimeReflectionProbes: 1 112 | billboardsFaceCameraPosition: 1 113 | vSyncCount: 1 114 | lodBias: 1 115 | maximumLODLevel: 0 116 | particleRaycastBudget: 256 117 | asyncUploadTimeSlice: 2 118 | asyncUploadBufferSize: 4 119 | resolutionScalingFixedDPIFactor: 1 120 | excludedTargetPlatforms: [] 121 | - serializedVersion: 2 122 | name: Very High 123 | pixelLightCount: 3 124 | shadows: 2 125 | shadowResolution: 2 126 | shadowProjection: 1 127 | shadowCascades: 2 128 | shadowDistance: 70 129 | shadowNearPlaneOffset: 3 130 | shadowCascade2Split: 0.33333334 131 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 132 | shadowmaskMode: 1 133 | blendWeights: 4 134 | textureQuality: 0 135 | anisotropicTextures: 2 136 | antiAliasing: 2 137 | softParticles: 1 138 | softVegetation: 1 139 | realtimeReflectionProbes: 1 140 | billboardsFaceCameraPosition: 1 141 | vSyncCount: 1 142 | lodBias: 1.5 143 | maximumLODLevel: 0 144 | particleRaycastBudget: 1024 145 | asyncUploadTimeSlice: 2 146 | asyncUploadBufferSize: 4 147 | resolutionScalingFixedDPIFactor: 1 148 | excludedTargetPlatforms: [] 149 | - serializedVersion: 2 150 | name: Ultra 151 | pixelLightCount: 4 152 | shadows: 2 153 | shadowResolution: 2 154 | shadowProjection: 1 155 | shadowCascades: 4 156 | shadowDistance: 150 157 | shadowNearPlaneOffset: 3 158 | shadowCascade2Split: 0.33333334 159 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 160 | shadowmaskMode: 1 161 | blendWeights: 4 162 | textureQuality: 0 163 | anisotropicTextures: 2 164 | antiAliasing: 2 165 | softParticles: 1 166 | softVegetation: 1 167 | realtimeReflectionProbes: 1 168 | billboardsFaceCameraPosition: 1 169 | vSyncCount: 1 170 | lodBias: 2 171 | maximumLODLevel: 0 172 | particleRaycastBudget: 4096 173 | asyncUploadTimeSlice: 2 174 | asyncUploadBufferSize: 4 175 | resolutionScalingFixedDPIFactor: 1 176 | excludedTargetPlatforms: [] 177 | m_PerPlatformDefaultQuality: 178 | Android: 2 179 | Nintendo 3DS: 5 180 | Nintendo Switch: 5 181 | PS4: 5 182 | PSM: 5 183 | PSP2: 2 184 | Standalone: 5 185 | Tizen: 2 186 | WebGL: 3 187 | WiiU: 5 188 | Windows Store Apps: 5 189 | XboxOne: 5 190 | iPhone: 2 191 | tvOS: 2 192 | -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "templatePinStates": [], 3 | "dependencyTypeInfos": [ 4 | { 5 | "userAdded": false, 6 | "type": "UnityEngine.AnimationClip", 7 | "ignore": false, 8 | "defaultInstantiationMode": 0, 9 | "supportsModification": true 10 | }, 11 | { 12 | "userAdded": false, 13 | "type": "UnityEditor.Animations.AnimatorController", 14 | "ignore": false, 15 | "defaultInstantiationMode": 0, 16 | "supportsModification": true 17 | }, 18 | { 19 | "userAdded": false, 20 | "type": "UnityEngine.AnimatorOverrideController", 21 | "ignore": false, 22 | "defaultInstantiationMode": 0, 23 | "supportsModification": true 24 | }, 25 | { 26 | "userAdded": false, 27 | "type": "UnityEditor.Audio.AudioMixerController", 28 | "ignore": false, 29 | "defaultInstantiationMode": 0, 30 | "supportsModification": true 31 | }, 32 | { 33 | "userAdded": false, 34 | "type": "UnityEngine.ComputeShader", 35 | "ignore": true, 36 | "defaultInstantiationMode": 1, 37 | "supportsModification": true 38 | }, 39 | { 40 | "userAdded": false, 41 | "type": "UnityEngine.Cubemap", 42 | "ignore": false, 43 | "defaultInstantiationMode": 0, 44 | "supportsModification": true 45 | }, 46 | { 47 | "userAdded": false, 48 | "type": "UnityEngine.GameObject", 49 | "ignore": false, 50 | "defaultInstantiationMode": 0, 51 | "supportsModification": true 52 | }, 53 | { 54 | "userAdded": false, 55 | "type": "UnityEditor.LightingDataAsset", 56 | "ignore": false, 57 | "defaultInstantiationMode": 0, 58 | "supportsModification": false 59 | }, 60 | { 61 | "userAdded": false, 62 | "type": "UnityEngine.LightingSettings", 63 | "ignore": false, 64 | "defaultInstantiationMode": 0, 65 | "supportsModification": true 66 | }, 67 | { 68 | "userAdded": false, 69 | "type": "UnityEngine.Material", 70 | "ignore": false, 71 | "defaultInstantiationMode": 0, 72 | "supportsModification": true 73 | }, 74 | { 75 | "userAdded": false, 76 | "type": "UnityEditor.MonoScript", 77 | "ignore": true, 78 | "defaultInstantiationMode": 1, 79 | "supportsModification": true 80 | }, 81 | { 82 | "userAdded": false, 83 | "type": "UnityEngine.PhysicMaterial", 84 | "ignore": false, 85 | "defaultInstantiationMode": 0, 86 | "supportsModification": true 87 | }, 88 | { 89 | "userAdded": false, 90 | "type": "UnityEngine.PhysicsMaterial2D", 91 | "ignore": false, 92 | "defaultInstantiationMode": 0, 93 | "supportsModification": true 94 | }, 95 | { 96 | "userAdded": false, 97 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessProfile", 98 | "ignore": false, 99 | "defaultInstantiationMode": 0, 100 | "supportsModification": true 101 | }, 102 | { 103 | "userAdded": false, 104 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessResources", 105 | "ignore": false, 106 | "defaultInstantiationMode": 0, 107 | "supportsModification": true 108 | }, 109 | { 110 | "userAdded": false, 111 | "type": "UnityEngine.Rendering.VolumeProfile", 112 | "ignore": false, 113 | "defaultInstantiationMode": 0, 114 | "supportsModification": true 115 | }, 116 | { 117 | "userAdded": false, 118 | "type": "UnityEditor.SceneAsset", 119 | "ignore": false, 120 | "defaultInstantiationMode": 0, 121 | "supportsModification": false 122 | }, 123 | { 124 | "userAdded": false, 125 | "type": "UnityEngine.Shader", 126 | "ignore": true, 127 | "defaultInstantiationMode": 1, 128 | "supportsModification": true 129 | }, 130 | { 131 | "userAdded": false, 132 | "type": "UnityEngine.ShaderVariantCollection", 133 | "ignore": true, 134 | "defaultInstantiationMode": 1, 135 | "supportsModification": true 136 | }, 137 | { 138 | "userAdded": false, 139 | "type": "UnityEngine.Texture", 140 | "ignore": false, 141 | "defaultInstantiationMode": 0, 142 | "supportsModification": true 143 | }, 144 | { 145 | "userAdded": false, 146 | "type": "UnityEngine.Texture2D", 147 | "ignore": false, 148 | "defaultInstantiationMode": 0, 149 | "supportsModification": true 150 | }, 151 | { 152 | "userAdded": false, 153 | "type": "UnityEngine.Timeline.TimelineAsset", 154 | "ignore": false, 155 | "defaultInstantiationMode": 0, 156 | "supportsModification": true 157 | } 158 | ], 159 | "defaultDependencyTypeInfo": { 160 | "userAdded": false, 161 | "type": "", 162 | "ignore": false, 163 | "defaultInstantiationMode": 1, 164 | "supportsModification": true 165 | }, 166 | "newSceneOverride": 0 167 | } -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!13 &1 4 | InputManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Axes: 8 | - serializedVersion: 3 9 | m_Name: Horizontal 10 | descriptiveName: 11 | descriptiveNegativeName: 12 | negativeButton: left 13 | positiveButton: right 14 | altNegativeButton: a 15 | altPositiveButton: d 16 | gravity: 3 17 | dead: 0.001 18 | sensitivity: 3 19 | snap: 1 20 | invert: 0 21 | type: 0 22 | axis: 0 23 | joyNum: 0 24 | - serializedVersion: 3 25 | m_Name: Vertical 26 | descriptiveName: 27 | descriptiveNegativeName: 28 | negativeButton: down 29 | positiveButton: up 30 | altNegativeButton: s 31 | altPositiveButton: w 32 | gravity: 3 33 | dead: 0.001 34 | sensitivity: 3 35 | snap: 1 36 | invert: 0 37 | type: 0 38 | axis: 0 39 | joyNum: 0 40 | - serializedVersion: 3 41 | m_Name: Fire1 42 | descriptiveName: 43 | descriptiveNegativeName: 44 | negativeButton: 45 | positiveButton: left ctrl 46 | altNegativeButton: 47 | altPositiveButton: mouse 0 48 | gravity: 1000 49 | dead: 0.001 50 | sensitivity: 1000 51 | snap: 0 52 | invert: 0 53 | type: 0 54 | axis: 0 55 | joyNum: 0 56 | - serializedVersion: 3 57 | m_Name: Fire2 58 | descriptiveName: 59 | descriptiveNegativeName: 60 | negativeButton: 61 | positiveButton: left alt 62 | altNegativeButton: 63 | altPositiveButton: mouse 1 64 | gravity: 1000 65 | dead: 0.001 66 | sensitivity: 1000 67 | snap: 0 68 | invert: 0 69 | type: 0 70 | axis: 0 71 | joyNum: 0 72 | - serializedVersion: 3 73 | m_Name: Fire3 74 | descriptiveName: 75 | descriptiveNegativeName: 76 | negativeButton: 77 | positiveButton: left shift 78 | altNegativeButton: 79 | altPositiveButton: mouse 2 80 | gravity: 1000 81 | dead: 0.001 82 | sensitivity: 1000 83 | snap: 0 84 | invert: 0 85 | type: 0 86 | axis: 0 87 | joyNum: 0 88 | - serializedVersion: 3 89 | m_Name: Jump 90 | descriptiveName: 91 | descriptiveNegativeName: 92 | negativeButton: 93 | positiveButton: space 94 | altNegativeButton: 95 | altPositiveButton: 96 | gravity: 1000 97 | dead: 0.001 98 | sensitivity: 1000 99 | snap: 0 100 | invert: 0 101 | type: 0 102 | axis: 0 103 | joyNum: 0 104 | - serializedVersion: 3 105 | m_Name: Mouse X 106 | descriptiveName: 107 | descriptiveNegativeName: 108 | negativeButton: 109 | positiveButton: 110 | altNegativeButton: 111 | altPositiveButton: 112 | gravity: 0 113 | dead: 0 114 | sensitivity: 0.1 115 | snap: 0 116 | invert: 0 117 | type: 1 118 | axis: 0 119 | joyNum: 0 120 | - serializedVersion: 3 121 | m_Name: Mouse Y 122 | descriptiveName: 123 | descriptiveNegativeName: 124 | negativeButton: 125 | positiveButton: 126 | altNegativeButton: 127 | altPositiveButton: 128 | gravity: 0 129 | dead: 0 130 | sensitivity: 0.1 131 | snap: 0 132 | invert: 0 133 | type: 1 134 | axis: 1 135 | joyNum: 0 136 | - serializedVersion: 3 137 | m_Name: Mouse ScrollWheel 138 | descriptiveName: 139 | descriptiveNegativeName: 140 | negativeButton: 141 | positiveButton: 142 | altNegativeButton: 143 | altPositiveButton: 144 | gravity: 0 145 | dead: 0 146 | sensitivity: 0.1 147 | snap: 0 148 | invert: 0 149 | type: 1 150 | axis: 2 151 | joyNum: 0 152 | - serializedVersion: 3 153 | m_Name: Horizontal 154 | descriptiveName: 155 | descriptiveNegativeName: 156 | negativeButton: 157 | positiveButton: 158 | altNegativeButton: 159 | altPositiveButton: 160 | gravity: 0 161 | dead: 0.19 162 | sensitivity: 1 163 | snap: 0 164 | invert: 0 165 | type: 2 166 | axis: 0 167 | joyNum: 0 168 | - serializedVersion: 3 169 | m_Name: Vertical 170 | descriptiveName: 171 | descriptiveNegativeName: 172 | negativeButton: 173 | positiveButton: 174 | altNegativeButton: 175 | altPositiveButton: 176 | gravity: 0 177 | dead: 0.19 178 | sensitivity: 1 179 | snap: 0 180 | invert: 1 181 | type: 2 182 | axis: 1 183 | joyNum: 0 184 | - serializedVersion: 3 185 | m_Name: Fire1 186 | descriptiveName: 187 | descriptiveNegativeName: 188 | negativeButton: 189 | positiveButton: joystick button 0 190 | altNegativeButton: 191 | altPositiveButton: 192 | gravity: 1000 193 | dead: 0.001 194 | sensitivity: 1000 195 | snap: 0 196 | invert: 0 197 | type: 0 198 | axis: 0 199 | joyNum: 0 200 | - serializedVersion: 3 201 | m_Name: Fire2 202 | descriptiveName: 203 | descriptiveNegativeName: 204 | negativeButton: 205 | positiveButton: joystick button 1 206 | altNegativeButton: 207 | altPositiveButton: 208 | gravity: 1000 209 | dead: 0.001 210 | sensitivity: 1000 211 | snap: 0 212 | invert: 0 213 | type: 0 214 | axis: 0 215 | joyNum: 0 216 | - serializedVersion: 3 217 | m_Name: Fire3 218 | descriptiveName: 219 | descriptiveNegativeName: 220 | negativeButton: 221 | positiveButton: joystick button 2 222 | altNegativeButton: 223 | altPositiveButton: 224 | gravity: 1000 225 | dead: 0.001 226 | sensitivity: 1000 227 | snap: 0 228 | invert: 0 229 | type: 0 230 | axis: 0 231 | joyNum: 0 232 | - serializedVersion: 3 233 | m_Name: Jump 234 | descriptiveName: 235 | descriptiveNegativeName: 236 | negativeButton: 237 | positiveButton: joystick button 3 238 | altNegativeButton: 239 | altPositiveButton: 240 | gravity: 1000 241 | dead: 0.001 242 | sensitivity: 1000 243 | snap: 0 244 | invert: 0 245 | type: 0 246 | axis: 0 247 | joyNum: 0 248 | - serializedVersion: 3 249 | m_Name: Submit 250 | descriptiveName: 251 | descriptiveNegativeName: 252 | negativeButton: 253 | positiveButton: return 254 | altNegativeButton: 255 | altPositiveButton: joystick button 0 256 | gravity: 1000 257 | dead: 0.001 258 | sensitivity: 1000 259 | snap: 0 260 | invert: 0 261 | type: 0 262 | axis: 0 263 | joyNum: 0 264 | - serializedVersion: 3 265 | m_Name: Submit 266 | descriptiveName: 267 | descriptiveNegativeName: 268 | negativeButton: 269 | positiveButton: enter 270 | altNegativeButton: 271 | altPositiveButton: space 272 | gravity: 1000 273 | dead: 0.001 274 | sensitivity: 1000 275 | snap: 0 276 | invert: 0 277 | type: 0 278 | axis: 0 279 | joyNum: 0 280 | - serializedVersion: 3 281 | m_Name: Cancel 282 | descriptiveName: 283 | descriptiveNegativeName: 284 | negativeButton: 285 | positiveButton: escape 286 | altNegativeButton: 287 | altPositiveButton: joystick button 1 288 | gravity: 1000 289 | dead: 0.001 290 | sensitivity: 1000 291 | snap: 0 292 | invert: 0 293 | type: 0 294 | axis: 0 295 | joyNum: 0 296 | -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.2d.sprite": { 4 | "version": "1.0.0", 5 | "depth": 0, 6 | "source": "builtin", 7 | "dependencies": {} 8 | }, 9 | "com.unity.collab-proxy": { 10 | "version": "1.17.2", 11 | "depth": 0, 12 | "source": "registry", 13 | "dependencies": { 14 | "com.unity.services.core": "1.0.1" 15 | }, 16 | "url": "https://packages.unity.com" 17 | }, 18 | "com.unity.ext.nunit": { 19 | "version": "1.0.6", 20 | "depth": 1, 21 | "source": "registry", 22 | "dependencies": {}, 23 | "url": "https://packages.unity.com" 24 | }, 25 | "com.unity.ide.rider": { 26 | "version": "3.0.15", 27 | "depth": 0, 28 | "source": "registry", 29 | "dependencies": { 30 | "com.unity.ext.nunit": "1.0.6" 31 | }, 32 | "url": "https://packages.unity.com" 33 | }, 34 | "com.unity.ide.visualstudio": { 35 | "version": "2.0.16", 36 | "depth": 0, 37 | "source": "registry", 38 | "dependencies": { 39 | "com.unity.test-framework": "1.1.9" 40 | }, 41 | "url": "https://packages.unity.com" 42 | }, 43 | "com.unity.ide.vscode": { 44 | "version": "1.2.5", 45 | "depth": 0, 46 | "source": "registry", 47 | "dependencies": {}, 48 | "url": "https://packages.unity.com" 49 | }, 50 | "com.unity.services.core": { 51 | "version": "1.0.1", 52 | "depth": 1, 53 | "source": "registry", 54 | "dependencies": { 55 | "com.unity.modules.unitywebrequest": "1.0.0" 56 | }, 57 | "url": "https://packages.unity.com" 58 | }, 59 | "com.unity.test-framework": { 60 | "version": "1.1.33", 61 | "depth": 0, 62 | "source": "registry", 63 | "dependencies": { 64 | "com.unity.ext.nunit": "1.0.6", 65 | "com.unity.modules.imgui": "1.0.0", 66 | "com.unity.modules.jsonserialize": "1.0.0" 67 | }, 68 | "url": "https://packages.unity.com" 69 | }, 70 | "com.unity.textmeshpro": { 71 | "version": "3.0.6", 72 | "depth": 0, 73 | "source": "registry", 74 | "dependencies": { 75 | "com.unity.ugui": "1.0.0" 76 | }, 77 | "url": "https://packages.unity.com" 78 | }, 79 | "com.unity.timeline": { 80 | "version": "1.4.8", 81 | "depth": 0, 82 | "source": "registry", 83 | "dependencies": { 84 | "com.unity.modules.director": "1.0.0", 85 | "com.unity.modules.animation": "1.0.0", 86 | "com.unity.modules.audio": "1.0.0", 87 | "com.unity.modules.particlesystem": "1.0.0" 88 | }, 89 | "url": "https://packages.unity.com" 90 | }, 91 | "com.unity.ugui": { 92 | "version": "1.0.0", 93 | "depth": 0, 94 | "source": "builtin", 95 | "dependencies": { 96 | "com.unity.modules.ui": "1.0.0", 97 | "com.unity.modules.imgui": "1.0.0" 98 | } 99 | }, 100 | "com.unity.modules.ai": { 101 | "version": "1.0.0", 102 | "depth": 0, 103 | "source": "builtin", 104 | "dependencies": {} 105 | }, 106 | "com.unity.modules.androidjni": { 107 | "version": "1.0.0", 108 | "depth": 0, 109 | "source": "builtin", 110 | "dependencies": {} 111 | }, 112 | "com.unity.modules.animation": { 113 | "version": "1.0.0", 114 | "depth": 0, 115 | "source": "builtin", 116 | "dependencies": {} 117 | }, 118 | "com.unity.modules.assetbundle": { 119 | "version": "1.0.0", 120 | "depth": 0, 121 | "source": "builtin", 122 | "dependencies": {} 123 | }, 124 | "com.unity.modules.audio": { 125 | "version": "1.0.0", 126 | "depth": 0, 127 | "source": "builtin", 128 | "dependencies": {} 129 | }, 130 | "com.unity.modules.cloth": { 131 | "version": "1.0.0", 132 | "depth": 0, 133 | "source": "builtin", 134 | "dependencies": { 135 | "com.unity.modules.physics": "1.0.0" 136 | } 137 | }, 138 | "com.unity.modules.director": { 139 | "version": "1.0.0", 140 | "depth": 0, 141 | "source": "builtin", 142 | "dependencies": { 143 | "com.unity.modules.audio": "1.0.0", 144 | "com.unity.modules.animation": "1.0.0" 145 | } 146 | }, 147 | "com.unity.modules.imageconversion": { 148 | "version": "1.0.0", 149 | "depth": 0, 150 | "source": "builtin", 151 | "dependencies": {} 152 | }, 153 | "com.unity.modules.imgui": { 154 | "version": "1.0.0", 155 | "depth": 0, 156 | "source": "builtin", 157 | "dependencies": {} 158 | }, 159 | "com.unity.modules.jsonserialize": { 160 | "version": "1.0.0", 161 | "depth": 0, 162 | "source": "builtin", 163 | "dependencies": {} 164 | }, 165 | "com.unity.modules.particlesystem": { 166 | "version": "1.0.0", 167 | "depth": 0, 168 | "source": "builtin", 169 | "dependencies": {} 170 | }, 171 | "com.unity.modules.physics": { 172 | "version": "1.0.0", 173 | "depth": 0, 174 | "source": "builtin", 175 | "dependencies": {} 176 | }, 177 | "com.unity.modules.physics2d": { 178 | "version": "1.0.0", 179 | "depth": 0, 180 | "source": "builtin", 181 | "dependencies": {} 182 | }, 183 | "com.unity.modules.screencapture": { 184 | "version": "1.0.0", 185 | "depth": 0, 186 | "source": "builtin", 187 | "dependencies": { 188 | "com.unity.modules.imageconversion": "1.0.0" 189 | } 190 | }, 191 | "com.unity.modules.subsystems": { 192 | "version": "1.0.0", 193 | "depth": 1, 194 | "source": "builtin", 195 | "dependencies": { 196 | "com.unity.modules.jsonserialize": "1.0.0" 197 | } 198 | }, 199 | "com.unity.modules.terrain": { 200 | "version": "1.0.0", 201 | "depth": 0, 202 | "source": "builtin", 203 | "dependencies": {} 204 | }, 205 | "com.unity.modules.terrainphysics": { 206 | "version": "1.0.0", 207 | "depth": 0, 208 | "source": "builtin", 209 | "dependencies": { 210 | "com.unity.modules.physics": "1.0.0", 211 | "com.unity.modules.terrain": "1.0.0" 212 | } 213 | }, 214 | "com.unity.modules.tilemap": { 215 | "version": "1.0.0", 216 | "depth": 0, 217 | "source": "builtin", 218 | "dependencies": { 219 | "com.unity.modules.physics2d": "1.0.0" 220 | } 221 | }, 222 | "com.unity.modules.ui": { 223 | "version": "1.0.0", 224 | "depth": 0, 225 | "source": "builtin", 226 | "dependencies": {} 227 | }, 228 | "com.unity.modules.uielements": { 229 | "version": "1.0.0", 230 | "depth": 0, 231 | "source": "builtin", 232 | "dependencies": { 233 | "com.unity.modules.ui": "1.0.0", 234 | "com.unity.modules.imgui": "1.0.0", 235 | "com.unity.modules.jsonserialize": "1.0.0", 236 | "com.unity.modules.uielementsnative": "1.0.0" 237 | } 238 | }, 239 | "com.unity.modules.uielementsnative": { 240 | "version": "1.0.0", 241 | "depth": 1, 242 | "source": "builtin", 243 | "dependencies": { 244 | "com.unity.modules.ui": "1.0.0", 245 | "com.unity.modules.imgui": "1.0.0", 246 | "com.unity.modules.jsonserialize": "1.0.0" 247 | } 248 | }, 249 | "com.unity.modules.umbra": { 250 | "version": "1.0.0", 251 | "depth": 0, 252 | "source": "builtin", 253 | "dependencies": {} 254 | }, 255 | "com.unity.modules.unityanalytics": { 256 | "version": "1.0.0", 257 | "depth": 0, 258 | "source": "builtin", 259 | "dependencies": { 260 | "com.unity.modules.unitywebrequest": "1.0.0", 261 | "com.unity.modules.jsonserialize": "1.0.0" 262 | } 263 | }, 264 | "com.unity.modules.unitywebrequest": { 265 | "version": "1.0.0", 266 | "depth": 0, 267 | "source": "builtin", 268 | "dependencies": {} 269 | }, 270 | "com.unity.modules.unitywebrequestassetbundle": { 271 | "version": "1.0.0", 272 | "depth": 0, 273 | "source": "builtin", 274 | "dependencies": { 275 | "com.unity.modules.assetbundle": "1.0.0", 276 | "com.unity.modules.unitywebrequest": "1.0.0" 277 | } 278 | }, 279 | "com.unity.modules.unitywebrequestaudio": { 280 | "version": "1.0.0", 281 | "depth": 0, 282 | "source": "builtin", 283 | "dependencies": { 284 | "com.unity.modules.unitywebrequest": "1.0.0", 285 | "com.unity.modules.audio": "1.0.0" 286 | } 287 | }, 288 | "com.unity.modules.unitywebrequesttexture": { 289 | "version": "1.0.0", 290 | "depth": 0, 291 | "source": "builtin", 292 | "dependencies": { 293 | "com.unity.modules.unitywebrequest": "1.0.0", 294 | "com.unity.modules.imageconversion": "1.0.0" 295 | } 296 | }, 297 | "com.unity.modules.unitywebrequestwww": { 298 | "version": "1.0.0", 299 | "depth": 0, 300 | "source": "builtin", 301 | "dependencies": { 302 | "com.unity.modules.unitywebrequest": "1.0.0", 303 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 304 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 305 | "com.unity.modules.audio": "1.0.0", 306 | "com.unity.modules.assetbundle": "1.0.0", 307 | "com.unity.modules.imageconversion": "1.0.0" 308 | } 309 | }, 310 | "com.unity.modules.vehicles": { 311 | "version": "1.0.0", 312 | "depth": 0, 313 | "source": "builtin", 314 | "dependencies": { 315 | "com.unity.modules.physics": "1.0.0" 316 | } 317 | }, 318 | "com.unity.modules.video": { 319 | "version": "1.0.0", 320 | "depth": 0, 321 | "source": "builtin", 322 | "dependencies": { 323 | "com.unity.modules.audio": "1.0.0", 324 | "com.unity.modules.ui": "1.0.0", 325 | "com.unity.modules.unitywebrequest": "1.0.0" 326 | } 327 | }, 328 | "com.unity.modules.vr": { 329 | "version": "1.0.0", 330 | "depth": 0, 331 | "source": "builtin", 332 | "dependencies": { 333 | "com.unity.modules.jsonserialize": "1.0.0", 334 | "com.unity.modules.physics": "1.0.0", 335 | "com.unity.modules.xr": "1.0.0" 336 | } 337 | }, 338 | "com.unity.modules.wind": { 339 | "version": "1.0.0", 340 | "depth": 0, 341 | "source": "builtin", 342 | "dependencies": {} 343 | }, 344 | "com.unity.modules.xr": { 345 | "version": "1.0.0", 346 | "depth": 0, 347 | "source": "builtin", 348 | "dependencies": { 349 | "com.unity.modules.physics": "1.0.0", 350 | "com.unity.modules.jsonserialize": "1.0.0", 351 | "com.unity.modules.subsystems": "1.0.0" 352 | } 353 | } 354 | } 355 | } 356 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!129 &1 4 | PlayerSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 23 7 | productGUID: ee6d72a48bc5ec242912ee6b5d9acd9b 8 | AndroidProfiler: 0 9 | AndroidFilterTouchesWhenObscured: 0 10 | AndroidEnableSustainedPerformanceMode: 0 11 | defaultScreenOrientation: 4 12 | targetDevice: 2 13 | useOnDemandResources: 0 14 | accelerometerFrequency: 60 15 | companyName: DreamCodeStudio 16 | productName: UIMask 17 | defaultCursor: {fileID: 0} 18 | cursorHotspot: {x: 0, y: 0} 19 | m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} 20 | m_ShowUnitySplashScreen: 1 21 | m_ShowUnitySplashLogo: 1 22 | m_SplashScreenOverlayOpacity: 1 23 | m_SplashScreenAnimation: 1 24 | m_SplashScreenLogoStyle: 1 25 | m_SplashScreenDrawMode: 0 26 | m_SplashScreenBackgroundAnimationZoom: 1 27 | m_SplashScreenLogoAnimationZoom: 1 28 | m_SplashScreenBackgroundLandscapeAspect: 1 29 | m_SplashScreenBackgroundPortraitAspect: 1 30 | m_SplashScreenBackgroundLandscapeUvs: 31 | serializedVersion: 2 32 | x: 0 33 | y: 0 34 | width: 1 35 | height: 1 36 | m_SplashScreenBackgroundPortraitUvs: 37 | serializedVersion: 2 38 | x: 0 39 | y: 0 40 | width: 1 41 | height: 1 42 | m_SplashScreenLogos: [] 43 | m_VirtualRealitySplashScreen: {fileID: 0} 44 | m_HolographicTrackingLossScreen: {fileID: 0} 45 | defaultScreenWidth: 1024 46 | defaultScreenHeight: 768 47 | defaultScreenWidthWeb: 960 48 | defaultScreenHeightWeb: 600 49 | m_StereoRenderingPath: 0 50 | m_ActiveColorSpace: 0 51 | m_MTRendering: 1 52 | mipStripping: 0 53 | numberOfMipsStripped: 0 54 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 55 | iosShowActivityIndicatorOnLoading: -1 56 | androidShowActivityIndicatorOnLoading: -1 57 | iosUseCustomAppBackgroundBehavior: 0 58 | iosAllowHTTPDownload: 1 59 | allowedAutorotateToPortrait: 1 60 | allowedAutorotateToPortraitUpsideDown: 1 61 | allowedAutorotateToLandscapeRight: 1 62 | allowedAutorotateToLandscapeLeft: 1 63 | useOSAutorotation: 1 64 | use32BitDisplayBuffer: 1 65 | preserveFramebufferAlpha: 0 66 | disableDepthAndStencilBuffers: 0 67 | androidStartInFullscreen: 1 68 | androidRenderOutsideSafeArea: 1 69 | androidUseSwappy: 0 70 | androidBlitType: 0 71 | androidResizableWindow: 0 72 | androidDefaultWindowWidth: 1920 73 | androidDefaultWindowHeight: 1080 74 | androidMinimumWindowWidth: 400 75 | androidMinimumWindowHeight: 300 76 | androidFullscreenMode: 1 77 | defaultIsNativeResolution: 1 78 | macRetinaSupport: 1 79 | runInBackground: 0 80 | captureSingleScreen: 0 81 | muteOtherAudioSources: 0 82 | Prepare IOS For Recording: 0 83 | Force IOS Speakers When Recording: 0 84 | deferSystemGesturesMode: 0 85 | hideHomeButton: 0 86 | submitAnalytics: 1 87 | usePlayerLog: 1 88 | bakeCollisionMeshes: 0 89 | forceSingleInstance: 0 90 | useFlipModelSwapchain: 1 91 | resizableWindow: 0 92 | useMacAppStoreValidation: 0 93 | macAppStoreCategory: public.app-category.games 94 | gpuSkinning: 0 95 | xboxPIXTextureCapture: 0 96 | xboxEnableAvatar: 0 97 | xboxEnableKinect: 0 98 | xboxEnableKinectAutoTracking: 0 99 | xboxEnableFitness: 0 100 | visibleInBackground: 1 101 | allowFullscreenSwitch: 1 102 | fullscreenMode: 1 103 | xboxSpeechDB: 0 104 | xboxEnableHeadOrientation: 0 105 | xboxEnableGuest: 0 106 | xboxEnablePIXSampling: 0 107 | metalFramebufferOnly: 0 108 | xboxOneResolution: 0 109 | xboxOneSResolution: 0 110 | xboxOneXResolution: 3 111 | xboxOneMonoLoggingLevel: 0 112 | xboxOneLoggingLevel: 1 113 | xboxOneDisableEsram: 0 114 | xboxOneEnableTypeOptimization: 0 115 | xboxOnePresentImmediateThreshold: 0 116 | switchQueueCommandMemory: 1048576 117 | switchQueueControlMemory: 16384 118 | switchQueueComputeMemory: 262144 119 | switchNVNShaderPoolsGranularity: 33554432 120 | switchNVNDefaultPoolsGranularity: 16777216 121 | switchNVNOtherPoolsGranularity: 16777216 122 | switchNVNMaxPublicTextureIDCount: 0 123 | switchNVNMaxPublicSamplerIDCount: 0 124 | stadiaPresentMode: 0 125 | stadiaTargetFramerate: 0 126 | vulkanNumSwapchainBuffers: 3 127 | vulkanEnableSetSRGBWrite: 0 128 | vulkanEnablePreTransform: 0 129 | vulkanEnableLateAcquireNextImage: 0 130 | vulkanEnableCommandBufferRecycling: 1 131 | m_SupportedAspectRatios: 132 | 4:3: 1 133 | 5:4: 1 134 | 16:10: 1 135 | 16:9: 1 136 | Others: 1 137 | bundleVersion: 1.0 138 | preloadedAssets: [] 139 | metroInputSource: 0 140 | wsaTransparentSwapchain: 0 141 | m_HolographicPauseOnTrackingLoss: 1 142 | xboxOneDisableKinectGpuReservation: 0 143 | xboxOneEnable7thCore: 0 144 | vrSettings: 145 | enable360StereoCapture: 0 146 | isWsaHolographicRemotingEnabled: 0 147 | enableFrameTimingStats: 0 148 | useHDRDisplay: 0 149 | D3DHDRBitDepth: 0 150 | m_ColorGamuts: 00000000 151 | targetPixelDensity: 30 152 | resolutionScalingMode: 0 153 | resetResolutionOnWindowResize: 0 154 | androidSupportedAspectRatio: 1 155 | androidMaxAspectRatio: 2.1 156 | applicationIdentifier: 157 | Standalone: com.DreamCodeStudio.UIMask 158 | buildNumber: 159 | Standalone: 0 160 | iPhone: 0 161 | tvOS: 0 162 | overrideDefaultApplicationIdentifier: 0 163 | AndroidBundleVersionCode: 1 164 | AndroidMinSdkVersion: 19 165 | AndroidTargetSdkVersion: 0 166 | AndroidPreferredInstallLocation: 1 167 | aotOptions: 168 | stripEngineCode: 1 169 | iPhoneStrippingLevel: 0 170 | iPhoneScriptCallOptimization: 0 171 | ForceInternetPermission: 0 172 | ForceSDCardPermission: 0 173 | CreateWallpaper: 0 174 | APKExpansionFiles: 0 175 | keepLoadedShadersAlive: 0 176 | StripUnusedMeshComponents: 0 177 | VertexChannelCompressionMask: 214 178 | iPhoneSdkVersion: 988 179 | iOSTargetOSVersionString: 11.0 180 | tvOSSdkVersion: 0 181 | tvOSRequireExtendedGameController: 0 182 | tvOSTargetOSVersionString: 11.0 183 | uIPrerenderedIcon: 0 184 | uIRequiresPersistentWiFi: 0 185 | uIRequiresFullScreen: 1 186 | uIStatusBarHidden: 1 187 | uIExitOnSuspend: 0 188 | uIStatusBarStyle: 0 189 | appleTVSplashScreen: {fileID: 0} 190 | appleTVSplashScreen2x: {fileID: 0} 191 | tvOSSmallIconLayers: [] 192 | tvOSSmallIconLayers2x: [] 193 | tvOSLargeIconLayers: [] 194 | tvOSLargeIconLayers2x: [] 195 | tvOSTopShelfImageLayers: [] 196 | tvOSTopShelfImageLayers2x: [] 197 | tvOSTopShelfImageWideLayers: [] 198 | tvOSTopShelfImageWideLayers2x: [] 199 | iOSLaunchScreenType: 0 200 | iOSLaunchScreenPortrait: {fileID: 0} 201 | iOSLaunchScreenLandscape: {fileID: 0} 202 | iOSLaunchScreenBackgroundColor: 203 | serializedVersion: 2 204 | rgba: 0 205 | iOSLaunchScreenFillPct: 100 206 | iOSLaunchScreenSize: 100 207 | iOSLaunchScreenCustomXibPath: 208 | iOSLaunchScreeniPadType: 0 209 | iOSLaunchScreeniPadImage: {fileID: 0} 210 | iOSLaunchScreeniPadBackgroundColor: 211 | serializedVersion: 2 212 | rgba: 0 213 | iOSLaunchScreeniPadFillPct: 100 214 | iOSLaunchScreeniPadSize: 100 215 | iOSLaunchScreeniPadCustomXibPath: 216 | iOSLaunchScreenCustomStoryboardPath: 217 | iOSLaunchScreeniPadCustomStoryboardPath: 218 | iOSDeviceRequirements: [] 219 | iOSURLSchemes: [] 220 | iOSBackgroundModes: 0 221 | iOSMetalForceHardShadows: 0 222 | metalEditorSupport: 1 223 | metalAPIValidation: 1 224 | iOSRenderExtraFrameOnPause: 0 225 | iosCopyPluginsCodeInsteadOfSymlink: 0 226 | appleDeveloperTeamID: 227 | iOSManualSigningProvisioningProfileID: 228 | tvOSManualSigningProvisioningProfileID: 229 | iOSManualSigningProvisioningProfileType: 0 230 | tvOSManualSigningProvisioningProfileType: 0 231 | appleEnableAutomaticSigning: 0 232 | iOSRequireARKit: 0 233 | iOSAutomaticallyDetectAndAddCapabilities: 1 234 | appleEnableProMotion: 0 235 | shaderPrecisionModel: 0 236 | clonedFromGUID: 00000000000000000000000000000000 237 | templatePackageId: 238 | templateDefaultScene: 239 | useCustomMainManifest: 0 240 | useCustomLauncherManifest: 0 241 | useCustomMainGradleTemplate: 0 242 | useCustomLauncherGradleManifest: 0 243 | useCustomBaseGradleTemplate: 0 244 | useCustomGradlePropertiesTemplate: 0 245 | useCustomProguardFile: 0 246 | AndroidTargetArchitectures: 1 247 | AndroidTargetDevices: 0 248 | AndroidSplashScreenScale: 0 249 | androidSplashScreen: {fileID: 0} 250 | AndroidKeystoreName: '{inproject}: ' 251 | AndroidKeyaliasName: 252 | AndroidBuildApkPerCpuArchitecture: 0 253 | AndroidTVCompatibility: 1 254 | AndroidIsGame: 1 255 | AndroidEnableTango: 0 256 | androidEnableBanner: 1 257 | androidUseLowAccuracyLocation: 0 258 | androidUseCustomKeystore: 0 259 | m_AndroidBanners: 260 | - width: 320 261 | height: 180 262 | banner: {fileID: 0} 263 | androidGamepadSupportLevel: 0 264 | chromeosInputEmulation: 1 265 | AndroidMinifyWithR8: 0 266 | AndroidMinifyRelease: 0 267 | AndroidMinifyDebug: 0 268 | AndroidValidateAppBundleSize: 1 269 | AndroidAppBundleSizeToValidate: 150 270 | m_BuildTargetIcons: [] 271 | m_BuildTargetPlatformIcons: [] 272 | m_BuildTargetBatching: [] 273 | m_BuildTargetGraphicsJobs: 274 | - m_BuildTarget: GameCoreScarlettSupport 275 | m_GraphicsJobs: 0 276 | - m_BuildTarget: Switch 277 | m_GraphicsJobs: 0 278 | - m_BuildTarget: iOSSupport 279 | m_GraphicsJobs: 0 280 | - m_BuildTarget: LuminSupport 281 | m_GraphicsJobs: 0 282 | - m_BuildTarget: MacStandaloneSupport 283 | m_GraphicsJobs: 0 284 | - m_BuildTarget: PS5Player 285 | m_GraphicsJobs: 0 286 | - m_BuildTarget: WebGLSupport 287 | m_GraphicsJobs: 0 288 | - m_BuildTarget: AppleTVSupport 289 | m_GraphicsJobs: 0 290 | - m_BuildTarget: GameCoreXboxOneSupport 291 | m_GraphicsJobs: 0 292 | - m_BuildTarget: CloudRendering 293 | m_GraphicsJobs: 0 294 | - m_BuildTarget: WindowsStandaloneSupport 295 | m_GraphicsJobs: 0 296 | - m_BuildTarget: PS4Player 297 | m_GraphicsJobs: 0 298 | - m_BuildTarget: MetroSupport 299 | m_GraphicsJobs: 0 300 | - m_BuildTarget: AndroidPlayer 301 | m_GraphicsJobs: 0 302 | - m_BuildTarget: BJMSupport 303 | m_GraphicsJobs: 0 304 | - m_BuildTarget: LinuxStandaloneSupport 305 | m_GraphicsJobs: 0 306 | - m_BuildTarget: XboxOnePlayer 307 | m_GraphicsJobs: 0 308 | m_BuildTargetGraphicsJobMode: 309 | - m_BuildTarget: PS4Player 310 | m_GraphicsJobMode: 0 311 | - m_BuildTarget: XboxOnePlayer 312 | m_GraphicsJobMode: 0 313 | m_BuildTargetGraphicsAPIs: 314 | - m_BuildTarget: iOSSupport 315 | m_APIs: 10000000 316 | m_Automatic: 1 317 | m_BuildTargetVRSettings: [] 318 | openGLRequireES31: 0 319 | openGLRequireES31AEP: 0 320 | openGLRequireES32: 0 321 | m_TemplateCustomTags: {} 322 | mobileMTRendering: 323 | Android: 1 324 | iPhone: 1 325 | tvOS: 1 326 | m_BuildTargetGroupLightmapEncodingQuality: [] 327 | m_BuildTargetGroupLightmapSettings: [] 328 | m_BuildTargetNormalMapEncoding: [] 329 | playModeTestRunnerEnabled: 0 330 | runPlayModeTestAsEditModeTest: 0 331 | actionOnDotNetUnhandledException: 1 332 | enableInternalProfiler: 0 333 | logObjCUncaughtExceptions: 1 334 | enableCrashReportAPI: 0 335 | cameraUsageDescription: 336 | locationUsageDescription: 337 | microphoneUsageDescription: 338 | bluetoothUsageDescription: 339 | switchNMETAOverride: 340 | switchNetLibKey: 341 | switchSocketMemoryPoolSize: 6144 342 | switchSocketAllocatorPoolSize: 128 343 | switchSocketConcurrencyLimit: 14 344 | switchScreenResolutionBehavior: 2 345 | switchUseCPUProfiler: 0 346 | switchUseGOLDLinker: 0 347 | switchApplicationID: 0x01004b9000490000 348 | switchNSODependencies: 349 | switchTitleNames_0: 350 | switchTitleNames_1: 351 | switchTitleNames_2: 352 | switchTitleNames_3: 353 | switchTitleNames_4: 354 | switchTitleNames_5: 355 | switchTitleNames_6: 356 | switchTitleNames_7: 357 | switchTitleNames_8: 358 | switchTitleNames_9: 359 | switchTitleNames_10: 360 | switchTitleNames_11: 361 | switchTitleNames_12: 362 | switchTitleNames_13: 363 | switchTitleNames_14: 364 | switchTitleNames_15: 365 | switchPublisherNames_0: 366 | switchPublisherNames_1: 367 | switchPublisherNames_2: 368 | switchPublisherNames_3: 369 | switchPublisherNames_4: 370 | switchPublisherNames_5: 371 | switchPublisherNames_6: 372 | switchPublisherNames_7: 373 | switchPublisherNames_8: 374 | switchPublisherNames_9: 375 | switchPublisherNames_10: 376 | switchPublisherNames_11: 377 | switchPublisherNames_12: 378 | switchPublisherNames_13: 379 | switchPublisherNames_14: 380 | switchPublisherNames_15: 381 | switchIcons_0: {fileID: 0} 382 | switchIcons_1: {fileID: 0} 383 | switchIcons_2: {fileID: 0} 384 | switchIcons_3: {fileID: 0} 385 | switchIcons_4: {fileID: 0} 386 | switchIcons_5: {fileID: 0} 387 | switchIcons_6: {fileID: 0} 388 | switchIcons_7: {fileID: 0} 389 | switchIcons_8: {fileID: 0} 390 | switchIcons_9: {fileID: 0} 391 | switchIcons_10: {fileID: 0} 392 | switchIcons_11: {fileID: 0} 393 | switchIcons_12: {fileID: 0} 394 | switchIcons_13: {fileID: 0} 395 | switchIcons_14: {fileID: 0} 396 | switchIcons_15: {fileID: 0} 397 | switchSmallIcons_0: {fileID: 0} 398 | switchSmallIcons_1: {fileID: 0} 399 | switchSmallIcons_2: {fileID: 0} 400 | switchSmallIcons_3: {fileID: 0} 401 | switchSmallIcons_4: {fileID: 0} 402 | switchSmallIcons_5: {fileID: 0} 403 | switchSmallIcons_6: {fileID: 0} 404 | switchSmallIcons_7: {fileID: 0} 405 | switchSmallIcons_8: {fileID: 0} 406 | switchSmallIcons_9: {fileID: 0} 407 | switchSmallIcons_10: {fileID: 0} 408 | switchSmallIcons_11: {fileID: 0} 409 | switchSmallIcons_12: {fileID: 0} 410 | switchSmallIcons_13: {fileID: 0} 411 | switchSmallIcons_14: {fileID: 0} 412 | switchSmallIcons_15: {fileID: 0} 413 | switchManualHTML: 414 | switchAccessibleURLs: 415 | switchLegalInformation: 416 | switchMainThreadStackSize: 1048576 417 | switchPresenceGroupId: 418 | switchLogoHandling: 0 419 | switchReleaseVersion: 0 420 | switchDisplayVersion: 1.0.0 421 | switchStartupUserAccount: 0 422 | switchTouchScreenUsage: 0 423 | switchSupportedLanguagesMask: 0 424 | switchLogoType: 0 425 | switchApplicationErrorCodeCategory: 426 | switchUserAccountSaveDataSize: 0 427 | switchUserAccountSaveDataJournalSize: 0 428 | switchApplicationAttribute: 0 429 | switchCardSpecSize: -1 430 | switchCardSpecClock: -1 431 | switchRatingsMask: 0 432 | switchRatingsInt_0: 0 433 | switchRatingsInt_1: 0 434 | switchRatingsInt_2: 0 435 | switchRatingsInt_3: 0 436 | switchRatingsInt_4: 0 437 | switchRatingsInt_5: 0 438 | switchRatingsInt_6: 0 439 | switchRatingsInt_7: 0 440 | switchRatingsInt_8: 0 441 | switchRatingsInt_9: 0 442 | switchRatingsInt_10: 0 443 | switchRatingsInt_11: 0 444 | switchRatingsInt_12: 0 445 | switchLocalCommunicationIds_0: 446 | switchLocalCommunicationIds_1: 447 | switchLocalCommunicationIds_2: 448 | switchLocalCommunicationIds_3: 449 | switchLocalCommunicationIds_4: 450 | switchLocalCommunicationIds_5: 451 | switchLocalCommunicationIds_6: 452 | switchLocalCommunicationIds_7: 453 | switchParentalControl: 0 454 | switchAllowsScreenshot: 1 455 | switchAllowsVideoCapturing: 1 456 | switchAllowsRuntimeAddOnContentInstall: 0 457 | switchDataLossConfirmation: 0 458 | switchUserAccountLockEnabled: 0 459 | switchSystemResourceMemory: 16777216 460 | switchSupportedNpadStyles: 3 461 | switchNativeFsCacheSize: 32 462 | switchIsHoldTypeHorizontal: 0 463 | switchSupportedNpadCount: 8 464 | switchSocketConfigEnabled: 0 465 | switchTcpInitialSendBufferSize: 32 466 | switchTcpInitialReceiveBufferSize: 64 467 | switchTcpAutoSendBufferSizeMax: 256 468 | switchTcpAutoReceiveBufferSizeMax: 256 469 | switchUdpSendBufferSize: 9 470 | switchUdpReceiveBufferSize: 42 471 | switchSocketBufferEfficiency: 4 472 | switchSocketInitializeEnabled: 1 473 | switchNetworkInterfaceManagerInitializeEnabled: 1 474 | switchPlayerConnectionEnabled: 1 475 | switchUseNewStyleFilepaths: 0 476 | switchUseMicroSleepForYield: 1 477 | switchEnableRamDiskSupport: 0 478 | switchMicroSleepForYieldTime: 25 479 | switchRamDiskSpaceSize: 12 480 | ps4NPAgeRating: 12 481 | ps4NPTitleSecret: 482 | ps4NPTrophyPackPath: 483 | ps4ParentalLevel: 11 484 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 485 | ps4Category: 0 486 | ps4MasterVersion: 01.00 487 | ps4AppVersion: 01.00 488 | ps4AppType: 0 489 | ps4ParamSfxPath: 490 | ps4VideoOutPixelFormat: 0 491 | ps4VideoOutInitialWidth: 1920 492 | ps4VideoOutBaseModeInitialWidth: 1920 493 | ps4VideoOutReprojectionRate: 60 494 | ps4PronunciationXMLPath: 495 | ps4PronunciationSIGPath: 496 | ps4BackgroundImagePath: 497 | ps4StartupImagePath: 498 | ps4StartupImagesFolder: 499 | ps4IconImagesFolder: 500 | ps4SaveDataImagePath: 501 | ps4SdkOverride: 502 | ps4BGMPath: 503 | ps4ShareFilePath: 504 | ps4ShareOverlayImagePath: 505 | ps4PrivacyGuardImagePath: 506 | ps4ExtraSceSysFile: 507 | ps4NPtitleDatPath: 508 | ps4RemotePlayKeyAssignment: -1 509 | ps4RemotePlayKeyMappingDir: 510 | ps4PlayTogetherPlayerCount: 0 511 | ps4EnterButtonAssignment: 1 512 | ps4ApplicationParam1: 0 513 | ps4ApplicationParam2: 0 514 | ps4ApplicationParam3: 0 515 | ps4ApplicationParam4: 0 516 | ps4DownloadDataSize: 0 517 | ps4GarlicHeapSize: 2048 518 | ps4ProGarlicHeapSize: 2560 519 | playerPrefsMaxSize: 32768 520 | ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ 521 | ps4pnSessions: 1 522 | ps4pnPresence: 1 523 | ps4pnFriends: 1 524 | ps4pnGameCustomData: 1 525 | playerPrefsSupport: 0 526 | enableApplicationExit: 0 527 | resetTempFolder: 1 528 | restrictedAudioUsageRights: 0 529 | ps4UseResolutionFallback: 0 530 | ps4ReprojectionSupport: 0 531 | ps4UseAudio3dBackend: 0 532 | ps4UseLowGarlicFragmentationMode: 1 533 | ps4SocialScreenEnabled: 0 534 | ps4ScriptOptimizationLevel: 0 535 | ps4Audio3dVirtualSpeakerCount: 14 536 | ps4attribCpuUsage: 0 537 | ps4PatchPkgPath: 538 | ps4PatchLatestPkgPath: 539 | ps4PatchChangeinfoPath: 540 | ps4PatchDayOne: 0 541 | ps4attribUserManagement: 0 542 | ps4attribMoveSupport: 0 543 | ps4attrib3DSupport: 0 544 | ps4attribShareSupport: 0 545 | ps4attribExclusiveVR: 0 546 | ps4disableAutoHideSplash: 0 547 | ps4videoRecordingFeaturesUsed: 0 548 | ps4contentSearchFeaturesUsed: 0 549 | ps4CompatibilityPS5: 0 550 | ps4AllowPS5Detection: 0 551 | ps4GPU800MHz: 1 552 | ps4attribEyeToEyeDistanceSettingVR: 0 553 | ps4IncludedModules: [] 554 | ps4attribVROutputEnabled: 0 555 | monoEnv: 556 | splashScreenBackgroundSourceLandscape: {fileID: 0} 557 | splashScreenBackgroundSourcePortrait: {fileID: 0} 558 | blurSplashScreenBackground: 1 559 | spritePackerPolicy: 560 | webGLMemorySize: 256 561 | webGLExceptionSupport: 1 562 | webGLNameFilesAsHashes: 0 563 | webGLDataCaching: 0 564 | webGLDebugSymbols: 0 565 | webGLEmscriptenArgs: 566 | webGLModulesDirectory: 567 | webGLTemplate: APPLICATION:Default 568 | webGLAnalyzeBuildSize: 0 569 | webGLUseEmbeddedResources: 0 570 | webGLCompressionFormat: 1 571 | webGLWasmArithmeticExceptions: 0 572 | webGLLinkerTarget: 1 573 | webGLThreadsSupport: 0 574 | webGLDecompressionFallback: 0 575 | scriptingDefineSymbols: {} 576 | additionalCompilerArguments: {} 577 | platformArchitecture: {} 578 | scriptingBackend: {} 579 | il2cppCompilerConfiguration: {} 580 | managedStrippingLevel: {} 581 | incrementalIl2cppBuild: {} 582 | suppressCommonWarnings: 1 583 | allowUnsafeCode: 0 584 | useDeterministicCompilation: 1 585 | useReferenceAssemblies: 1 586 | enableRoslynAnalyzers: 1 587 | additionalIl2CppArgs: 588 | scriptingRuntimeVersion: 1 589 | gcIncremental: 1 590 | assemblyVersionValidation: 1 591 | gcWBarrierValidation: 0 592 | apiCompatibilityLevelPerPlatform: {} 593 | m_RenderingPath: 1 594 | m_MobileRenderingPath: 1 595 | metroPackageName: CircleFadeTest 596 | metroPackageVersion: 1.0.0.0 597 | metroCertificatePath: 598 | metroCertificatePassword: 599 | metroCertificateSubject: 600 | metroCertificateIssuer: 601 | metroCertificateNotAfter: 0000000000000000 602 | metroApplicationDescription: CircleFadeTest 603 | wsaImages: {} 604 | metroTileShortName: CircleFadeTest 605 | metroTileShowName: 0 606 | metroMediumTileShowName: 0 607 | metroLargeTileShowName: 0 608 | metroWideTileShowName: 0 609 | metroSupportStreamingInstall: 0 610 | metroLastRequiredScene: 0 611 | metroDefaultTileSize: 1 612 | metroTileForegroundText: 2 613 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 614 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, 615 | a: 1} 616 | metroSplashScreenUseBackgroundColor: 0 617 | platformCapabilities: {} 618 | metroTargetDeviceFamilies: {} 619 | metroFTAName: 620 | metroFTAFileTypes: [] 621 | metroProtocolName: 622 | vcxProjDefaultLanguage: 623 | XboxOneProductId: 624 | XboxOneUpdateKey: 625 | XboxOneSandboxId: 626 | XboxOneContentId: 627 | XboxOneTitleId: 628 | XboxOneSCId: 629 | XboxOneGameOsOverridePath: 630 | XboxOnePackagingOverridePath: 631 | XboxOneAppManifestOverridePath: 632 | XboxOneVersion: 1.0.0.0 633 | XboxOnePackageEncryption: 0 634 | XboxOnePackageUpdateGranularity: 2 635 | XboxOneDescription: 636 | XboxOneLanguage: 637 | - enus 638 | XboxOneCapability: [] 639 | XboxOneGameRating: {} 640 | XboxOneIsContentPackage: 0 641 | XboxOneEnhancedXboxCompatibilityMode: 0 642 | XboxOneEnableGPUVariability: 0 643 | XboxOneSockets: {} 644 | XboxOneSplashScreen: {fileID: 0} 645 | XboxOneAllowedProductIds: [] 646 | XboxOnePersistentLocalStorageSize: 0 647 | XboxOneXTitleMemory: 8 648 | XboxOneOverrideIdentityName: 649 | XboxOneOverrideIdentityPublisher: 650 | vrEditorSettings: {} 651 | cloudServicesEnabled: {} 652 | luminIcon: 653 | m_Name: 654 | m_ModelFolderPath: 655 | m_PortalFolderPath: 656 | luminCert: 657 | m_CertPath: 658 | m_SignPackage: 1 659 | luminIsChannelApp: 0 660 | luminVersion: 661 | m_VersionCode: 1 662 | m_VersionName: 663 | apiCompatibilityLevel: 6 664 | activeInputHandler: 0 665 | cloudProjectId: e3d84042-6b88-45a5-8fad-1631d1d841bc 666 | framebufferDepthMemorylessMode: 0 667 | qualitySettingsNames: [] 668 | projectName: CircleFadeTest 669 | organizationId: aerion-technologies 670 | cloudEnabled: 0 671 | legacyClampBlendShapeWeights: 1 672 | virtualTexturingSupportEnabled: 0 673 | -------------------------------------------------------------------------------- /Assets/Examples/Scenes/ExampleScene.unity: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!29 &1 4 | OcclusionCullingSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_OcclusionBakeSettings: 8 | smallestOccluder: 5 9 | smallestHole: 0.25 10 | backfaceThreshold: 100 11 | m_SceneGUID: 00000000000000000000000000000000 12 | m_OcclusionCullingData: {fileID: 0} 13 | --- !u!104 &2 14 | RenderSettings: 15 | m_ObjectHideFlags: 0 16 | serializedVersion: 9 17 | m_Fog: 0 18 | m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 19 | m_FogMode: 3 20 | m_FogDensity: 0.01 21 | m_LinearFogStart: 0 22 | m_LinearFogEnd: 300 23 | m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} 24 | m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} 25 | m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} 26 | m_AmbientIntensity: 1 27 | m_AmbientMode: 3 28 | m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} 29 | m_SkyboxMaterial: {fileID: 0} 30 | m_HaloStrength: 0.5 31 | m_FlareStrength: 1 32 | m_FlareFadeSpeed: 3 33 | m_HaloTexture: {fileID: 0} 34 | m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} 35 | m_DefaultReflectionMode: 0 36 | m_DefaultReflectionResolution: 128 37 | m_ReflectionBounces: 1 38 | m_ReflectionIntensity: 1 39 | m_CustomReflection: {fileID: 0} 40 | m_Sun: {fileID: 0} 41 | m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} 42 | m_UseRadianceAmbientProbe: 0 43 | --- !u!157 &3 44 | LightmapSettings: 45 | m_ObjectHideFlags: 0 46 | serializedVersion: 12 47 | m_GIWorkflowMode: 1 48 | m_GISettings: 49 | serializedVersion: 2 50 | m_BounceScale: 1 51 | m_IndirectOutputScale: 1 52 | m_AlbedoBoost: 1 53 | m_EnvironmentLightingMode: 0 54 | m_EnableBakedLightmaps: 0 55 | m_EnableRealtimeLightmaps: 0 56 | m_LightmapEditorSettings: 57 | serializedVersion: 12 58 | m_Resolution: 2 59 | m_BakeResolution: 40 60 | m_AtlasSize: 1024 61 | m_AO: 0 62 | m_AOMaxDistance: 1 63 | m_CompAOExponent: 0 64 | m_CompAOExponentDirect: 0 65 | m_ExtractAmbientOcclusion: 0 66 | m_Padding: 2 67 | m_LightmapParameters: {fileID: 0} 68 | m_LightmapsBakeMode: 1 69 | m_TextureCompression: 1 70 | m_FinalGather: 0 71 | m_FinalGatherFiltering: 1 72 | m_FinalGatherRayCount: 1024 73 | m_ReflectionCompression: 2 74 | m_MixedBakeMode: 1 75 | m_BakeBackend: 0 76 | m_PVRSampling: 1 77 | m_PVRDirectSampleCount: 32 78 | m_PVRSampleCount: 500 79 | m_PVRBounces: 2 80 | m_PVREnvironmentSampleCount: 500 81 | m_PVREnvironmentReferencePointCount: 2048 82 | m_PVRFilteringMode: 0 83 | m_PVRDenoiserTypeDirect: 0 84 | m_PVRDenoiserTypeIndirect: 0 85 | m_PVRDenoiserTypeAO: 0 86 | m_PVRFilterTypeDirect: 0 87 | m_PVRFilterTypeIndirect: 0 88 | m_PVRFilterTypeAO: 0 89 | m_PVREnvironmentMIS: 0 90 | m_PVRCulling: 1 91 | m_PVRFilteringGaussRadiusDirect: 1 92 | m_PVRFilteringGaussRadiusIndirect: 5 93 | m_PVRFilteringGaussRadiusAO: 2 94 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 95 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 96 | m_PVRFilteringAtrousPositionSigmaAO: 1 97 | m_ExportTrainingData: 0 98 | m_TrainingDataDestination: TrainingData 99 | m_LightProbeSampleCountMultiplier: 4 100 | m_LightingDataAsset: {fileID: 0} 101 | m_LightingSettings: {fileID: 4890085278179872738, guid: f17350fa0539a34458d4971190a346cc, 102 | type: 2} 103 | --- !u!196 &4 104 | NavMeshSettings: 105 | serializedVersion: 2 106 | m_ObjectHideFlags: 0 107 | m_BuildSettings: 108 | serializedVersion: 2 109 | agentTypeID: 0 110 | agentRadius: 0.5 111 | agentHeight: 2 112 | agentSlope: 45 113 | agentClimb: 0.4 114 | ledgeDropHeight: 0 115 | maxJumpAcrossDistance: 0 116 | minRegionArea: 2 117 | manualCellSize: 0 118 | cellSize: 0.16666667 119 | manualTileSize: 0 120 | tileSize: 256 121 | accuratePlacement: 0 122 | maxJobWorkers: 0 123 | preserveTilesOutsideBounds: 0 124 | debug: 125 | m_Flags: 0 126 | m_NavMeshData: {fileID: 0} 127 | --- !u!1 &577804093 128 | GameObject: 129 | m_ObjectHideFlags: 0 130 | m_CorrespondingSourceObject: {fileID: 0} 131 | m_PrefabInstance: {fileID: 0} 132 | m_PrefabAsset: {fileID: 0} 133 | serializedVersion: 6 134 | m_Component: 135 | - component: {fileID: 577804094} 136 | - component: {fileID: 577804096} 137 | - component: {fileID: 577804095} 138 | m_Layer: 0 139 | m_Name: background 140 | m_TagString: Untagged 141 | m_Icon: {fileID: 0} 142 | m_NavMeshLayer: 0 143 | m_StaticEditorFlags: 0 144 | m_IsActive: 1 145 | --- !u!224 &577804094 146 | RectTransform: 147 | m_ObjectHideFlags: 0 148 | m_CorrespondingSourceObject: {fileID: 0} 149 | m_PrefabInstance: {fileID: 0} 150 | m_PrefabAsset: {fileID: 0} 151 | m_GameObject: {fileID: 577804093} 152 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 153 | m_LocalPosition: {x: 0, y: 0, z: 0} 154 | m_LocalScale: {x: 1, y: 1, z: 1} 155 | m_Children: 156 | - {fileID: 851295491} 157 | m_Father: {fileID: 1537915262} 158 | m_RootOrder: 0 159 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 160 | m_AnchorMin: {x: 0, y: 0} 161 | m_AnchorMax: {x: 1, y: 1} 162 | m_AnchoredPosition: {x: 0, y: 0} 163 | m_SizeDelta: {x: 0, y: 0} 164 | m_Pivot: {x: 0.5, y: 0.5} 165 | --- !u!114 &577804095 166 | MonoBehaviour: 167 | m_ObjectHideFlags: 0 168 | m_CorrespondingSourceObject: {fileID: 0} 169 | m_PrefabInstance: {fileID: 0} 170 | m_PrefabAsset: {fileID: 0} 171 | m_GameObject: {fileID: 577804093} 172 | m_Enabled: 1 173 | m_EditorHideFlags: 0 174 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 175 | m_Name: 176 | m_EditorClassIdentifier: 177 | m_Material: {fileID: 0} 178 | m_Color: {r: 0.9339623, g: 0.9339623, b: 0.9339623, a: 1} 179 | m_RaycastTarget: 1 180 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 181 | m_Maskable: 1 182 | m_OnCullStateChanged: 183 | m_PersistentCalls: 184 | m_Calls: [] 185 | m_Sprite: {fileID: 0} 186 | m_Type: 0 187 | m_PreserveAspect: 0 188 | m_FillCenter: 1 189 | m_FillMethod: 4 190 | m_FillAmount: 1 191 | m_FillClockwise: 1 192 | m_FillOrigin: 0 193 | m_UseSpriteMesh: 0 194 | m_PixelsPerUnitMultiplier: 1 195 | --- !u!222 &577804096 196 | CanvasRenderer: 197 | m_ObjectHideFlags: 0 198 | m_CorrespondingSourceObject: {fileID: 0} 199 | m_PrefabInstance: {fileID: 0} 200 | m_PrefabAsset: {fileID: 0} 201 | m_GameObject: {fileID: 577804093} 202 | m_CullTransparentMesh: 1 203 | --- !u!1 &792976962 204 | GameObject: 205 | m_ObjectHideFlags: 0 206 | m_CorrespondingSourceObject: {fileID: 0} 207 | m_PrefabInstance: {fileID: 0} 208 | m_PrefabAsset: {fileID: 0} 209 | serializedVersion: 6 210 | m_Component: 211 | - component: {fileID: 792976967} 212 | - component: {fileID: 792976966} 213 | m_Layer: 0 214 | m_Name: main-camera 215 | m_TagString: MainCamera 216 | m_Icon: {fileID: 0} 217 | m_NavMeshLayer: 0 218 | m_StaticEditorFlags: 0 219 | m_IsActive: 1 220 | --- !u!20 &792976966 221 | Camera: 222 | m_ObjectHideFlags: 0 223 | m_CorrespondingSourceObject: {fileID: 0} 224 | m_PrefabInstance: {fileID: 0} 225 | m_PrefabAsset: {fileID: 0} 226 | m_GameObject: {fileID: 792976962} 227 | m_Enabled: 1 228 | serializedVersion: 2 229 | m_ClearFlags: 1 230 | m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0.019607844} 231 | m_projectionMatrixMode: 1 232 | m_GateFitMode: 2 233 | m_FOVAxisMode: 0 234 | m_SensorSize: {x: 36, y: 24} 235 | m_LensShift: {x: 0, y: 0} 236 | m_FocalLength: 50 237 | m_NormalizedViewPortRect: 238 | serializedVersion: 2 239 | x: 0 240 | y: 0 241 | width: 1 242 | height: 1 243 | near clip plane: 0.3 244 | far clip plane: 1000 245 | field of view: 60 246 | orthographic: 1 247 | orthographic size: 5 248 | m_Depth: -1 249 | m_CullingMask: 250 | serializedVersion: 2 251 | m_Bits: 4294967295 252 | m_RenderingPath: -1 253 | m_TargetTexture: {fileID: 0} 254 | m_TargetDisplay: 0 255 | m_TargetEye: 3 256 | m_HDR: 0 257 | m_AllowMSAA: 1 258 | m_AllowDynamicResolution: 0 259 | m_ForceIntoRT: 0 260 | m_OcclusionCulling: 1 261 | m_StereoConvergence: 10 262 | m_StereoSeparation: 0.022 263 | --- !u!4 &792976967 264 | Transform: 265 | m_ObjectHideFlags: 0 266 | m_CorrespondingSourceObject: {fileID: 0} 267 | m_PrefabInstance: {fileID: 0} 268 | m_PrefabAsset: {fileID: 0} 269 | m_GameObject: {fileID: 792976962} 270 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 271 | m_LocalPosition: {x: 0, y: 0, z: -10} 272 | m_LocalScale: {x: 1, y: 1, z: 1} 273 | m_Children: [] 274 | m_Father: {fileID: 0} 275 | m_RootOrder: 0 276 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 277 | --- !u!1 &851295490 278 | GameObject: 279 | m_ObjectHideFlags: 0 280 | m_CorrespondingSourceObject: {fileID: 0} 281 | m_PrefabInstance: {fileID: 0} 282 | m_PrefabAsset: {fileID: 0} 283 | serializedVersion: 6 284 | m_Component: 285 | - component: {fileID: 851295491} 286 | - component: {fileID: 851295493} 287 | - component: {fileID: 851295492} 288 | m_Layer: 0 289 | m_Name: Text 290 | m_TagString: Untagged 291 | m_Icon: {fileID: 0} 292 | m_NavMeshLayer: 0 293 | m_StaticEditorFlags: 0 294 | m_IsActive: 0 295 | --- !u!224 &851295491 296 | RectTransform: 297 | m_ObjectHideFlags: 0 298 | m_CorrespondingSourceObject: {fileID: 0} 299 | m_PrefabInstance: {fileID: 0} 300 | m_PrefabAsset: {fileID: 0} 301 | m_GameObject: {fileID: 851295490} 302 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 303 | m_LocalPosition: {x: 0, y: 0, z: 0} 304 | m_LocalScale: {x: 1, y: 1, z: 1} 305 | m_Children: [] 306 | m_Father: {fileID: 577804094} 307 | m_RootOrder: 0 308 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 309 | m_AnchorMin: {x: 0.5, y: 0.5} 310 | m_AnchorMax: {x: 0.5, y: 0.5} 311 | m_AnchoredPosition: {x: -223, y: 94} 312 | m_SizeDelta: {x: 344.3, y: 64.6} 313 | m_Pivot: {x: 0.5, y: 0.5} 314 | --- !u!114 &851295492 315 | MonoBehaviour: 316 | m_ObjectHideFlags: 0 317 | m_CorrespondingSourceObject: {fileID: 0} 318 | m_PrefabInstance: {fileID: 0} 319 | m_PrefabAsset: {fileID: 0} 320 | m_GameObject: {fileID: 851295490} 321 | m_Enabled: 1 322 | m_EditorHideFlags: 0 323 | m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} 324 | m_Name: 325 | m_EditorClassIdentifier: 326 | m_Material: {fileID: 0} 327 | m_Color: {r: 1, g: 0, b: 0, a: 1} 328 | m_RaycastTarget: 1 329 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 330 | m_Maskable: 1 331 | m_OnCullStateChanged: 332 | m_PersistentCalls: 333 | m_Calls: [] 334 | m_FontData: 335 | m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} 336 | m_FontSize: 57 337 | m_FontStyle: 0 338 | m_BestFit: 0 339 | m_MinSize: 10 340 | m_MaxSize: 64 341 | m_Alignment: 4 342 | m_AlignByGeometry: 0 343 | m_RichText: 1 344 | m_HorizontalOverflow: 0 345 | m_VerticalOverflow: 0 346 | m_LineSpacing: 1 347 | m_Text: New Text 348 | --- !u!222 &851295493 349 | CanvasRenderer: 350 | m_ObjectHideFlags: 0 351 | m_CorrespondingSourceObject: {fileID: 0} 352 | m_PrefabInstance: {fileID: 0} 353 | m_PrefabAsset: {fileID: 0} 354 | m_GameObject: {fileID: 851295490} 355 | m_CullTransparentMesh: 1 356 | --- !u!1 &894684036 357 | GameObject: 358 | m_ObjectHideFlags: 0 359 | m_CorrespondingSourceObject: {fileID: 0} 360 | m_PrefabInstance: {fileID: 0} 361 | m_PrefabAsset: {fileID: 0} 362 | serializedVersion: 6 363 | m_Component: 364 | - component: {fileID: 894684037} 365 | - component: {fileID: 894684039} 366 | - component: {fileID: 894684040} 367 | - component: {fileID: 894684038} 368 | m_Layer: 0 369 | m_Name: image 370 | m_TagString: Untagged 371 | m_Icon: {fileID: 0} 372 | m_NavMeshLayer: 0 373 | m_StaticEditorFlags: 0 374 | m_IsActive: 1 375 | --- !u!224 &894684037 376 | RectTransform: 377 | m_ObjectHideFlags: 0 378 | m_CorrespondingSourceObject: {fileID: 0} 379 | m_PrefabInstance: {fileID: 0} 380 | m_PrefabAsset: {fileID: 0} 381 | m_GameObject: {fileID: 894684036} 382 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 383 | m_LocalPosition: {x: 0, y: 0, z: 0} 384 | m_LocalScale: {x: 1, y: 1, z: 1} 385 | m_Children: [] 386 | m_Father: {fileID: 2058975912} 387 | m_RootOrder: 0 388 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 389 | m_AnchorMin: {x: 0.5, y: 0.5} 390 | m_AnchorMax: {x: 0.5, y: 0.5} 391 | m_AnchoredPosition: {x: 0, y: 0} 392 | m_SizeDelta: {x: 160, y: 140} 393 | m_Pivot: {x: 0.5, y: 0.5} 394 | --- !u!114 &894684038 395 | MonoBehaviour: 396 | m_ObjectHideFlags: 0 397 | m_CorrespondingSourceObject: {fileID: 0} 398 | m_PrefabInstance: {fileID: 0} 399 | m_PrefabAsset: {fileID: 0} 400 | m_GameObject: {fileID: 894684036} 401 | m_Enabled: 1 402 | m_EditorHideFlags: 0 403 | m_Script: {fileID: 11500000, guid: 7b6173ba2cbebd8459659d17dd098fc1, type: 3} 404 | m_Name: 405 | m_EditorClassIdentifier: 406 | --- !u!222 &894684039 407 | CanvasRenderer: 408 | m_ObjectHideFlags: 0 409 | m_CorrespondingSourceObject: {fileID: 0} 410 | m_PrefabInstance: {fileID: 0} 411 | m_PrefabAsset: {fileID: 0} 412 | m_GameObject: {fileID: 894684036} 413 | m_CullTransparentMesh: 1 414 | --- !u!114 &894684040 415 | MonoBehaviour: 416 | m_ObjectHideFlags: 0 417 | m_CorrespondingSourceObject: {fileID: 0} 418 | m_PrefabInstance: {fileID: 0} 419 | m_PrefabAsset: {fileID: 0} 420 | m_GameObject: {fileID: 894684036} 421 | m_Enabled: 1 422 | m_EditorHideFlags: 0 423 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 424 | m_Name: 425 | m_EditorClassIdentifier: 426 | m_Material: {fileID: 0} 427 | m_Color: {r: 0.5958252, g: 0.8584906, b: 0.03644534, a: 1} 428 | m_RaycastTarget: 1 429 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 430 | m_Maskable: 1 431 | m_OnCullStateChanged: 432 | m_PersistentCalls: 433 | m_Calls: [] 434 | m_Sprite: {fileID: 0} 435 | m_Type: 0 436 | m_PreserveAspect: 0 437 | m_FillCenter: 1 438 | m_FillMethod: 4 439 | m_FillAmount: 1 440 | m_FillClockwise: 1 441 | m_FillOrigin: 0 442 | m_UseSpriteMesh: 0 443 | m_PixelsPerUnitMultiplier: 1 444 | --- !u!1 &1048530539 445 | GameObject: 446 | m_ObjectHideFlags: 0 447 | m_CorrespondingSourceObject: {fileID: 0} 448 | m_PrefabInstance: {fileID: 0} 449 | m_PrefabAsset: {fileID: 0} 450 | serializedVersion: 6 451 | m_Component: 452 | - component: {fileID: 1048530540} 453 | - component: {fileID: 1048530542} 454 | - component: {fileID: 1048530541} 455 | m_Layer: 0 456 | m_Name: image 457 | m_TagString: Untagged 458 | m_Icon: {fileID: 0} 459 | m_NavMeshLayer: 0 460 | m_StaticEditorFlags: 0 461 | m_IsActive: 1 462 | --- !u!224 &1048530540 463 | RectTransform: 464 | m_ObjectHideFlags: 0 465 | m_CorrespondingSourceObject: {fileID: 0} 466 | m_PrefabInstance: {fileID: 0} 467 | m_PrefabAsset: {fileID: 0} 468 | m_GameObject: {fileID: 1048530539} 469 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 470 | m_LocalPosition: {x: 0, y: 0, z: 0} 471 | m_LocalScale: {x: 1, y: 1, z: 1} 472 | m_Children: [] 473 | m_Father: {fileID: 1956921963} 474 | m_RootOrder: 0 475 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 476 | m_AnchorMin: {x: 0.5, y: 0.5} 477 | m_AnchorMax: {x: 0.5, y: 0.5} 478 | m_AnchoredPosition: {x: 0, y: 0} 479 | m_SizeDelta: {x: 100, y: 100} 480 | m_Pivot: {x: 0.5, y: 0.5} 481 | --- !u!114 &1048530541 482 | MonoBehaviour: 483 | m_ObjectHideFlags: 0 484 | m_CorrespondingSourceObject: {fileID: 0} 485 | m_PrefabInstance: {fileID: 0} 486 | m_PrefabAsset: {fileID: 0} 487 | m_GameObject: {fileID: 1048530539} 488 | m_Enabled: 1 489 | m_EditorHideFlags: 0 490 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 491 | m_Name: 492 | m_EditorClassIdentifier: 493 | m_Material: {fileID: 0} 494 | m_Color: {r: 1, g: 0.4764151, b: 0.4764151, a: 1} 495 | m_RaycastTarget: 1 496 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 497 | m_Maskable: 1 498 | m_OnCullStateChanged: 499 | m_PersistentCalls: 500 | m_Calls: [] 501 | m_Sprite: {fileID: 0} 502 | m_Type: 0 503 | m_PreserveAspect: 0 504 | m_FillCenter: 1 505 | m_FillMethod: 4 506 | m_FillAmount: 1 507 | m_FillClockwise: 1 508 | m_FillOrigin: 0 509 | m_UseSpriteMesh: 0 510 | m_PixelsPerUnitMultiplier: 1 511 | --- !u!222 &1048530542 512 | CanvasRenderer: 513 | m_ObjectHideFlags: 0 514 | m_CorrespondingSourceObject: {fileID: 0} 515 | m_PrefabInstance: {fileID: 0} 516 | m_PrefabAsset: {fileID: 0} 517 | m_GameObject: {fileID: 1048530539} 518 | m_CullTransparentMesh: 1 519 | --- !u!1 &1537915260 520 | GameObject: 521 | m_ObjectHideFlags: 0 522 | m_CorrespondingSourceObject: {fileID: 0} 523 | m_PrefabInstance: {fileID: 0} 524 | m_PrefabAsset: {fileID: 0} 525 | serializedVersion: 6 526 | m_Component: 527 | - component: {fileID: 1537915262} 528 | - component: {fileID: 1537915261} 529 | - component: {fileID: 1537915263} 530 | m_Layer: 0 531 | m_Name: Canvas 532 | m_TagString: Untagged 533 | m_Icon: {fileID: 0} 534 | m_NavMeshLayer: 0 535 | m_StaticEditorFlags: 0 536 | m_IsActive: 1 537 | --- !u!223 &1537915261 538 | Canvas: 539 | m_ObjectHideFlags: 0 540 | m_CorrespondingSourceObject: {fileID: 0} 541 | m_PrefabInstance: {fileID: 0} 542 | m_PrefabAsset: {fileID: 0} 543 | m_GameObject: {fileID: 1537915260} 544 | m_Enabled: 1 545 | serializedVersion: 3 546 | m_RenderMode: 0 547 | m_Camera: {fileID: 0} 548 | m_PlaneDistance: 100 549 | m_PixelPerfect: 0 550 | m_ReceivesEvents: 1 551 | m_OverrideSorting: 0 552 | m_OverridePixelPerfect: 0 553 | m_SortingBucketNormalizedSize: 0 554 | m_AdditionalShaderChannelsFlag: 0 555 | m_SortingLayerID: 0 556 | m_SortingOrder: 0 557 | m_TargetDisplay: 0 558 | --- !u!224 &1537915262 559 | RectTransform: 560 | m_ObjectHideFlags: 0 561 | m_CorrespondingSourceObject: {fileID: 0} 562 | m_PrefabInstance: {fileID: 0} 563 | m_PrefabAsset: {fileID: 0} 564 | m_GameObject: {fileID: 1537915260} 565 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 566 | m_LocalPosition: {x: 0, y: 0, z: 0} 567 | m_LocalScale: {x: 0, y: 0, z: 0} 568 | m_Children: 569 | - {fileID: 577804094} 570 | - {fileID: 1956921963} 571 | - {fileID: 2058975912} 572 | m_Father: {fileID: 0} 573 | m_RootOrder: 1 574 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 575 | m_AnchorMin: {x: 0, y: 0} 576 | m_AnchorMax: {x: 0, y: 0} 577 | m_AnchoredPosition: {x: 0, y: 0} 578 | m_SizeDelta: {x: 0, y: 0} 579 | m_Pivot: {x: 0, y: 0} 580 | --- !u!114 &1537915263 581 | MonoBehaviour: 582 | m_ObjectHideFlags: 0 583 | m_CorrespondingSourceObject: {fileID: 0} 584 | m_PrefabInstance: {fileID: 0} 585 | m_PrefabAsset: {fileID: 0} 586 | m_GameObject: {fileID: 1537915260} 587 | m_Enabled: 1 588 | m_EditorHideFlags: 0 589 | m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} 590 | m_Name: 591 | m_EditorClassIdentifier: 592 | m_UiScaleMode: 1 593 | m_ReferencePixelsPerUnit: 100 594 | m_ScaleFactor: 1 595 | m_ReferenceResolution: {x: 1024, y: 768} 596 | m_ScreenMatchMode: 0 597 | m_MatchWidthOrHeight: 0 598 | m_PhysicalUnit: 3 599 | m_FallbackScreenDPI: 96 600 | m_DefaultSpriteDPI: 96 601 | m_DynamicPixelsPerUnit: 1 602 | m_PresetInfoIsWorld: 0 603 | --- !u!1 &1956921962 604 | GameObject: 605 | m_ObjectHideFlags: 0 606 | m_CorrespondingSourceObject: {fileID: 0} 607 | m_PrefabInstance: {fileID: 0} 608 | m_PrefabAsset: {fileID: 0} 609 | serializedVersion: 6 610 | m_Component: 611 | - component: {fileID: 1956921963} 612 | - component: {fileID: 1956921966} 613 | - component: {fileID: 1956921965} 614 | - component: {fileID: 1956921964} 615 | m_Layer: 0 616 | m_Name: standart-ui-mask 617 | m_TagString: Untagged 618 | m_Icon: {fileID: 0} 619 | m_NavMeshLayer: 0 620 | m_StaticEditorFlags: 0 621 | m_IsActive: 1 622 | --- !u!224 &1956921963 623 | RectTransform: 624 | m_ObjectHideFlags: 0 625 | m_CorrespondingSourceObject: {fileID: 0} 626 | m_PrefabInstance: {fileID: 0} 627 | m_PrefabAsset: {fileID: 0} 628 | m_GameObject: {fileID: 1956921962} 629 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 630 | m_LocalPosition: {x: 0, y: 0, z: 0} 631 | m_LocalScale: {x: 1, y: 1, z: 1} 632 | m_Children: 633 | - {fileID: 1048530540} 634 | m_Father: {fileID: 1537915262} 635 | m_RootOrder: 1 636 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 637 | m_AnchorMin: {x: 0.5, y: 0.5} 638 | m_AnchorMax: {x: 0.5, y: 0.5} 639 | m_AnchoredPosition: {x: -80, y: 0} 640 | m_SizeDelta: {x: 160, y: 140} 641 | m_Pivot: {x: 0.5, y: 0.5} 642 | --- !u!114 &1956921964 643 | MonoBehaviour: 644 | m_ObjectHideFlags: 0 645 | m_CorrespondingSourceObject: {fileID: 0} 646 | m_PrefabInstance: {fileID: 0} 647 | m_PrefabAsset: {fileID: 0} 648 | m_GameObject: {fileID: 1956921962} 649 | m_Enabled: 1 650 | m_EditorHideFlags: 0 651 | m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} 652 | m_Name: 653 | m_EditorClassIdentifier: 654 | m_ShowMaskGraphic: 0 655 | --- !u!114 &1956921965 656 | MonoBehaviour: 657 | m_ObjectHideFlags: 0 658 | m_CorrespondingSourceObject: {fileID: 0} 659 | m_PrefabInstance: {fileID: 0} 660 | m_PrefabAsset: {fileID: 0} 661 | m_GameObject: {fileID: 1956921962} 662 | m_Enabled: 1 663 | m_EditorHideFlags: 0 664 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 665 | m_Name: 666 | m_EditorClassIdentifier: 667 | m_Material: {fileID: 0} 668 | m_Color: {r: 1, g: 0.89759856, b: 0, a: 1} 669 | m_RaycastTarget: 1 670 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 671 | m_Maskable: 1 672 | m_OnCullStateChanged: 673 | m_PersistentCalls: 674 | m_Calls: [] 675 | m_Sprite: {fileID: 0} 676 | m_Type: 0 677 | m_PreserveAspect: 0 678 | m_FillCenter: 1 679 | m_FillMethod: 4 680 | m_FillAmount: 1 681 | m_FillClockwise: 1 682 | m_FillOrigin: 0 683 | m_UseSpriteMesh: 0 684 | m_PixelsPerUnitMultiplier: 1 685 | --- !u!222 &1956921966 686 | CanvasRenderer: 687 | m_ObjectHideFlags: 0 688 | m_CorrespondingSourceObject: {fileID: 0} 689 | m_PrefabInstance: {fileID: 0} 690 | m_PrefabAsset: {fileID: 0} 691 | m_GameObject: {fileID: 1956921962} 692 | m_CullTransparentMesh: 1 693 | --- !u!1 &2058975911 694 | GameObject: 695 | m_ObjectHideFlags: 0 696 | m_CorrespondingSourceObject: {fileID: 0} 697 | m_PrefabInstance: {fileID: 0} 698 | m_PrefabAsset: {fileID: 0} 699 | serializedVersion: 6 700 | m_Component: 701 | - component: {fileID: 2058975912} 702 | - component: {fileID: 2058975915} 703 | - component: {fileID: 2058975914} 704 | - component: {fileID: 2058975913} 705 | m_Layer: 0 706 | m_Name: reverse-ui-mask 707 | m_TagString: Untagged 708 | m_Icon: {fileID: 0} 709 | m_NavMeshLayer: 0 710 | m_StaticEditorFlags: 0 711 | m_IsActive: 1 712 | --- !u!224 &2058975912 713 | RectTransform: 714 | m_ObjectHideFlags: 0 715 | m_CorrespondingSourceObject: {fileID: 0} 716 | m_PrefabInstance: {fileID: 0} 717 | m_PrefabAsset: {fileID: 0} 718 | m_GameObject: {fileID: 2058975911} 719 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 720 | m_LocalPosition: {x: 0, y: 0, z: 0} 721 | m_LocalScale: {x: 1, y: 1, z: 1} 722 | m_Children: 723 | - {fileID: 894684037} 724 | m_Father: {fileID: 1537915262} 725 | m_RootOrder: 2 726 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 727 | m_AnchorMin: {x: 0.5, y: 0.5} 728 | m_AnchorMax: {x: 0.5, y: 0.5} 729 | m_AnchoredPosition: {x: 125, y: 0} 730 | m_SizeDelta: {x: 100, y: 100} 731 | m_Pivot: {x: 0.5, y: 0.5} 732 | --- !u!114 &2058975913 733 | MonoBehaviour: 734 | m_ObjectHideFlags: 0 735 | m_CorrespondingSourceObject: {fileID: 0} 736 | m_PrefabInstance: {fileID: 0} 737 | m_PrefabAsset: {fileID: 0} 738 | m_GameObject: {fileID: 2058975911} 739 | m_Enabled: 1 740 | m_EditorHideFlags: 0 741 | m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} 742 | m_Name: 743 | m_EditorClassIdentifier: 744 | m_ShowMaskGraphic: 0 745 | --- !u!114 &2058975914 746 | MonoBehaviour: 747 | m_ObjectHideFlags: 0 748 | m_CorrespondingSourceObject: {fileID: 0} 749 | m_PrefabInstance: {fileID: 0} 750 | m_PrefabAsset: {fileID: 0} 751 | m_GameObject: {fileID: 2058975911} 752 | m_Enabled: 1 753 | m_EditorHideFlags: 0 754 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 755 | m_Name: 756 | m_EditorClassIdentifier: 757 | m_Material: {fileID: 0} 758 | m_Color: {r: 1, g: 0.5754001, b: 0, a: 1} 759 | m_RaycastTarget: 1 760 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 761 | m_Maskable: 0 762 | m_OnCullStateChanged: 763 | m_PersistentCalls: 764 | m_Calls: [] 765 | m_Sprite: {fileID: 0} 766 | m_Type: 0 767 | m_PreserveAspect: 0 768 | m_FillCenter: 1 769 | m_FillMethod: 4 770 | m_FillAmount: 1 771 | m_FillClockwise: 1 772 | m_FillOrigin: 0 773 | m_UseSpriteMesh: 0 774 | m_PixelsPerUnitMultiplier: 1 775 | --- !u!222 &2058975915 776 | CanvasRenderer: 777 | m_ObjectHideFlags: 0 778 | m_CorrespondingSourceObject: {fileID: 0} 779 | m_PrefabInstance: {fileID: 0} 780 | m_PrefabAsset: {fileID: 0} 781 | m_GameObject: {fileID: 2058975911} 782 | m_CullTransparentMesh: 1 783 | --------------------------------------------------------------------------------