├── .gitignore ├── .vsconfig ├── Assets ├── Color picker.meta ├── Color picker │ ├── Color picker sample scene.unity │ ├── Color picker sample scene.unity.meta │ ├── ColorPicker shader.shader │ ├── ColorPicker shader.shader.meta │ ├── ColorPicker.cs │ ├── ColorPicker.cs.meta │ ├── ColorPreview.cs │ ├── ColorPreview.cs.meta │ ├── Editor.meta │ └── Editor │ │ ├── ColorPickerEditor.cs │ │ └── ColorPickerEditor.cs.meta ├── Editor.meta ├── Editor │ ├── MediationAdapterDependencies.xml │ └── MediationAdapterDependencies.xml.meta ├── MobileDependencyResolver.meta ├── MobileDependencyResolver │ ├── Editor.meta │ └── Editor │ │ ├── Google.IOSResolver.dll │ │ ├── Google.IOSResolver.dll.meta │ │ ├── Google.JarResolver.dll │ │ ├── Google.JarResolver.dll.meta │ │ ├── Google.VersionHandler.dll │ │ ├── Google.VersionHandler.dll.meta │ │ ├── Google.VersionHandlerImpl.dll │ │ ├── Google.VersionHandlerImpl.dll.meta │ │ ├── mobile-dependency-resolver.txt │ │ └── mobile-dependency-resolver.txt.meta ├── Resources.meta └── Resources │ ├── BillingMode.json │ └── BillingMode.json.meta ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── GvhProjectSettings.xml ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Packages │ ├── com.unity.services.core │ │ └── Settings.json │ └── com.unity.services.mediation │ │ └── Settings.json ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── VersionControlSettings.asset ├── README.md └── Screenshot.png /.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/main/Unity.gitignore 4 | # 5 | .utmp/ 6 | /[Ll]ibrary/ 7 | /[Tt]emp/ 8 | /[Oo]bj/ 9 | /[Bb]uild/ 10 | /[Bb]uilds/ 11 | /[Ll]ogs/ 12 | /[Uu]ser[Ss]ettings/ 13 | *.log 14 | 15 | # By default unity supports Blender asset imports, *.blend1 blender files do not need to be commited to version control. 16 | *.blend1 17 | *.blend1.meta 18 | 19 | # MemoryCaptures can get excessive in size. 20 | # They also could contain extremely sensitive data 21 | /[Mm]emoryCaptures/ 22 | 23 | # Recordings can get excessive in size 24 | /[Rr]ecordings/ 25 | 26 | # Uncomment this line if you wish to ignore the asset store tools plugin 27 | # /[Aa]ssets/AssetStoreTools* 28 | 29 | # Autogenerated Jetbrains Rider plugin 30 | /[Aa]ssets/Plugins/Editor/JetBrains* 31 | 32 | # Visual Studio cache directory 33 | .vs/ 34 | 35 | # Gradle cache directory 36 | .gradle/ 37 | 38 | # Autogenerated VS/MD/Consulo solution and project files 39 | ExportedObj/ 40 | .consulo/ 41 | *.csproj 42 | *.unityproj 43 | *.sln 44 | *.suo 45 | *.tmp 46 | *.user 47 | *.userprefs 48 | *.pidb 49 | *.booproj 50 | *.svd 51 | *.pdb 52 | *.mdb 53 | *.opendb 54 | *.VC.db 55 | 56 | # Unity3D generated meta files 57 | *.pidb.meta 58 | *.pdb.meta 59 | *.mdb.meta 60 | 61 | # Unity3D generated file on crash reports 62 | sysinfo.txt 63 | 64 | # Builds 65 | *.apk 66 | *.aab 67 | *.unitypackage 68 | *.unitypackage.meta 69 | *.app 70 | 71 | # Crashlytics generated file 72 | crashlytics-build.properties 73 | 74 | # Packed Addressables 75 | /[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin* 76 | 77 | # Temporary auto-generated Android Assets 78 | /[Aa]ssets/[Ss]treamingAssets/aa.meta 79 | /[Aa]ssets/[Ss]treamingAssets/aa/* 80 | 81 | # Visual Scripting auto-generated files 82 | /[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Flow/UnitOptions.db 83 | /[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Flow/UnitOptions.db.meta 84 | /[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Core/Property Providers 85 | /[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Core/Property Providers.meta 86 | -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "components": [ 4 | "Microsoft.VisualStudio.Workload.ManagedGame" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /Assets/Color picker.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1dd842600228e8448901c09b3962fb2b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Color picker/Color picker sample scene.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: 1 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: 256 73 | m_ReflectionCompression: 2 74 | m_MixedBakeMode: 2 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: 2 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: 1835238528} 102 | --- !u!196 &4 103 | NavMeshSettings: 104 | serializedVersion: 2 105 | m_ObjectHideFlags: 0 106 | m_BuildSettings: 107 | serializedVersion: 3 108 | agentTypeID: 0 109 | agentRadius: 0.5 110 | agentHeight: 2 111 | agentSlope: 45 112 | agentClimb: 0.4 113 | ledgeDropHeight: 0 114 | maxJumpAcrossDistance: 0 115 | minRegionArea: 2 116 | manualCellSize: 0 117 | cellSize: 0.16666667 118 | manualTileSize: 0 119 | tileSize: 256 120 | buildHeightMesh: 0 121 | maxJobWorkers: 0 122 | preserveTilesOutsideBounds: 0 123 | debug: 124 | m_Flags: 0 125 | m_NavMeshData: {fileID: 0} 126 | --- !u!1 &345254171 127 | GameObject: 128 | m_ObjectHideFlags: 0 129 | m_CorrespondingSourceObject: {fileID: 0} 130 | m_PrefabInstance: {fileID: 0} 131 | m_PrefabAsset: {fileID: 0} 132 | serializedVersion: 6 133 | m_Component: 134 | - component: {fileID: 345254174} 135 | - component: {fileID: 345254173} 136 | - component: {fileID: 345254172} 137 | m_Layer: 0 138 | m_Name: EventSystem 139 | m_TagString: Untagged 140 | m_Icon: {fileID: 0} 141 | m_NavMeshLayer: 0 142 | m_StaticEditorFlags: 0 143 | m_IsActive: 1 144 | --- !u!114 &345254172 145 | MonoBehaviour: 146 | m_ObjectHideFlags: 0 147 | m_CorrespondingSourceObject: {fileID: 0} 148 | m_PrefabInstance: {fileID: 0} 149 | m_PrefabAsset: {fileID: 0} 150 | m_GameObject: {fileID: 345254171} 151 | m_Enabled: 1 152 | m_EditorHideFlags: 0 153 | m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} 154 | m_Name: 155 | m_EditorClassIdentifier: 156 | m_SendPointerHoverToParent: 1 157 | m_HorizontalAxis: Horizontal 158 | m_VerticalAxis: Vertical 159 | m_SubmitButton: Submit 160 | m_CancelButton: Cancel 161 | m_InputActionsPerSecond: 10 162 | m_RepeatDelay: 0.5 163 | m_ForceModuleActive: 0 164 | --- !u!114 &345254173 165 | MonoBehaviour: 166 | m_ObjectHideFlags: 0 167 | m_CorrespondingSourceObject: {fileID: 0} 168 | m_PrefabInstance: {fileID: 0} 169 | m_PrefabAsset: {fileID: 0} 170 | m_GameObject: {fileID: 345254171} 171 | m_Enabled: 1 172 | m_EditorHideFlags: 0 173 | m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} 174 | m_Name: 175 | m_EditorClassIdentifier: 176 | m_FirstSelected: {fileID: 0} 177 | m_sendNavigationEvents: 1 178 | m_DragThreshold: 10 179 | --- !u!4 &345254174 180 | Transform: 181 | m_ObjectHideFlags: 0 182 | m_CorrespondingSourceObject: {fileID: 0} 183 | m_PrefabInstance: {fileID: 0} 184 | m_PrefabAsset: {fileID: 0} 185 | m_GameObject: {fileID: 345254171} 186 | serializedVersion: 2 187 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 188 | m_LocalPosition: {x: 0, y: 0, z: 0} 189 | m_LocalScale: {x: 1, y: 1, z: 1} 190 | m_ConstrainProportionsScale: 0 191 | m_Children: [] 192 | m_Father: {fileID: 0} 193 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 194 | --- !u!1 &352399579 195 | GameObject: 196 | m_ObjectHideFlags: 0 197 | m_CorrespondingSourceObject: {fileID: 0} 198 | m_PrefabInstance: {fileID: 0} 199 | m_PrefabAsset: {fileID: 0} 200 | serializedVersion: 6 201 | m_Component: 202 | - component: {fileID: 352399580} 203 | - component: {fileID: 352399583} 204 | - component: {fileID: 352399582} 205 | - component: {fileID: 352399581} 206 | m_Layer: 5 207 | m_Name: Color preview image 208 | m_TagString: Untagged 209 | m_Icon: {fileID: 0} 210 | m_NavMeshLayer: 0 211 | m_StaticEditorFlags: 0 212 | m_IsActive: 1 213 | --- !u!224 &352399580 214 | RectTransform: 215 | m_ObjectHideFlags: 0 216 | m_CorrespondingSourceObject: {fileID: 0} 217 | m_PrefabInstance: {fileID: 0} 218 | m_PrefabAsset: {fileID: 0} 219 | m_GameObject: {fileID: 352399579} 220 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 221 | m_LocalPosition: {x: 0, y: 0, z: 0} 222 | m_LocalScale: {x: 1, y: 1, z: 1} 223 | m_ConstrainProportionsScale: 0 224 | m_Children: [] 225 | m_Father: {fileID: 782062901} 226 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 227 | m_AnchorMin: {x: 0, y: 1} 228 | m_AnchorMax: {x: 0, y: 1} 229 | m_AnchoredPosition: {x: 20, y: -20} 230 | m_SizeDelta: {x: 200, y: 100} 231 | m_Pivot: {x: 0, y: 1} 232 | --- !u!114 &352399581 233 | MonoBehaviour: 234 | m_ObjectHideFlags: 0 235 | m_CorrespondingSourceObject: {fileID: 0} 236 | m_PrefabInstance: {fileID: 0} 237 | m_PrefabAsset: {fileID: 0} 238 | m_GameObject: {fileID: 352399579} 239 | m_Enabled: 1 240 | m_EditorHideFlags: 0 241 | m_Script: {fileID: 11500000, guid: 5c2c42ee235f17049ab3792499eccc59, type: 3} 242 | m_Name: 243 | m_EditorClassIdentifier: 244 | _previewGraphic: {fileID: 352399582} 245 | _colorPicker: {fileID: 382679909} 246 | --- !u!114 &352399582 247 | MonoBehaviour: 248 | m_ObjectHideFlags: 0 249 | m_CorrespondingSourceObject: {fileID: 0} 250 | m_PrefabInstance: {fileID: 0} 251 | m_PrefabAsset: {fileID: 0} 252 | m_GameObject: {fileID: 352399579} 253 | m_Enabled: 1 254 | m_EditorHideFlags: 0 255 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 256 | m_Name: 257 | m_EditorClassIdentifier: 258 | m_Material: {fileID: 0} 259 | m_Color: {r: 1, g: 1, b: 1, a: 1} 260 | m_RaycastTarget: 1 261 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 262 | m_Maskable: 1 263 | m_OnCullStateChanged: 264 | m_PersistentCalls: 265 | m_Calls: [] 266 | m_Sprite: {fileID: 0} 267 | m_Type: 0 268 | m_PreserveAspect: 0 269 | m_FillCenter: 1 270 | m_FillMethod: 4 271 | m_FillAmount: 1 272 | m_FillClockwise: 1 273 | m_FillOrigin: 0 274 | m_UseSpriteMesh: 0 275 | m_PixelsPerUnitMultiplier: 1 276 | --- !u!222 &352399583 277 | CanvasRenderer: 278 | m_ObjectHideFlags: 0 279 | m_CorrespondingSourceObject: {fileID: 0} 280 | m_PrefabInstance: {fileID: 0} 281 | m_PrefabAsset: {fileID: 0} 282 | m_GameObject: {fileID: 352399579} 283 | m_CullTransparentMesh: 0 284 | --- !u!1 &382679905 285 | GameObject: 286 | m_ObjectHideFlags: 0 287 | m_CorrespondingSourceObject: {fileID: 0} 288 | m_PrefabInstance: {fileID: 0} 289 | m_PrefabAsset: {fileID: 0} 290 | serializedVersion: 6 291 | m_Component: 292 | - component: {fileID: 382679906} 293 | - component: {fileID: 382679908} 294 | - component: {fileID: 382679907} 295 | - component: {fileID: 382679909} 296 | m_Layer: 5 297 | m_Name: Color picker 298 | m_TagString: Untagged 299 | m_Icon: {fileID: 0} 300 | m_NavMeshLayer: 0 301 | m_StaticEditorFlags: 0 302 | m_IsActive: 1 303 | --- !u!224 &382679906 304 | RectTransform: 305 | m_ObjectHideFlags: 0 306 | m_CorrespondingSourceObject: {fileID: 0} 307 | m_PrefabInstance: {fileID: 0} 308 | m_PrefabAsset: {fileID: 0} 309 | m_GameObject: {fileID: 382679905} 310 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 311 | m_LocalPosition: {x: 0, y: 0, z: 0} 312 | m_LocalScale: {x: 1, y: 1, z: 1} 313 | m_ConstrainProportionsScale: 0 314 | m_Children: [] 315 | m_Father: {fileID: 782062901} 316 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 317 | m_AnchorMin: {x: 0, y: 1} 318 | m_AnchorMax: {x: 0, y: 1} 319 | m_AnchoredPosition: {x: 20, y: -140} 320 | m_SizeDelta: {x: 480, y: 480} 321 | m_Pivot: {x: 0, y: 1} 322 | --- !u!114 &382679907 323 | MonoBehaviour: 324 | m_ObjectHideFlags: 0 325 | m_CorrespondingSourceObject: {fileID: 0} 326 | m_PrefabInstance: {fileID: 0} 327 | m_PrefabAsset: {fileID: 0} 328 | m_GameObject: {fileID: 382679905} 329 | m_Enabled: 1 330 | m_EditorHideFlags: 0 331 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 332 | m_Name: 333 | m_EditorClassIdentifier: 334 | m_Material: {fileID: 0} 335 | m_Color: {r: 1, g: 1, b: 1, a: 1} 336 | m_RaycastTarget: 1 337 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 338 | m_Maskable: 1 339 | m_OnCullStateChanged: 340 | m_PersistentCalls: 341 | m_Calls: [] 342 | m_Sprite: {fileID: 0} 343 | m_Type: 0 344 | m_PreserveAspect: 0 345 | m_FillCenter: 1 346 | m_FillMethod: 4 347 | m_FillAmount: 1 348 | m_FillClockwise: 1 349 | m_FillOrigin: 0 350 | m_UseSpriteMesh: 0 351 | m_PixelsPerUnitMultiplier: 1 352 | --- !u!222 &382679908 353 | CanvasRenderer: 354 | m_ObjectHideFlags: 0 355 | m_CorrespondingSourceObject: {fileID: 0} 356 | m_PrefabInstance: {fileID: 0} 357 | m_PrefabAsset: {fileID: 0} 358 | m_GameObject: {fileID: 382679905} 359 | m_CullTransparentMesh: 0 360 | --- !u!114 &382679909 361 | MonoBehaviour: 362 | m_ObjectHideFlags: 0 363 | m_CorrespondingSourceObject: {fileID: 0} 364 | m_PrefabInstance: {fileID: 0} 365 | m_PrefabAsset: {fileID: 0} 366 | m_GameObject: {fileID: 382679905} 367 | m_Enabled: 1 368 | m_EditorHideFlags: 0 369 | m_Script: {fileID: 11500000, guid: af3ff511a986a5c4e8dc1a7939e7b981, type: 3} 370 | m_Name: 371 | m_EditorClassIdentifier: 372 | _hueCircleInnerRadius: 0.4 373 | _hueSelectorInnerRadius: 0.8 374 | _saturationValueSquareSize: 0.25 375 | _colorPickerShader: {fileID: 4800000, guid: 1fe34ac173a0455499fd722bc6744230, type: 3} 376 | --- !u!1 &421110704 377 | GameObject: 378 | m_ObjectHideFlags: 0 379 | m_CorrespondingSourceObject: {fileID: 0} 380 | m_PrefabInstance: {fileID: 0} 381 | m_PrefabAsset: {fileID: 0} 382 | serializedVersion: 6 383 | m_Component: 384 | - component: {fileID: 421110705} 385 | - component: {fileID: 421110709} 386 | - component: {fileID: 421110708} 387 | - component: {fileID: 421110707} 388 | - component: {fileID: 421110706} 389 | m_Layer: 5 390 | m_Name: MaskAndAlphaSupportShowcase 391 | m_TagString: Untagged 392 | m_Icon: {fileID: 0} 393 | m_NavMeshLayer: 0 394 | m_StaticEditorFlags: 0 395 | m_IsActive: 1 396 | --- !u!224 &421110705 397 | RectTransform: 398 | m_ObjectHideFlags: 0 399 | m_CorrespondingSourceObject: {fileID: 0} 400 | m_PrefabInstance: {fileID: 0} 401 | m_PrefabAsset: {fileID: 0} 402 | m_GameObject: {fileID: 421110704} 403 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 404 | m_LocalPosition: {x: 0, y: 0, z: 0} 405 | m_LocalScale: {x: 1, y: 1, z: 1} 406 | m_ConstrainProportionsScale: 0 407 | m_Children: 408 | - {fileID: 802345778} 409 | - {fileID: 1489526475} 410 | m_Father: {fileID: 782062901} 411 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 412 | m_AnchorMin: {x: 0, y: 1} 413 | m_AnchorMax: {x: 0, y: 1} 414 | m_AnchoredPosition: {x: 520, y: -20} 415 | m_SizeDelta: {x: 300, y: 600} 416 | m_Pivot: {x: 0, y: 1} 417 | --- !u!225 &421110706 418 | CanvasGroup: 419 | m_ObjectHideFlags: 0 420 | m_CorrespondingSourceObject: {fileID: 0} 421 | m_PrefabInstance: {fileID: 0} 422 | m_PrefabAsset: {fileID: 0} 423 | m_GameObject: {fileID: 421110704} 424 | m_Enabled: 1 425 | m_Alpha: 0.3 426 | m_Interactable: 1 427 | m_BlocksRaycasts: 1 428 | m_IgnoreParentGroups: 0 429 | --- !u!114 &421110707 430 | MonoBehaviour: 431 | m_ObjectHideFlags: 0 432 | m_CorrespondingSourceObject: {fileID: 0} 433 | m_PrefabInstance: {fileID: 0} 434 | m_PrefabAsset: {fileID: 0} 435 | m_GameObject: {fileID: 421110704} 436 | m_Enabled: 1 437 | m_EditorHideFlags: 0 438 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 439 | m_Name: 440 | m_EditorClassIdentifier: 441 | m_Material: {fileID: 0} 442 | m_Color: {r: 1, g: 1, b: 1, a: 1} 443 | m_RaycastTarget: 1 444 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 445 | m_Maskable: 1 446 | m_OnCullStateChanged: 447 | m_PersistentCalls: 448 | m_Calls: [] 449 | m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} 450 | m_Type: 1 451 | m_PreserveAspect: 0 452 | m_FillCenter: 1 453 | m_FillMethod: 4 454 | m_FillAmount: 1 455 | m_FillClockwise: 1 456 | m_FillOrigin: 0 457 | m_UseSpriteMesh: 0 458 | m_PixelsPerUnitMultiplier: 0.25 459 | --- !u!222 &421110708 460 | CanvasRenderer: 461 | m_ObjectHideFlags: 0 462 | m_CorrespondingSourceObject: {fileID: 0} 463 | m_PrefabInstance: {fileID: 0} 464 | m_PrefabAsset: {fileID: 0} 465 | m_GameObject: {fileID: 421110704} 466 | m_CullTransparentMesh: 1 467 | --- !u!114 &421110709 468 | MonoBehaviour: 469 | m_ObjectHideFlags: 0 470 | m_CorrespondingSourceObject: {fileID: 0} 471 | m_PrefabInstance: {fileID: 0} 472 | m_PrefabAsset: {fileID: 0} 473 | m_GameObject: {fileID: 421110704} 474 | m_Enabled: 1 475 | m_EditorHideFlags: 0 476 | m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} 477 | m_Name: 478 | m_EditorClassIdentifier: 479 | m_ShowMaskGraphic: 0 480 | --- !u!1 &519420028 481 | GameObject: 482 | m_ObjectHideFlags: 0 483 | m_CorrespondingSourceObject: {fileID: 0} 484 | m_PrefabInstance: {fileID: 0} 485 | m_PrefabAsset: {fileID: 0} 486 | serializedVersion: 6 487 | m_Component: 488 | - component: {fileID: 519420032} 489 | - component: {fileID: 519420031} 490 | - component: {fileID: 519420029} 491 | m_Layer: 0 492 | m_Name: Main Camera 493 | m_TagString: MainCamera 494 | m_Icon: {fileID: 0} 495 | m_NavMeshLayer: 0 496 | m_StaticEditorFlags: 0 497 | m_IsActive: 1 498 | --- !u!81 &519420029 499 | AudioListener: 500 | m_ObjectHideFlags: 0 501 | m_CorrespondingSourceObject: {fileID: 0} 502 | m_PrefabInstance: {fileID: 0} 503 | m_PrefabAsset: {fileID: 0} 504 | m_GameObject: {fileID: 519420028} 505 | m_Enabled: 1 506 | --- !u!20 &519420031 507 | Camera: 508 | m_ObjectHideFlags: 0 509 | m_CorrespondingSourceObject: {fileID: 0} 510 | m_PrefabInstance: {fileID: 0} 511 | m_PrefabAsset: {fileID: 0} 512 | m_GameObject: {fileID: 519420028} 513 | m_Enabled: 1 514 | serializedVersion: 2 515 | m_ClearFlags: 2 516 | m_BackGroundColor: {r: 0.089088656, g: 0.102733016, b: 0.13207549, a: 0} 517 | m_projectionMatrixMode: 1 518 | m_GateFitMode: 2 519 | m_FOVAxisMode: 0 520 | m_Iso: 200 521 | m_ShutterSpeed: 0.005 522 | m_Aperture: 16 523 | m_FocusDistance: 10 524 | m_FocalLength: 50 525 | m_BladeCount: 5 526 | m_Curvature: {x: 2, y: 11} 527 | m_BarrelClipping: 0.25 528 | m_Anamorphism: 0 529 | m_SensorSize: {x: 36, y: 24} 530 | m_LensShift: {x: 0, y: 0} 531 | m_NormalizedViewPortRect: 532 | serializedVersion: 2 533 | x: 0 534 | y: 0 535 | width: 1 536 | height: 1 537 | near clip plane: 0.3 538 | far clip plane: 1000 539 | field of view: 60 540 | orthographic: 1 541 | orthographic size: 5 542 | m_Depth: -1 543 | m_CullingMask: 544 | serializedVersion: 2 545 | m_Bits: 4294967295 546 | m_RenderingPath: -1 547 | m_TargetTexture: {fileID: 0} 548 | m_TargetDisplay: 0 549 | m_TargetEye: 0 550 | m_HDR: 1 551 | m_AllowMSAA: 0 552 | m_AllowDynamicResolution: 0 553 | m_ForceIntoRT: 0 554 | m_OcclusionCulling: 0 555 | m_StereoConvergence: 10 556 | m_StereoSeparation: 0.022 557 | --- !u!4 &519420032 558 | Transform: 559 | m_ObjectHideFlags: 0 560 | m_CorrespondingSourceObject: {fileID: 0} 561 | m_PrefabInstance: {fileID: 0} 562 | m_PrefabAsset: {fileID: 0} 563 | m_GameObject: {fileID: 519420028} 564 | serializedVersion: 2 565 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 566 | m_LocalPosition: {x: 0, y: 0, z: -10} 567 | m_LocalScale: {x: 1, y: 1, z: 1} 568 | m_ConstrainProportionsScale: 0 569 | m_Children: [] 570 | m_Father: {fileID: 0} 571 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 572 | --- !u!1 &782062897 573 | GameObject: 574 | m_ObjectHideFlags: 0 575 | m_CorrespondingSourceObject: {fileID: 0} 576 | m_PrefabInstance: {fileID: 0} 577 | m_PrefabAsset: {fileID: 0} 578 | serializedVersion: 6 579 | m_Component: 580 | - component: {fileID: 782062901} 581 | - component: {fileID: 782062900} 582 | - component: {fileID: 782062899} 583 | - component: {fileID: 782062898} 584 | m_Layer: 5 585 | m_Name: Canvas 586 | m_TagString: Untagged 587 | m_Icon: {fileID: 0} 588 | m_NavMeshLayer: 0 589 | m_StaticEditorFlags: 0 590 | m_IsActive: 1 591 | --- !u!114 &782062898 592 | MonoBehaviour: 593 | m_ObjectHideFlags: 0 594 | m_CorrespondingSourceObject: {fileID: 0} 595 | m_PrefabInstance: {fileID: 0} 596 | m_PrefabAsset: {fileID: 0} 597 | m_GameObject: {fileID: 782062897} 598 | m_Enabled: 1 599 | m_EditorHideFlags: 0 600 | m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} 601 | m_Name: 602 | m_EditorClassIdentifier: 603 | m_IgnoreReversedGraphics: 1 604 | m_BlockingObjects: 0 605 | m_BlockingMask: 606 | serializedVersion: 2 607 | m_Bits: 4294967295 608 | --- !u!114 &782062899 609 | MonoBehaviour: 610 | m_ObjectHideFlags: 0 611 | m_CorrespondingSourceObject: {fileID: 0} 612 | m_PrefabInstance: {fileID: 0} 613 | m_PrefabAsset: {fileID: 0} 614 | m_GameObject: {fileID: 782062897} 615 | m_Enabled: 1 616 | m_EditorHideFlags: 0 617 | m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} 618 | m_Name: 619 | m_EditorClassIdentifier: 620 | m_UiScaleMode: 1 621 | m_ReferencePixelsPerUnit: 100 622 | m_ScaleFactor: 1 623 | m_ReferenceResolution: {x: 1920, y: 1080} 624 | m_ScreenMatchMode: 1 625 | m_MatchWidthOrHeight: 0 626 | m_PhysicalUnit: 3 627 | m_FallbackScreenDPI: 96 628 | m_DefaultSpriteDPI: 96 629 | m_DynamicPixelsPerUnit: 1 630 | m_PresetInfoIsWorld: 0 631 | --- !u!223 &782062900 632 | Canvas: 633 | m_ObjectHideFlags: 0 634 | m_CorrespondingSourceObject: {fileID: 0} 635 | m_PrefabInstance: {fileID: 0} 636 | m_PrefabAsset: {fileID: 0} 637 | m_GameObject: {fileID: 782062897} 638 | m_Enabled: 1 639 | serializedVersion: 3 640 | m_RenderMode: 0 641 | m_Camera: {fileID: 0} 642 | m_PlaneDistance: 100 643 | m_PixelPerfect: 0 644 | m_ReceivesEvents: 1 645 | m_OverrideSorting: 0 646 | m_OverridePixelPerfect: 0 647 | m_SortingBucketNormalizedSize: 0 648 | m_VertexColorAlwaysGammaSpace: 0 649 | m_AdditionalShaderChannelsFlag: 0 650 | m_UpdateRectTransformForStandalone: 0 651 | m_SortingLayerID: 0 652 | m_SortingOrder: 0 653 | m_TargetDisplay: 0 654 | --- !u!224 &782062901 655 | RectTransform: 656 | m_ObjectHideFlags: 0 657 | m_CorrespondingSourceObject: {fileID: 0} 658 | m_PrefabInstance: {fileID: 0} 659 | m_PrefabAsset: {fileID: 0} 660 | m_GameObject: {fileID: 782062897} 661 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 662 | m_LocalPosition: {x: 0, y: 0, z: 0} 663 | m_LocalScale: {x: 0, y: 0, z: 0} 664 | m_ConstrainProportionsScale: 0 665 | m_Children: 666 | - {fileID: 352399580} 667 | - {fileID: 382679906} 668 | - {fileID: 421110705} 669 | m_Father: {fileID: 0} 670 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 671 | m_AnchorMin: {x: 0, y: 0} 672 | m_AnchorMax: {x: 0, y: 0} 673 | m_AnchoredPosition: {x: 0, y: 0} 674 | m_SizeDelta: {x: 0, y: 0} 675 | m_Pivot: {x: 0, y: 0} 676 | --- !u!1 &802345777 677 | GameObject: 678 | m_ObjectHideFlags: 0 679 | m_CorrespondingSourceObject: {fileID: 0} 680 | m_PrefabInstance: {fileID: 0} 681 | m_PrefabAsset: {fileID: 0} 682 | serializedVersion: 6 683 | m_Component: 684 | - component: {fileID: 802345778} 685 | - component: {fileID: 802345781} 686 | - component: {fileID: 802345780} 687 | - component: {fileID: 802345779} 688 | m_Layer: 5 689 | m_Name: Color picker (1) 690 | m_TagString: Untagged 691 | m_Icon: {fileID: 0} 692 | m_NavMeshLayer: 0 693 | m_StaticEditorFlags: 0 694 | m_IsActive: 1 695 | --- !u!224 &802345778 696 | RectTransform: 697 | m_ObjectHideFlags: 0 698 | m_CorrespondingSourceObject: {fileID: 0} 699 | m_PrefabInstance: {fileID: 0} 700 | m_PrefabAsset: {fileID: 0} 701 | m_GameObject: {fileID: 802345777} 702 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 703 | m_LocalPosition: {x: 0, y: 0, z: 0} 704 | m_LocalScale: {x: 1, y: 1, z: 1} 705 | m_ConstrainProportionsScale: 0 706 | m_Children: [] 707 | m_Father: {fileID: 421110705} 708 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 709 | m_AnchorMin: {x: 1, y: 1} 710 | m_AnchorMax: {x: 1, y: 1} 711 | m_AnchoredPosition: {x: 0, y: -120} 712 | m_SizeDelta: {x: 300, y: 480} 713 | m_Pivot: {x: 1, y: 1} 714 | --- !u!114 &802345779 715 | MonoBehaviour: 716 | m_ObjectHideFlags: 0 717 | m_CorrespondingSourceObject: {fileID: 0} 718 | m_PrefabInstance: {fileID: 0} 719 | m_PrefabAsset: {fileID: 0} 720 | m_GameObject: {fileID: 802345777} 721 | m_Enabled: 1 722 | m_EditorHideFlags: 0 723 | m_Script: {fileID: 11500000, guid: af3ff511a986a5c4e8dc1a7939e7b981, type: 3} 724 | m_Name: 725 | m_EditorClassIdentifier: 726 | _hueCircleInnerRadius: 0.325 727 | _hueSelectorInnerRadius: 0.7 728 | _saturationValueSquareSize: 0.155 729 | _colorPickerShader: {fileID: 4800000, guid: 1fe34ac173a0455499fd722bc6744230, type: 3} 730 | --- !u!114 &802345780 731 | MonoBehaviour: 732 | m_ObjectHideFlags: 0 733 | m_CorrespondingSourceObject: {fileID: 0} 734 | m_PrefabInstance: {fileID: 0} 735 | m_PrefabAsset: {fileID: 0} 736 | m_GameObject: {fileID: 802345777} 737 | m_Enabled: 1 738 | m_EditorHideFlags: 0 739 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 740 | m_Name: 741 | m_EditorClassIdentifier: 742 | m_Material: {fileID: 0} 743 | m_Color: {r: 1, g: 1, b: 1, a: 1} 744 | m_RaycastTarget: 1 745 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 746 | m_Maskable: 1 747 | m_OnCullStateChanged: 748 | m_PersistentCalls: 749 | m_Calls: [] 750 | m_Sprite: {fileID: 0} 751 | m_Type: 0 752 | m_PreserveAspect: 0 753 | m_FillCenter: 1 754 | m_FillMethod: 4 755 | m_FillAmount: 1 756 | m_FillClockwise: 1 757 | m_FillOrigin: 0 758 | m_UseSpriteMesh: 0 759 | m_PixelsPerUnitMultiplier: 1 760 | --- !u!222 &802345781 761 | CanvasRenderer: 762 | m_ObjectHideFlags: 0 763 | m_CorrespondingSourceObject: {fileID: 0} 764 | m_PrefabInstance: {fileID: 0} 765 | m_PrefabAsset: {fileID: 0} 766 | m_GameObject: {fileID: 802345777} 767 | m_CullTransparentMesh: 0 768 | --- !u!1 &1489526474 769 | GameObject: 770 | m_ObjectHideFlags: 0 771 | m_CorrespondingSourceObject: {fileID: 0} 772 | m_PrefabInstance: {fileID: 0} 773 | m_PrefabAsset: {fileID: 0} 774 | serializedVersion: 6 775 | m_Component: 776 | - component: {fileID: 1489526475} 777 | - component: {fileID: 1489526478} 778 | - component: {fileID: 1489526477} 779 | - component: {fileID: 1489526476} 780 | m_Layer: 5 781 | m_Name: Color preview image (1) 782 | m_TagString: Untagged 783 | m_Icon: {fileID: 0} 784 | m_NavMeshLayer: 0 785 | m_StaticEditorFlags: 0 786 | m_IsActive: 1 787 | --- !u!224 &1489526475 788 | RectTransform: 789 | m_ObjectHideFlags: 0 790 | m_CorrespondingSourceObject: {fileID: 0} 791 | m_PrefabInstance: {fileID: 0} 792 | m_PrefabAsset: {fileID: 0} 793 | m_GameObject: {fileID: 1489526474} 794 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 795 | m_LocalPosition: {x: 0, y: 0, z: 0} 796 | m_LocalScale: {x: 1, y: 1, z: 1} 797 | m_ConstrainProportionsScale: 0 798 | m_Children: [] 799 | m_Father: {fileID: 421110705} 800 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 801 | m_AnchorMin: {x: 0, y: 1} 802 | m_AnchorMax: {x: 0, y: 1} 803 | m_AnchoredPosition: {x: 0, y: 0} 804 | m_SizeDelta: {x: 200, y: 100} 805 | m_Pivot: {x: 0, y: 1} 806 | --- !u!114 &1489526476 807 | MonoBehaviour: 808 | m_ObjectHideFlags: 0 809 | m_CorrespondingSourceObject: {fileID: 0} 810 | m_PrefabInstance: {fileID: 0} 811 | m_PrefabAsset: {fileID: 0} 812 | m_GameObject: {fileID: 1489526474} 813 | m_Enabled: 1 814 | m_EditorHideFlags: 0 815 | m_Script: {fileID: 11500000, guid: 5c2c42ee235f17049ab3792499eccc59, type: 3} 816 | m_Name: 817 | m_EditorClassIdentifier: 818 | _previewGraphic: {fileID: 1489526477} 819 | _colorPicker: {fileID: 802345779} 820 | --- !u!114 &1489526477 821 | MonoBehaviour: 822 | m_ObjectHideFlags: 0 823 | m_CorrespondingSourceObject: {fileID: 0} 824 | m_PrefabInstance: {fileID: 0} 825 | m_PrefabAsset: {fileID: 0} 826 | m_GameObject: {fileID: 1489526474} 827 | m_Enabled: 1 828 | m_EditorHideFlags: 0 829 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 830 | m_Name: 831 | m_EditorClassIdentifier: 832 | m_Material: {fileID: 0} 833 | m_Color: {r: 1, g: 1, b: 1, a: 1} 834 | m_RaycastTarget: 1 835 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 836 | m_Maskable: 1 837 | m_OnCullStateChanged: 838 | m_PersistentCalls: 839 | m_Calls: [] 840 | m_Sprite: {fileID: 0} 841 | m_Type: 0 842 | m_PreserveAspect: 0 843 | m_FillCenter: 1 844 | m_FillMethod: 4 845 | m_FillAmount: 1 846 | m_FillClockwise: 1 847 | m_FillOrigin: 0 848 | m_UseSpriteMesh: 0 849 | m_PixelsPerUnitMultiplier: 1 850 | --- !u!222 &1489526478 851 | CanvasRenderer: 852 | m_ObjectHideFlags: 0 853 | m_CorrespondingSourceObject: {fileID: 0} 854 | m_PrefabInstance: {fileID: 0} 855 | m_PrefabAsset: {fileID: 0} 856 | m_GameObject: {fileID: 1489526474} 857 | m_CullTransparentMesh: 0 858 | --- !u!850595691 &1835238528 859 | LightingSettings: 860 | m_ObjectHideFlags: 0 861 | m_CorrespondingSourceObject: {fileID: 0} 862 | m_PrefabInstance: {fileID: 0} 863 | m_PrefabAsset: {fileID: 0} 864 | m_Name: Settings.lighting 865 | serializedVersion: 6 866 | m_GIWorkflowMode: 1 867 | m_EnableBakedLightmaps: 0 868 | m_EnableRealtimeLightmaps: 0 869 | m_RealtimeEnvironmentLighting: 1 870 | m_BounceScale: 1 871 | m_AlbedoBoost: 1 872 | m_IndirectOutputScale: 1 873 | m_UsingShadowmask: 1 874 | m_BakeBackend: 0 875 | m_LightmapMaxSize: 1024 876 | m_BakeResolution: 40 877 | m_Padding: 2 878 | m_LightmapCompression: 3 879 | m_AO: 0 880 | m_AOMaxDistance: 1 881 | m_CompAOExponent: 1 882 | m_CompAOExponentDirect: 0 883 | m_ExtractAO: 0 884 | m_MixedBakeMode: 2 885 | m_LightmapsBakeMode: 1 886 | m_FilterMode: 1 887 | m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0} 888 | m_ExportTrainingData: 0 889 | m_TrainingDataDestination: TrainingData 890 | m_RealtimeResolution: 2 891 | m_ForceWhiteAlbedo: 0 892 | m_ForceUpdates: 0 893 | m_FinalGather: 0 894 | m_FinalGatherRayCount: 256 895 | m_FinalGatherFiltering: 1 896 | m_PVRCulling: 1 897 | m_PVRSampling: 1 898 | m_PVRDirectSampleCount: 32 899 | m_PVRSampleCount: 512 900 | m_PVREnvironmentSampleCount: 512 901 | m_PVREnvironmentReferencePointCount: 2048 902 | m_LightProbeSampleCountMultiplier: 4 903 | m_PVRBounces: 2 904 | m_PVRMinBounces: 2 905 | m_PVREnvironmentImportanceSampling: 0 906 | m_PVRFilteringMode: 2 907 | m_PVRDenoiserTypeDirect: 0 908 | m_PVRDenoiserTypeIndirect: 0 909 | m_PVRDenoiserTypeAO: 0 910 | m_PVRFilterTypeDirect: 0 911 | m_PVRFilterTypeIndirect: 0 912 | m_PVRFilterTypeAO: 0 913 | m_PVRFilteringGaussRadiusDirect: 1 914 | m_PVRFilteringGaussRadiusIndirect: 5 915 | m_PVRFilteringGaussRadiusAO: 2 916 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 917 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 918 | m_PVRFilteringAtrousPositionSigmaAO: 1 919 | m_PVRTiledBaking: 0 920 | m_NumRaysToShootPerTexel: -1 921 | m_RespectSceneVisibilityWhenBakingGI: 0 922 | --- !u!1660057539 &9223372036854775807 923 | SceneRoots: 924 | m_ObjectHideFlags: 0 925 | m_Roots: 926 | - {fileID: 519420032} 927 | - {fileID: 782062901} 928 | - {fileID: 345254174} 929 | -------------------------------------------------------------------------------- /Assets/Color picker/Color picker sample scene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f996ca77004b14b4696cfe52a839c2ab 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Color picker/ColorPicker shader.shader: -------------------------------------------------------------------------------- 1 | Shader "UI/ColorPicker" 2 | { 3 | Properties 4 | { 5 | // Variables from default UI shader 6 | 7 | [PerRendererData] _MainTex ("Sprite Texture", 2D) = "white" {} 8 | _Color ("Tint", Color) = (1,1,1,1) 9 | 10 | _StencilComp ("Stencil Comparison", Float) = 8 11 | _Stencil ("Stencil ID", Float) = 0 12 | _StencilOp ("Stencil Operation", Float) = 0 13 | _StencilWriteMask ("Stencil Write Mask", Float) = 255 14 | _StencilReadMask ("Stencil Read Mask", Float) = 255 15 | 16 | _ColorMask ("Color Mask", Float) = 15 17 | 18 | [Toggle(UNITY_UI_ALPHACLIP)] _UseUIAlphaClip ("Use Alpha Clip", Float) = 0 19 | 20 | // Color picker 21 | 22 | _HueCircleInner("Hue circle inner radius", Range(0, .5)) = .4 23 | _HueSelectorInner("Hue selector inner radius", Range(0, 1)) = .8 24 | _SVSquareSize("SV Square size", Range(0, .5)) = .25 25 | } 26 | 27 | SubShader 28 | { 29 | Tags 30 | { 31 | "Queue"="Transparent" 32 | "IgnoreProjector"="True" 33 | "RenderType"="Transparent" 34 | "PreviewType"="Plane" 35 | "CanUseSpriteAtlas"="True" 36 | } 37 | 38 | Stencil 39 | { 40 | Ref [_Stencil] 41 | Comp [_StencilComp] 42 | Pass [_StencilOp] 43 | ReadMask [_StencilReadMask] 44 | WriteMask [_StencilWriteMask] 45 | } 46 | 47 | Cull Off 48 | Lighting Off 49 | ZWrite Off 50 | ZTest [unity_GUIZTestMode] 51 | Blend SrcAlpha OneMinusSrcAlpha 52 | ColorMask [_ColorMask] 53 | 54 | Pass 55 | { 56 | Name "Default" 57 | CGPROGRAM 58 | #pragma vertex vert 59 | #pragma fragment frag 60 | #pragma target 2.0 61 | 62 | #include "UnityCG.cginc" 63 | #include "UnityUI.cginc" 64 | 65 | #pragma multi_compile __ UNITY_UI_CLIP_RECT 66 | #pragma multi_compile __ UNITY_UI_ALPHACLIP 67 | 68 | static const float recip2Pi = 0.159154943; 69 | static const float twoPi = 6.2831853; 70 | 71 | float3 hsv2rgb(float3 c) 72 | { 73 | float4 K = float4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); 74 | float3 p = abs(frac(c.xxx + K.xyz) * 6.0 - K.www); 75 | return c.z * lerp(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); 76 | } 77 | 78 | struct appdata_t 79 | { 80 | float4 vertex : POSITION; 81 | float4 color : COLOR; 82 | float2 texcoord : TEXCOORD0; 83 | UNITY_VERTEX_INPUT_INSTANCE_ID 84 | }; 85 | 86 | struct v2f 87 | { 88 | float4 vertex : SV_POSITION; 89 | fixed4 color : COLOR; 90 | float2 texcoord : TEXCOORD0; 91 | float4 worldPosition : TEXCOORD1; 92 | UNITY_VERTEX_OUTPUT_STEREO 93 | }; 94 | 95 | sampler2D _MainTex; 96 | fixed4 _Color; 97 | fixed4 _TextureSampleAdd; 98 | float4 _ClipRect; 99 | float4 _MainTex_ST; 100 | 101 | float _HueCircleInner, _HueSelectorInner; 102 | 103 | float _SVSquareSize; 104 | 105 | float3 _HSV; 106 | 107 | float _AspectRatio; 108 | 109 | v2f vert(appdata_t v) 110 | { 111 | v2f OUT; 112 | UNITY_SETUP_INSTANCE_ID(v); 113 | UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(OUT); 114 | OUT.worldPosition = v.vertex; 115 | OUT.vertex = UnityObjectToClipPos(OUT.worldPosition); 116 | 117 | OUT.texcoord = v.texcoord; 118 | 119 | OUT.color = v.color * _Color; 120 | return OUT; 121 | } 122 | 123 | half4 hueRing(float2 uv) 124 | { 125 | float2 coords = uv - .5; 126 | 127 | float r = length(coords); 128 | 129 | float fw = fwidth(r); 130 | 131 | float a = smoothstep(.5, .5 - fw, r) * smoothstep(_HueCircleInner - fw, _HueCircleInner, r); 132 | 133 | float angle = atan2(coords.y, coords.x) * recip2Pi; 134 | 135 | return half4(hsv2rgb(float3(angle, 1, 1)), a); 136 | } 137 | 138 | half4 whiteRing(float2 uv, float2 pos, float inner, float outer) 139 | { 140 | float2 coords = uv - pos; 141 | 142 | float r = length(coords); 143 | 144 | float fw = fwidth(r); 145 | 146 | float a = smoothstep(outer, outer - fw, r) * smoothstep(inner - fw, inner, r); 147 | 148 | return half4(1, 1, 1, a); 149 | } 150 | 151 | half4 svSquare(float2 uv) 152 | { 153 | float2 sv = (uv - .5) / (_SVSquareSize * 2) + .5; 154 | 155 | float dx = abs(ddx(sv.x)); 156 | float dy = abs(ddy(sv.y)); 157 | 158 | float a = 159 | smoothstep(0, dx, sv.x) * smoothstep(1, 1 - dx, sv.x) * 160 | smoothstep(0, dy, sv.y) * smoothstep(1, 1 - dy, sv.y); 161 | 162 | return float4(hsv2rgb(float3(_HSV.x, sv)), a); 163 | } 164 | 165 | fixed4 mix(fixed4 bot, fixed4 top) 166 | { 167 | return fixed4(lerp(bot.rgb, top.rgb, top.a), max(bot.a, top.a)); 168 | } 169 | 170 | fixed4 frag(v2f IN) : SV_Target 171 | { 172 | // Aspect ratio correction 173 | 174 | float2 uv = _AspectRatio > 1 ? 175 | float2(.5 + (IN.texcoord.x - .5) * _AspectRatio, IN.texcoord.y) : 176 | float2(IN.texcoord.x, .5 + (IN.texcoord.y - .5) / _AspectRatio); 177 | 178 | // Hue ring 179 | 180 | half4 color = hueRing(uv); 181 | 182 | // Hue ring selector 183 | 184 | float hSelectorR = (.5 - _HueCircleInner) * .5; 185 | 186 | half4 hSelector = whiteRing( 187 | uv, 188 | float2(cos(_HSV.x * twoPi), sin(_HSV.x * twoPi)) * (.5 - hSelectorR) + .5, 189 | hSelectorR * _HueSelectorInner, hSelectorR); 190 | 191 | color = mix(color, hSelector); 192 | 193 | // Saturation value Square 194 | 195 | half4 sv = svSquare(uv); 196 | 197 | color = sv.a > 0 ? sv : color; 198 | 199 | // Saturation value selector 200 | 201 | half4 svSelector = whiteRing( 202 | uv, 203 | .5 + 2 * _SVSquareSize * (_HSV.yz - .5), 204 | hSelectorR * _HueSelectorInner, hSelectorR); 205 | 206 | color = mix(color, svSelector); 207 | 208 | color.a *= IN.color.a; 209 | 210 | // Unity stuff 211 | 212 | #ifdef UNITY_UI_CLIP_RECT 213 | color.a *= UnityGet2DClipping(IN.worldPosition.xy, _ClipRect); 214 | #endif 215 | 216 | #ifdef UNITY_UI_ALPHACLIP 217 | clip (color.a - 0.001); 218 | #endif 219 | 220 | #ifdef UNITY_COLORSPACE_GAMMA 221 | return color; 222 | #endif 223 | 224 | return fixed4(GammaToLinearSpace(color.rgb), color.a); 225 | } 226 | ENDCG 227 | } 228 | } 229 | } 230 | -------------------------------------------------------------------------------- /Assets/Color picker/ColorPicker shader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fe34ac173a0455499fd722bc6744230 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Color picker/ColorPicker.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using UnityEngine.EventSystems; 4 | using UnityEngine.Serialization; 5 | using UnityEngine.UI; 6 | 7 | using static UnityEngine.Mathf; 8 | 9 | [ExecuteInEditMode, RequireComponent(typeof(Image))] 10 | public class ColorPicker : UIBehaviour, IPointerDownHandler, IDragHandler, IPointerUpHandler, IMaterialModifier 11 | { 12 | private const float Recip2Pi = 0.5f / PI; 13 | private const string ColorPickerShaderName = "UI/ColorPicker"; 14 | 15 | private static readonly int _HSV = Shader.PropertyToID(nameof(_HSV)); 16 | private static readonly int _AspectRatio = Shader.PropertyToID(nameof(_AspectRatio)); 17 | private static readonly int _HueCircleInner = Shader.PropertyToID(nameof(_HueCircleInner)); 18 | private static readonly int _HueSelectorInner = Shader.PropertyToID(nameof(_HueSelectorInner)); 19 | private static readonly int _SVSquareSize = Shader.PropertyToID(nameof(_SVSquareSize)); 20 | 21 | [SerializeField, Range(0, 0.5f)] private float _hueCircleInnerRadius = 0.4f; 22 | [SerializeField, Range(0, 1)] private float _hueSelectorInnerRadius = 0.8f; 23 | [SerializeField, Range(0, 0.5f)] private float _saturationValueSquareSize = 0.25f; 24 | 25 | [SerializeField, FormerlySerializedAs("colorPickerShader")] private Shader _colorPickerShader; 26 | private Material _generatedMaterial; 27 | 28 | private enum PointerDownLocation { HueCircle, SVSquare, Outside } 29 | private PointerDownLocation _pointerDownLocation = PointerDownLocation.Outside; 30 | 31 | private RectTransform _rectTransform => (RectTransform)transform; 32 | 33 | private float _h, _s, _v; 34 | 35 | public Color color 36 | { 37 | get => Color.HSVToRGB(_h, _s, _v); 38 | set 39 | { 40 | Color.RGBToHSV(value, out _h, out _s, out _v); 41 | ApplyColor(); 42 | } 43 | } 44 | 45 | public event Action onColorChanged; 46 | 47 | #if UNITY_EDITOR 48 | protected override void Reset() 49 | { 50 | base.Reset(); 51 | 52 | _colorPickerShader = Shader.Find(ColorPickerShaderName); 53 | } 54 | #endif 55 | 56 | protected override void OnRectTransformDimensionsChange() 57 | { 58 | base.OnRectTransformDimensionsChange(); 59 | UpdateAspectRatio(); 60 | } 61 | 62 | private void UpdateAspectRatio() 63 | { 64 | if (_generatedMaterial != null) 65 | { 66 | var rect = _rectTransform.rect; 67 | 68 | _generatedMaterial.SetFloat(_AspectRatio, rect.width / rect.height); 69 | } 70 | } 71 | 72 | public Material GetModifiedMaterial(Material baseMaterial) 73 | { 74 | if (_generatedMaterial == null) 75 | { 76 | _generatedMaterial = new Material(_colorPickerShader); 77 | _generatedMaterial.hideFlags = HideFlags.HideAndDontSave; 78 | } 79 | 80 | UpdateAspectRatio(); 81 | ApplyColor(); 82 | ApplySizesOfElements(); 83 | 84 | return _generatedMaterial; 85 | } 86 | 87 | public void ApplySizesOfElements() 88 | { 89 | if (_generatedMaterial != null) 90 | { 91 | _generatedMaterial.SetFloat(_HueCircleInner, _hueCircleInnerRadius); 92 | _generatedMaterial.SetFloat(_HueSelectorInner, _hueSelectorInnerRadius); 93 | _generatedMaterial.SetFloat(_SVSquareSize, _saturationValueSquareSize); 94 | } 95 | } 96 | 97 | public void OnDrag(PointerEventData eventData) 98 | { 99 | var relativePosition = GetRelativePosition(eventData); 100 | 101 | if (_pointerDownLocation == PointerDownLocation.HueCircle) 102 | { 103 | _h = (Atan2(relativePosition.y, relativePosition.x) * Recip2Pi + 1) % 1; 104 | ApplyColor(); 105 | } 106 | 107 | if (_pointerDownLocation == PointerDownLocation.SVSquare) 108 | { 109 | var size = _generatedMaterial.GetFloat(_SVSquareSize); 110 | 111 | _s = InverseLerp(-size, size, relativePosition.x); 112 | _v = InverseLerp(-size, size, relativePosition.y); 113 | ApplyColor(); 114 | } 115 | } 116 | 117 | public void OnPointerDown(PointerEventData eventData) 118 | { 119 | var relativePosition = GetRelativePosition(eventData); 120 | 121 | float r = relativePosition.magnitude; 122 | 123 | if (r < 0.5f && r > _generatedMaterial.GetFloat(_HueCircleInner)) 124 | { 125 | _pointerDownLocation = PointerDownLocation.HueCircle; 126 | _h = (Atan2(relativePosition.y, relativePosition.x) * Recip2Pi + 1) % 1; 127 | ApplyColor(); 128 | } 129 | else 130 | { 131 | var size = _generatedMaterial.GetFloat(_SVSquareSize); 132 | 133 | // s -> x, v -> y 134 | if (relativePosition.x >= -size && relativePosition.x <= size && relativePosition.y >= -size && relativePosition.y <= size) 135 | { 136 | _pointerDownLocation = PointerDownLocation.SVSquare; 137 | _s = InverseLerp(-size, size, relativePosition.x); 138 | _v = InverseLerp(-size, size, relativePosition.y); 139 | ApplyColor(); 140 | } 141 | } 142 | } 143 | 144 | public void OnPointerUp(PointerEventData eventData) 145 | { 146 | _pointerDownLocation = PointerDownLocation.Outside; 147 | } 148 | 149 | private void ApplyColor() 150 | { 151 | _generatedMaterial.SetVector(_HSV, new Vector3(_h, _s, _v)); 152 | 153 | onColorChanged?.Invoke(color); 154 | } 155 | 156 | protected override void OnDestroy() 157 | { 158 | base.OnDestroy(); 159 | 160 | if (_generatedMaterial != null) 161 | { 162 | DestroyImmediate(_generatedMaterial); 163 | } 164 | } 165 | 166 | /// 167 | /// Returns position in range -0.5..0.5 when it's inside color picker square area 168 | /// 169 | public Vector2 GetRelativePosition(PointerEventData eventData) 170 | { 171 | var rect = GetSquaredRect(); 172 | 173 | Vector2 rtPos; 174 | 175 | RectTransformUtility.ScreenPointToLocalPointInRectangle(_rectTransform, eventData.position, eventData.pressEventCamera, out rtPos); 176 | 177 | return new Vector2(InverseLerpUnclamped(rect.xMin, rect.xMax, rtPos.x), InverseLerpUnclamped(rect.yMin, rect.yMax, rtPos.y)) - Vector2.one * 0.5f; 178 | } 179 | 180 | public Rect GetSquaredRect() 181 | { 182 | var rect = _rectTransform.rect; 183 | var smallestDimension = Min(rect.width, rect.height); 184 | return new Rect(rect.center - Vector2.one * smallestDimension * 0.5f, Vector2.one * smallestDimension); 185 | } 186 | 187 | public float InverseLerpUnclamped(float min, float max, float value) 188 | { 189 | return (value - min) / (max - min); 190 | } 191 | } -------------------------------------------------------------------------------- /Assets/Color picker/ColorPicker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af3ff511a986a5c4e8dc1a7939e7b981 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Color picker/ColorPreview.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.Serialization; 3 | using UnityEngine.UI; 4 | 5 | public class ColorPreview : MonoBehaviour 6 | { 7 | [SerializeField, FormerlySerializedAs("previewGraphic")] private Graphic _previewGraphic; 8 | [SerializeField, FormerlySerializedAs("colorPicker")] private ColorPicker _colorPicker; 9 | 10 | private void Start() 11 | { 12 | _colorPicker.onColorChanged += OnColorChanged; 13 | OnColorChanged(_colorPicker.color); 14 | } 15 | 16 | public void OnColorChanged(Color c) 17 | { 18 | _previewGraphic.color = c; 19 | } 20 | 21 | private void OnDestroy() 22 | { 23 | if (_colorPicker != null) 24 | _colorPicker.onColorChanged -= OnColorChanged; 25 | } 26 | } -------------------------------------------------------------------------------- /Assets/Color picker/ColorPreview.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c2c42ee235f17049ab3792499eccc59 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Color picker/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b79bb09944b6b24a88731ec5fbbf257 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Color picker/Editor/ColorPickerEditor.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEditor; 3 | using System.Linq; 4 | 5 | [CustomEditor(typeof(ColorPicker))] 6 | [CanEditMultipleObjects] 7 | public class ColorPickerEditor : Editor 8 | { 9 | private SerializedProperty _colorPickerShader; 10 | 11 | private SerializedProperty _hueCircleInnerRadius; 12 | private SerializedProperty _hueSelectorInnerRadius; 13 | private SerializedProperty _saturationValueSquareSize; 14 | 15 | void OnEnable() 16 | { 17 | _colorPickerShader = serializedObject.FindProperty("_colorPickerShader"); 18 | 19 | _hueCircleInnerRadius = serializedObject.FindProperty("_hueCircleInnerRadius"); 20 | _hueSelectorInnerRadius = serializedObject.FindProperty("_hueSelectorInnerRadius"); 21 | _saturationValueSquareSize = serializedObject.FindProperty("_saturationValueSquareSize"); 22 | } 23 | 24 | public override void OnInspectorGUI() 25 | { 26 | serializedObject.Update(); 27 | 28 | GUI.enabled = false; 29 | EditorGUILayout.PropertyField(_colorPickerShader); 30 | GUI.enabled = true; 31 | 32 | EditorGUILayout.PropertyField(_hueCircleInnerRadius); 33 | EditorGUILayout.PropertyField(_hueSelectorInnerRadius); 34 | EditorGUILayout.PropertyField(_saturationValueSquareSize); 35 | 36 | foreach (var colorPicker in targets.Select(t => t as ColorPicker)) 37 | { 38 | colorPicker?.ApplySizesOfElements(); 39 | } 40 | 41 | serializedObject.ApplyModifiedProperties(); 42 | } 43 | 44 | [MenuItem("GameObject/UI/Color Picker", false, 10)] 45 | private static void CreateColorPicker(MenuCommand menuCommand) 46 | { 47 | GameObject go = new GameObject("Color Picker"); 48 | 49 | go.AddComponent(); 50 | 51 | GameObjectUtility.SetParentAndAlign(go, menuCommand.context as GameObject); 52 | 53 | Undo.RegisterCreatedObjectUndo(go, "Create " + go.name); 54 | Selection.activeObject = go; 55 | } 56 | } -------------------------------------------------------------------------------- /Assets/Color picker/Editor/ColorPickerEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a735004fcf36884d9ce0fbe6d499d4e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ef3a99e646cd82498932455e11f8db7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/MediationAdapterDependencies.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | https://unity3ddist.jfrog.io/artifactory/unity-mediation-mvn-prod-local/ 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /Assets/Editor/MediationAdapterDependencies.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfc742b56ea3e1545aa6151b41f45941 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MobileDependencyResolver.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 333d24e71d12446ba5c77815e64b0ca8 3 | folderAsset: yes 4 | timeCreated: 1448926447 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MobileDependencyResolver/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e105e00cdce8456482d26b1fcd1ca47d 3 | folderAsset: yes 4 | timeCreated: 1448926516 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MobileDependencyResolver/Editor/Google.IOSResolver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaletin/UnityColorPicker/cd0e292919ccb380523487ec8b0baff4e808b3ab/Assets/MobileDependencyResolver/Editor/Google.IOSResolver.dll -------------------------------------------------------------------------------- /Assets/MobileDependencyResolver/Editor/Google.IOSResolver.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1e8415cfe85469f9aa0aea941166031 3 | labels: 4 | - gvh 5 | - gvh_targets-editor 6 | - gvh_version-1.2.135.0 7 | PluginImporter: 8 | externalObjects: {} 9 | serializedVersion: 2 10 | iconMap: {} 11 | executionOrder: {} 12 | defineConstraints: [] 13 | isPreloaded: 0 14 | isOverridable: 0 15 | isExplicitlyReferenced: 0 16 | validateReferences: 0 17 | platformData: 18 | - first: 19 | : Any 20 | second: 21 | enabled: 0 22 | settings: 23 | Exclude Android: 1 24 | Exclude Editor: 0 25 | Exclude Linux64: 1 26 | Exclude OSXUniversal: 1 27 | Exclude Win: 1 28 | Exclude Win64: 1 29 | Exclude iOS: 1 30 | - first: 31 | Android: Android 32 | second: 33 | enabled: 0 34 | settings: 35 | CPU: ARMv7 36 | - first: 37 | Any: 38 | second: 39 | enabled: 0 40 | settings: {} 41 | - first: 42 | Editor: Editor 43 | second: 44 | enabled: 1 45 | settings: 46 | CPU: AnyCPU 47 | DefaultValueInitialized: true 48 | OS: OSX 49 | - first: 50 | Standalone: Linux64 51 | second: 52 | enabled: 0 53 | settings: 54 | CPU: x86_64 55 | - first: 56 | Standalone: OSXUniversal 57 | second: 58 | enabled: 0 59 | settings: 60 | CPU: None 61 | - first: 62 | Standalone: Win 63 | second: 64 | enabled: 0 65 | settings: 66 | CPU: x86 67 | - first: 68 | Standalone: Win64 69 | second: 70 | enabled: 0 71 | settings: 72 | CPU: x86_64 73 | - first: 74 | Windows Store Apps: WindowsStoreApps 75 | second: 76 | enabled: 0 77 | settings: 78 | CPU: AnyCPU 79 | - first: 80 | iPhone: iOS 81 | second: 82 | enabled: 0 83 | settings: 84 | AddToEmbeddedBinaries: false 85 | CPU: AnyCPU 86 | CompileFlags: 87 | FrameworkDependencies: 88 | userData: 89 | assetBundleName: 90 | assetBundleVariant: 91 | -------------------------------------------------------------------------------- /Assets/MobileDependencyResolver/Editor/Google.JarResolver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaletin/UnityColorPicker/cd0e292919ccb380523487ec8b0baff4e808b3ab/Assets/MobileDependencyResolver/Editor/Google.JarResolver.dll -------------------------------------------------------------------------------- /Assets/MobileDependencyResolver/Editor/Google.JarResolver.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97738b29c18143b0a469277b09d35889 3 | labels: 4 | - gvh 5 | - gvh_targets-editor 6 | - gvh_version-1.2.135.0 7 | PluginImporter: 8 | externalObjects: {} 9 | serializedVersion: 2 10 | iconMap: {} 11 | executionOrder: {} 12 | defineConstraints: [] 13 | isPreloaded: 0 14 | isOverridable: 0 15 | isExplicitlyReferenced: 0 16 | validateReferences: 1 17 | platformData: 18 | - first: 19 | Any: 20 | second: 21 | enabled: 0 22 | settings: {} 23 | - first: 24 | Editor: Editor 25 | second: 26 | enabled: 1 27 | settings: 28 | DefaultValueInitialized: true 29 | - first: 30 | Windows Store Apps: WindowsStoreApps 31 | second: 32 | enabled: 0 33 | settings: 34 | CPU: AnyCPU 35 | userData: 36 | assetBundleName: 37 | assetBundleVariant: 38 | -------------------------------------------------------------------------------- /Assets/MobileDependencyResolver/Editor/Google.VersionHandler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaletin/UnityColorPicker/cd0e292919ccb380523487ec8b0baff4e808b3ab/Assets/MobileDependencyResolver/Editor/Google.VersionHandler.dll -------------------------------------------------------------------------------- /Assets/MobileDependencyResolver/Editor/Google.VersionHandler.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb6999c8a5ce4ba99688ec579babe5b7 3 | labels: 4 | - gvh 5 | - gvh_targets-editor 6 | - gvh_version-1.2.135.0 7 | PluginImporter: 8 | externalObjects: {} 9 | serializedVersion: 2 10 | iconMap: {} 11 | executionOrder: {} 12 | defineConstraints: [] 13 | isPreloaded: 0 14 | isOverridable: 0 15 | isExplicitlyReferenced: 0 16 | validateReferences: 1 17 | platformData: 18 | - first: 19 | Any: 20 | second: 21 | enabled: 0 22 | settings: {} 23 | - first: 24 | Editor: Editor 25 | second: 26 | enabled: 1 27 | settings: 28 | DefaultValueInitialized: true 29 | - first: 30 | Windows Store Apps: WindowsStoreApps 31 | second: 32 | enabled: 0 33 | settings: 34 | CPU: AnyCPU 35 | userData: 36 | assetBundleName: 37 | assetBundleVariant: 38 | -------------------------------------------------------------------------------- /Assets/MobileDependencyResolver/Editor/Google.VersionHandlerImpl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaletin/UnityColorPicker/cd0e292919ccb380523487ec8b0baff4e808b3ab/Assets/MobileDependencyResolver/Editor/Google.VersionHandlerImpl.dll -------------------------------------------------------------------------------- /Assets/MobileDependencyResolver/Editor/Google.VersionHandlerImpl.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 369cd88e7aa04bd98e0f6c229f7c1510 3 | labels: 4 | - gvh 5 | - gvh_targets-editor 6 | - gvh_version-1.2.135.0 7 | PluginImporter: 8 | externalObjects: {} 9 | serializedVersion: 2 10 | iconMap: {} 11 | executionOrder: {} 12 | defineConstraints: [] 13 | isPreloaded: 0 14 | isOverridable: 0 15 | isExplicitlyReferenced: 0 16 | validateReferences: 1 17 | platformData: 18 | - first: 19 | Any: 20 | second: 21 | enabled: 0 22 | settings: {} 23 | - first: 24 | Editor: Editor 25 | second: 26 | enabled: 1 27 | settings: 28 | DefaultValueInitialized: true 29 | - first: 30 | Windows Store Apps: WindowsStoreApps 31 | second: 32 | enabled: 0 33 | settings: 34 | CPU: AnyCPU 35 | userData: 36 | assetBundleName: 37 | assetBundleVariant: 38 | -------------------------------------------------------------------------------- /Assets/MobileDependencyResolver/Editor/mobile-dependency-resolver.txt: -------------------------------------------------------------------------------- 1 | Assets/PlayServicesResolver/Editor/Google.IOSResolver.dll 2 | Assets/PlayServicesResolver/Editor/Google.JarResolver.dll 3 | Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll 4 | Assets/PlayServicesResolver/Editor/Google.VersionHandlerImpl.dll 5 | -------------------------------------------------------------------------------- /Assets/MobileDependencyResolver/Editor/mobile-dependency-resolver.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85ae9201cbc641ffa2fa8aab6c5e9093 3 | labels: 4 | - gvh 5 | - gvh_manifest 6 | - gvh_version-1.2.135.0 7 | TextScriptImporter: 8 | externalObjects: {} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9e7e1d5c1619ac4aa280181d6babf44 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/BillingMode.json: -------------------------------------------------------------------------------- 1 | {"androidStore":"GooglePlay"} -------------------------------------------------------------------------------- /Assets/Resources/BillingMode.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b7741ce2f761164cbfa82a53862e748 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Max Maletin 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 | -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.2d.sprite": "1.0.0", 4 | "com.unity.2d.tilemap": "1.0.0", 5 | "com.unity.ai.navigation": "1.1.5", 6 | "com.unity.analytics": "3.8.1", 7 | "com.unity.collab-proxy": "2.2.0", 8 | "com.unity.ide.rider": "3.0.27", 9 | "com.unity.ide.visualstudio": "2.0.22", 10 | "com.unity.ide.vscode": "1.2.5", 11 | "com.unity.purchasing": "4.9.3", 12 | "com.unity.services.mediation": "1.0.5", 13 | "com.unity.test-framework": "1.1.33", 14 | "com.unity.textmeshpro": "3.0.6", 15 | "com.unity.timeline": "1.7.6", 16 | "com.unity.ugui": "1.0.0", 17 | "com.unity.xr.legacyinputhelpers": "2.1.10", 18 | "com.unity.modules.ai": "1.0.0", 19 | "com.unity.modules.androidjni": "1.0.0", 20 | "com.unity.modules.animation": "1.0.0", 21 | "com.unity.modules.assetbundle": "1.0.0", 22 | "com.unity.modules.audio": "1.0.0", 23 | "com.unity.modules.cloth": "1.0.0", 24 | "com.unity.modules.director": "1.0.0", 25 | "com.unity.modules.imageconversion": "1.0.0", 26 | "com.unity.modules.imgui": "1.0.0", 27 | "com.unity.modules.jsonserialize": "1.0.0", 28 | "com.unity.modules.particlesystem": "1.0.0", 29 | "com.unity.modules.physics": "1.0.0", 30 | "com.unity.modules.physics2d": "1.0.0", 31 | "com.unity.modules.screencapture": "1.0.0", 32 | "com.unity.modules.terrain": "1.0.0", 33 | "com.unity.modules.terrainphysics": "1.0.0", 34 | "com.unity.modules.tilemap": "1.0.0", 35 | "com.unity.modules.ui": "1.0.0", 36 | "com.unity.modules.uielements": "1.0.0", 37 | "com.unity.modules.umbra": "1.0.0", 38 | "com.unity.modules.unityanalytics": "1.0.0", 39 | "com.unity.modules.unitywebrequest": "1.0.0", 40 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 41 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 42 | "com.unity.modules.unitywebrequesttexture": "1.0.0", 43 | "com.unity.modules.unitywebrequestwww": "1.0.0", 44 | "com.unity.modules.vehicles": "1.0.0", 45 | "com.unity.modules.video": "1.0.0", 46 | "com.unity.modules.vr": "1.0.0", 47 | "com.unity.modules.wind": "1.0.0", 48 | "com.unity.modules.xr": "1.0.0" 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /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.2d.tilemap": { 10 | "version": "1.0.0", 11 | "depth": 0, 12 | "source": "builtin", 13 | "dependencies": { 14 | "com.unity.modules.tilemap": "1.0.0", 15 | "com.unity.modules.uielements": "1.0.0" 16 | } 17 | }, 18 | "com.unity.ai.navigation": { 19 | "version": "1.1.5", 20 | "depth": 0, 21 | "source": "registry", 22 | "dependencies": { 23 | "com.unity.modules.ai": "1.0.0" 24 | }, 25 | "url": "https://packages.unity.com" 26 | }, 27 | "com.unity.analytics": { 28 | "version": "3.8.1", 29 | "depth": 0, 30 | "source": "registry", 31 | "dependencies": { 32 | "com.unity.ugui": "1.0.0", 33 | "com.unity.services.analytics": "1.0.4" 34 | }, 35 | "url": "https://packages.unity.com" 36 | }, 37 | "com.unity.collab-proxy": { 38 | "version": "2.2.0", 39 | "depth": 0, 40 | "source": "registry", 41 | "dependencies": {}, 42 | "url": "https://packages.unity.com" 43 | }, 44 | "com.unity.ext.nunit": { 45 | "version": "1.0.6", 46 | "depth": 1, 47 | "source": "registry", 48 | "dependencies": {}, 49 | "url": "https://packages.unity.com" 50 | }, 51 | "com.unity.ide.rider": { 52 | "version": "3.0.27", 53 | "depth": 0, 54 | "source": "registry", 55 | "dependencies": { 56 | "com.unity.ext.nunit": "1.0.6" 57 | }, 58 | "url": "https://packages.unity.com" 59 | }, 60 | "com.unity.ide.visualstudio": { 61 | "version": "2.0.22", 62 | "depth": 0, 63 | "source": "registry", 64 | "dependencies": { 65 | "com.unity.test-framework": "1.1.9" 66 | }, 67 | "url": "https://packages.unity.com" 68 | }, 69 | "com.unity.ide.vscode": { 70 | "version": "1.2.5", 71 | "depth": 0, 72 | "source": "registry", 73 | "dependencies": {}, 74 | "url": "https://packages.unity.com" 75 | }, 76 | "com.unity.nuget.newtonsoft-json": { 77 | "version": "3.2.1", 78 | "depth": 2, 79 | "source": "registry", 80 | "dependencies": {}, 81 | "url": "https://packages.unity.com" 82 | }, 83 | "com.unity.purchasing": { 84 | "version": "4.9.3", 85 | "depth": 0, 86 | "source": "registry", 87 | "dependencies": { 88 | "com.unity.ugui": "1.0.0", 89 | "com.unity.services.core": "1.8.1", 90 | "com.unity.modules.androidjni": "1.0.0", 91 | "com.unity.modules.jsonserialize": "1.0.0", 92 | "com.unity.modules.unityanalytics": "1.0.0", 93 | "com.unity.modules.unitywebrequest": "1.0.0" 94 | }, 95 | "url": "https://packages.unity.com" 96 | }, 97 | "com.unity.services.analytics": { 98 | "version": "5.0.0", 99 | "depth": 1, 100 | "source": "registry", 101 | "dependencies": { 102 | "com.unity.ugui": "1.0.0", 103 | "com.unity.services.core": "1.10.1", 104 | "com.unity.modules.jsonserialize": "1.0.0" 105 | }, 106 | "url": "https://packages.unity.com" 107 | }, 108 | "com.unity.services.core": { 109 | "version": "1.12.2", 110 | "depth": 1, 111 | "source": "registry", 112 | "dependencies": { 113 | "com.unity.modules.androidjni": "1.0.0", 114 | "com.unity.nuget.newtonsoft-json": "3.2.1", 115 | "com.unity.modules.unitywebrequest": "1.0.0" 116 | }, 117 | "url": "https://packages.unity.com" 118 | }, 119 | "com.unity.services.mediation": { 120 | "version": "1.0.5", 121 | "depth": 0, 122 | "source": "registry", 123 | "dependencies": { 124 | "com.unity.ugui": "1.0.0", 125 | "com.unity.modules.ui": "1.0.0", 126 | "com.unity.services.core": "1.4.0", 127 | "com.unity.settings-manager": "1.0.3" 128 | }, 129 | "url": "https://packages.unity.com" 130 | }, 131 | "com.unity.settings-manager": { 132 | "version": "2.0.1", 133 | "depth": 1, 134 | "source": "registry", 135 | "dependencies": {}, 136 | "url": "https://packages.unity.com" 137 | }, 138 | "com.unity.test-framework": { 139 | "version": "1.1.33", 140 | "depth": 0, 141 | "source": "registry", 142 | "dependencies": { 143 | "com.unity.ext.nunit": "1.0.6", 144 | "com.unity.modules.imgui": "1.0.0", 145 | "com.unity.modules.jsonserialize": "1.0.0" 146 | }, 147 | "url": "https://packages.unity.com" 148 | }, 149 | "com.unity.textmeshpro": { 150 | "version": "3.0.6", 151 | "depth": 0, 152 | "source": "registry", 153 | "dependencies": { 154 | "com.unity.ugui": "1.0.0" 155 | }, 156 | "url": "https://packages.unity.com" 157 | }, 158 | "com.unity.timeline": { 159 | "version": "1.7.6", 160 | "depth": 0, 161 | "source": "registry", 162 | "dependencies": { 163 | "com.unity.modules.audio": "1.0.0", 164 | "com.unity.modules.director": "1.0.0", 165 | "com.unity.modules.animation": "1.0.0", 166 | "com.unity.modules.particlesystem": "1.0.0" 167 | }, 168 | "url": "https://packages.unity.com" 169 | }, 170 | "com.unity.ugui": { 171 | "version": "1.0.0", 172 | "depth": 0, 173 | "source": "builtin", 174 | "dependencies": { 175 | "com.unity.modules.ui": "1.0.0", 176 | "com.unity.modules.imgui": "1.0.0" 177 | } 178 | }, 179 | "com.unity.xr.legacyinputhelpers": { 180 | "version": "2.1.10", 181 | "depth": 0, 182 | "source": "registry", 183 | "dependencies": { 184 | "com.unity.modules.vr": "1.0.0", 185 | "com.unity.modules.xr": "1.0.0" 186 | }, 187 | "url": "https://packages.unity.com" 188 | }, 189 | "com.unity.modules.ai": { 190 | "version": "1.0.0", 191 | "depth": 0, 192 | "source": "builtin", 193 | "dependencies": {} 194 | }, 195 | "com.unity.modules.androidjni": { 196 | "version": "1.0.0", 197 | "depth": 0, 198 | "source": "builtin", 199 | "dependencies": {} 200 | }, 201 | "com.unity.modules.animation": { 202 | "version": "1.0.0", 203 | "depth": 0, 204 | "source": "builtin", 205 | "dependencies": {} 206 | }, 207 | "com.unity.modules.assetbundle": { 208 | "version": "1.0.0", 209 | "depth": 0, 210 | "source": "builtin", 211 | "dependencies": {} 212 | }, 213 | "com.unity.modules.audio": { 214 | "version": "1.0.0", 215 | "depth": 0, 216 | "source": "builtin", 217 | "dependencies": {} 218 | }, 219 | "com.unity.modules.cloth": { 220 | "version": "1.0.0", 221 | "depth": 0, 222 | "source": "builtin", 223 | "dependencies": { 224 | "com.unity.modules.physics": "1.0.0" 225 | } 226 | }, 227 | "com.unity.modules.director": { 228 | "version": "1.0.0", 229 | "depth": 0, 230 | "source": "builtin", 231 | "dependencies": { 232 | "com.unity.modules.audio": "1.0.0", 233 | "com.unity.modules.animation": "1.0.0" 234 | } 235 | }, 236 | "com.unity.modules.imageconversion": { 237 | "version": "1.0.0", 238 | "depth": 0, 239 | "source": "builtin", 240 | "dependencies": {} 241 | }, 242 | "com.unity.modules.imgui": { 243 | "version": "1.0.0", 244 | "depth": 0, 245 | "source": "builtin", 246 | "dependencies": {} 247 | }, 248 | "com.unity.modules.jsonserialize": { 249 | "version": "1.0.0", 250 | "depth": 0, 251 | "source": "builtin", 252 | "dependencies": {} 253 | }, 254 | "com.unity.modules.particlesystem": { 255 | "version": "1.0.0", 256 | "depth": 0, 257 | "source": "builtin", 258 | "dependencies": {} 259 | }, 260 | "com.unity.modules.physics": { 261 | "version": "1.0.0", 262 | "depth": 0, 263 | "source": "builtin", 264 | "dependencies": {} 265 | }, 266 | "com.unity.modules.physics2d": { 267 | "version": "1.0.0", 268 | "depth": 0, 269 | "source": "builtin", 270 | "dependencies": {} 271 | }, 272 | "com.unity.modules.screencapture": { 273 | "version": "1.0.0", 274 | "depth": 0, 275 | "source": "builtin", 276 | "dependencies": { 277 | "com.unity.modules.imageconversion": "1.0.0" 278 | } 279 | }, 280 | "com.unity.modules.subsystems": { 281 | "version": "1.0.0", 282 | "depth": 1, 283 | "source": "builtin", 284 | "dependencies": { 285 | "com.unity.modules.jsonserialize": "1.0.0" 286 | } 287 | }, 288 | "com.unity.modules.terrain": { 289 | "version": "1.0.0", 290 | "depth": 0, 291 | "source": "builtin", 292 | "dependencies": {} 293 | }, 294 | "com.unity.modules.terrainphysics": { 295 | "version": "1.0.0", 296 | "depth": 0, 297 | "source": "builtin", 298 | "dependencies": { 299 | "com.unity.modules.physics": "1.0.0", 300 | "com.unity.modules.terrain": "1.0.0" 301 | } 302 | }, 303 | "com.unity.modules.tilemap": { 304 | "version": "1.0.0", 305 | "depth": 0, 306 | "source": "builtin", 307 | "dependencies": { 308 | "com.unity.modules.physics2d": "1.0.0" 309 | } 310 | }, 311 | "com.unity.modules.ui": { 312 | "version": "1.0.0", 313 | "depth": 0, 314 | "source": "builtin", 315 | "dependencies": {} 316 | }, 317 | "com.unity.modules.uielements": { 318 | "version": "1.0.0", 319 | "depth": 0, 320 | "source": "builtin", 321 | "dependencies": { 322 | "com.unity.modules.ui": "1.0.0", 323 | "com.unity.modules.imgui": "1.0.0", 324 | "com.unity.modules.jsonserialize": "1.0.0" 325 | } 326 | }, 327 | "com.unity.modules.umbra": { 328 | "version": "1.0.0", 329 | "depth": 0, 330 | "source": "builtin", 331 | "dependencies": {} 332 | }, 333 | "com.unity.modules.unityanalytics": { 334 | "version": "1.0.0", 335 | "depth": 0, 336 | "source": "builtin", 337 | "dependencies": { 338 | "com.unity.modules.unitywebrequest": "1.0.0", 339 | "com.unity.modules.jsonserialize": "1.0.0" 340 | } 341 | }, 342 | "com.unity.modules.unitywebrequest": { 343 | "version": "1.0.0", 344 | "depth": 0, 345 | "source": "builtin", 346 | "dependencies": {} 347 | }, 348 | "com.unity.modules.unitywebrequestassetbundle": { 349 | "version": "1.0.0", 350 | "depth": 0, 351 | "source": "builtin", 352 | "dependencies": { 353 | "com.unity.modules.assetbundle": "1.0.0", 354 | "com.unity.modules.unitywebrequest": "1.0.0" 355 | } 356 | }, 357 | "com.unity.modules.unitywebrequestaudio": { 358 | "version": "1.0.0", 359 | "depth": 0, 360 | "source": "builtin", 361 | "dependencies": { 362 | "com.unity.modules.unitywebrequest": "1.0.0", 363 | "com.unity.modules.audio": "1.0.0" 364 | } 365 | }, 366 | "com.unity.modules.unitywebrequesttexture": { 367 | "version": "1.0.0", 368 | "depth": 0, 369 | "source": "builtin", 370 | "dependencies": { 371 | "com.unity.modules.unitywebrequest": "1.0.0", 372 | "com.unity.modules.imageconversion": "1.0.0" 373 | } 374 | }, 375 | "com.unity.modules.unitywebrequestwww": { 376 | "version": "1.0.0", 377 | "depth": 0, 378 | "source": "builtin", 379 | "dependencies": { 380 | "com.unity.modules.unitywebrequest": "1.0.0", 381 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 382 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 383 | "com.unity.modules.audio": "1.0.0", 384 | "com.unity.modules.assetbundle": "1.0.0", 385 | "com.unity.modules.imageconversion": "1.0.0" 386 | } 387 | }, 388 | "com.unity.modules.vehicles": { 389 | "version": "1.0.0", 390 | "depth": 0, 391 | "source": "builtin", 392 | "dependencies": { 393 | "com.unity.modules.physics": "1.0.0" 394 | } 395 | }, 396 | "com.unity.modules.video": { 397 | "version": "1.0.0", 398 | "depth": 0, 399 | "source": "builtin", 400 | "dependencies": { 401 | "com.unity.modules.audio": "1.0.0", 402 | "com.unity.modules.ui": "1.0.0", 403 | "com.unity.modules.unitywebrequest": "1.0.0" 404 | } 405 | }, 406 | "com.unity.modules.vr": { 407 | "version": "1.0.0", 408 | "depth": 0, 409 | "source": "builtin", 410 | "dependencies": { 411 | "com.unity.modules.jsonserialize": "1.0.0", 412 | "com.unity.modules.physics": "1.0.0", 413 | "com.unity.modules.xr": "1.0.0" 414 | } 415 | }, 416 | "com.unity.modules.wind": { 417 | "version": "1.0.0", 418 | "depth": 0, 419 | "source": "builtin", 420 | "dependencies": {} 421 | }, 422 | "com.unity.modules.xr": { 423 | "version": "1.0.0", 424 | "depth": 0, 425 | "source": "builtin", 426 | "dependencies": { 427 | "com.unity.modules.physics": "1.0.0", 428 | "com.unity.modules.jsonserialize": "1.0.0", 429 | "com.unity.modules.subsystems": "1.0.0" 430 | } 431 | } 432 | } 433 | } 434 | -------------------------------------------------------------------------------- /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: 1024 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_SpatializerPlugin: 15 | m_AmbisonicDecoderPlugin: 16 | m_DisableAudio: 0 17 | m_VirtualizeEffects: 1 18 | -------------------------------------------------------------------------------- /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/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: 8 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: 0 23 | m_ReuseCollisionCallbacks: 1 24 | m_ClothInterCollisionSettingsToggle: 0 25 | m_ContactPairsMode: 0 26 | m_BroadphaseType: 0 27 | m_WorldBounds: 28 | m_Center: {x: 0, y: 0, z: 0} 29 | m_Extent: {x: 250, y: 250, z: 250} 30 | m_WorldSubdivisions: 8 31 | -------------------------------------------------------------------------------- /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 | - enabled: 0 9 | path: 10 | guid: 00000000000000000000000000000000 11 | m_configObjects: {} 12 | -------------------------------------------------------------------------------- /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: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_LineEndingsForNewScripts: 2 10 | m_DefaultBehaviorMode: 1 11 | m_SpritePackerMode: 4 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 18 | m_ProjectGenerationRootNamespace: 19 | m_UserGeneratedProjectSuffix: 20 | m_CollabEditorSettings: 21 | inProgressEnabled: 1 22 | -------------------------------------------------------------------------------- /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: 10753, guid: 0000000000000000f000000000000000, type: 0} 33 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 34 | - {fileID: 10783, guid: 0000000000000000f000000000000000, type: 0} 35 | m_PreloadedShaders: [] 36 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, 37 | type: 0} 38 | m_CustomRenderPipeline: {fileID: 0} 39 | m_TransparencySortMode: 0 40 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 41 | m_DefaultRenderingPath: 1 42 | m_DefaultMobileRenderingPath: 1 43 | m_TierSettings: [] 44 | m_LightmapStripping: 0 45 | m_FogStripping: 0 46 | m_InstancingStripping: 0 47 | m_LightmapKeepPlain: 1 48 | m_LightmapKeepDirCombined: 1 49 | m_LightmapKeepDynamicPlain: 1 50 | m_LightmapKeepDynamicDirCombined: 1 51 | m_LightmapKeepShadowMask: 1 52 | m_LightmapKeepSubtractive: 1 53 | m_FogKeepLinear: 1 54 | m_FogKeepExp: 1 55 | m_FogKeepExp2: 1 56 | m_AlbedoSwatchInfos: [] 57 | m_LightsUseLinearIntensity: 0 58 | m_LightsUseColorTemperature: 0 59 | -------------------------------------------------------------------------------- /ProjectSettings/GvhProjectSettings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!387306366 &1 4 | MemorySettings: 5 | m_ObjectHideFlags: 0 6 | m_EditorMemorySettings: 7 | m_MainAllocatorBlockSize: -1 8 | m_ThreadAllocatorBlockSize: -1 9 | m_MainGfxBlockSize: -1 10 | m_ThreadGfxBlockSize: -1 11 | m_CacheBlockSize: -1 12 | m_TypetreeBlockSize: -1 13 | m_ProfilerBlockSize: -1 14 | m_ProfilerEditorBlockSize: -1 15 | m_BucketAllocatorGranularity: -1 16 | m_BucketAllocatorBucketsCount: -1 17 | m_BucketAllocatorBlockSize: -1 18 | m_BucketAllocatorBlockCount: -1 19 | m_ProfilerBucketAllocatorGranularity: -1 20 | m_ProfilerBucketAllocatorBucketsCount: -1 21 | m_ProfilerBucketAllocatorBlockSize: -1 22 | m_ProfilerBucketAllocatorBlockCount: -1 23 | m_TempAllocatorSizeMain: -1 24 | m_JobTempAllocatorBlockSize: -1 25 | m_BackgroundJobTempAllocatorBlockSize: -1 26 | m_JobTempAllocatorReducedBlockSize: -1 27 | m_TempAllocatorSizeGIBakingWorker: -1 28 | m_TempAllocatorSizeNavMeshWorker: -1 29 | m_TempAllocatorSizeAudioWorker: -1 30 | m_TempAllocatorSizeCloudWorker: -1 31 | m_TempAllocatorSizeGfx: -1 32 | m_TempAllocatorSizeJobWorker: -1 33 | m_TempAllocatorSizeBackgroundWorker: -1 34 | m_TempAllocatorSizePreloadManager: -1 35 | m_PlatformMemorySettings: {} 36 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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_EnablePreReleasePackages: 0 16 | m_AdvancedSettingsExpanded: 1 17 | m_ScopedRegistriesSettingsExpanded: 1 18 | m_SeeAllPackageVersions: 0 19 | m_DismissPreviewPackagesInUse: 0 20 | oneTimeWarningShown: 0 21 | m_Registries: 22 | - m_Id: main 23 | m_Name: 24 | m_Url: https://packages.unity.com 25 | m_Scopes: [] 26 | m_IsDefault: 1 27 | m_Capabilities: 7 28 | m_ConfigSource: 0 29 | m_UserSelectedRegistryName: 30 | m_UserAddingNewScopedRegistry: 0 31 | m_RegistryInfoDraft: 32 | m_Modified: 0 33 | m_ErrorMessage: 34 | m_UserModificationsInstanceId: -868 35 | m_OriginalInstanceId: -870 36 | m_LoadAssets: 0 37 | -------------------------------------------------------------------------------- /ProjectSettings/Packages/com.unity.services.core/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaletin/UnityColorPicker/cd0e292919ccb380523487ec8b0baff4e808b3ab/ProjectSettings/Packages/com.unity.services.core/Settings.json -------------------------------------------------------------------------------- /ProjectSettings/Packages/com.unity.services.mediation/Settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "m_Dictionary": { 3 | "m_DictionaryValues": [ 4 | { 5 | "type": "System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 6 | "key": "unityads-adapter.version", 7 | "value": "{\"m_Value\":\"latest\"}" 8 | }, 9 | { 10 | "type": "System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 11 | "key": "admob-adapter.version", 12 | "value": "{\"m_Value\":\"\"}" 13 | }, 14 | { 15 | "type": "System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 16 | "key": "facebook-adapter.version", 17 | "value": "{\"m_Value\":\"\"}" 18 | }, 19 | { 20 | "type": "System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 21 | "key": "adcolony-adapter.version", 22 | "value": "{\"m_Value\":\"\"}" 23 | }, 24 | { 25 | "type": "System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 26 | "key": "ironsource-adapter.version", 27 | "value": "{\"m_Value\":\"\"}" 28 | }, 29 | { 30 | "type": "System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 31 | "key": "applovin-adapter.version", 32 | "value": "{\"m_Value\":\"\"}" 33 | }, 34 | { 35 | "type": "System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 36 | "key": "vungle-adapter.version", 37 | "value": "{\"m_Value\":\"\"}" 38 | }, 39 | { 40 | "type": "System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 41 | "key": "mintegral-adapter.version", 42 | "value": "{\"m_Value\":\"\"}" 43 | }, 44 | { 45 | "type": "System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 46 | "key": "admob-adapter.app-id.android", 47 | "value": "{\"m_Value\":\"\"}" 48 | }, 49 | { 50 | "type": "System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 51 | "key": "admob-adapter.app-id.ios", 52 | "value": "{\"m_Value\":\"\"}" 53 | }, 54 | { 55 | "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 56 | "key": "mediation.build.settings.force-dynamic-linking", 57 | "value": "{\"m_Value\":true}" 58 | }, 59 | { 60 | "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 61 | "key": "mediation.build.settings.disable-dexing-artifact-transform", 62 | "value": "{\"m_Value\":true}" 63 | }, 64 | { 65 | "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 66 | "key": "mediation.build.settings.deterministic-builds", 67 | "value": "{\"m_Value\":true}" 68 | }, 69 | { 70 | "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 71 | "key": "mediation.build.settings.force-dependency-update", 72 | "value": "{\"m_Value\":false}" 73 | } 74 | ] 75 | } 76 | } -------------------------------------------------------------------------------- /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: 4 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_JobOptions: 23 | serializedVersion: 2 24 | useMultithreading: 0 25 | useConsistencySorting: 0 26 | m_InterpolationPosesPerJob: 100 27 | m_NewContactsPerJob: 30 28 | m_CollideContactsPerJob: 100 29 | m_ClearFlagsPerJob: 200 30 | m_ClearBodyForcesPerJob: 200 31 | m_SyncDiscreteFixturesPerJob: 50 32 | m_SyncContinuousFixturesPerJob: 50 33 | m_FindNearestContactsPerJob: 100 34 | m_UpdateTriggerContactsPerJob: 100 35 | m_IslandSolverCostThreshold: 100 36 | m_IslandSolverBodyCostScale: 1 37 | m_IslandSolverContactCostScale: 10 38 | m_IslandSolverJointCostScale: 10 39 | m_IslandSolverBodiesPerJob: 50 40 | m_IslandSolverContactsPerJob: 50 41 | m_AutoSimulation: 1 42 | m_QueriesHitTriggers: 1 43 | m_QueriesStartInColliders: 1 44 | m_CallbacksOnDisable: 1 45 | m_ReuseCollisionCallbacks: 1 46 | m_AutoSyncTransforms: 0 47 | m_AlwaysShowColliders: 0 48 | m_ShowColliderSleep: 1 49 | m_ShowColliderContacts: 0 50 | m_ShowColliderAABB: 0 51 | m_ContactArrowScale: 0.2 52 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 53 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 54 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 55 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 56 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 57 | -------------------------------------------------------------------------------- /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 | m_DefaultList: 7 | - type: 8 | m_NativeTypeID: 20 9 | m_ManagedTypePPtr: {fileID: 0} 10 | m_ManagedTypeFallback: 11 | defaultPresets: 12 | - m_Preset: {fileID: 2655988077585873504, guid: bfcfc320427f8224bbb7a96f3d3aebad, 13 | type: 2} 14 | -------------------------------------------------------------------------------- /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: 26 7 | productGUID: decedee6ef9976e4794037080759bbb8 8 | AndroidProfiler: 0 9 | AndroidFilterTouchesWhenObscured: 0 10 | AndroidEnableSustainedPerformanceMode: 0 11 | defaultScreenOrientation: 4 12 | targetDevice: 2 13 | useOnDemandResources: 0 14 | accelerometerFrequency: 60 15 | companyName: DefaultCompany 16 | productName: UnityColorPicker 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: 1 51 | m_SpriteBatchVertexThreshold: 300 52 | m_MTRendering: 1 53 | mipStripping: 0 54 | numberOfMipsStripped: 0 55 | numberOfMipsStrippedPerMipmapLimitGroup: {} 56 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 57 | iosShowActivityIndicatorOnLoading: -1 58 | androidShowActivityIndicatorOnLoading: -1 59 | iosUseCustomAppBackgroundBehavior: 0 60 | allowedAutorotateToPortrait: 1 61 | allowedAutorotateToPortraitUpsideDown: 1 62 | allowedAutorotateToLandscapeRight: 1 63 | allowedAutorotateToLandscapeLeft: 1 64 | useOSAutorotation: 1 65 | use32BitDisplayBuffer: 1 66 | preserveFramebufferAlpha: 0 67 | disableDepthAndStencilBuffers: 0 68 | androidStartInFullscreen: 1 69 | androidRenderOutsideSafeArea: 0 70 | androidUseSwappy: 0 71 | androidBlitType: 0 72 | androidResizableWindow: 0 73 | androidDefaultWindowWidth: 1920 74 | androidDefaultWindowHeight: 1080 75 | androidMinimumWindowWidth: 400 76 | androidMinimumWindowHeight: 300 77 | androidFullscreenMode: 1 78 | defaultIsNativeResolution: 1 79 | macRetinaSupport: 1 80 | runInBackground: 1 81 | captureSingleScreen: 0 82 | muteOtherAudioSources: 0 83 | Prepare IOS For Recording: 0 84 | Force IOS Speakers When Recording: 0 85 | deferSystemGesturesMode: 0 86 | hideHomeButton: 0 87 | submitAnalytics: 1 88 | usePlayerLog: 1 89 | bakeCollisionMeshes: 0 90 | forceSingleInstance: 0 91 | useFlipModelSwapchain: 1 92 | resizableWindow: 0 93 | useMacAppStoreValidation: 0 94 | macAppStoreCategory: public.app-category.games 95 | gpuSkinning: 0 96 | xboxPIXTextureCapture: 0 97 | xboxEnableAvatar: 0 98 | xboxEnableKinect: 0 99 | xboxEnableKinectAutoTracking: 0 100 | xboxEnableFitness: 0 101 | visibleInBackground: 1 102 | allowFullscreenSwitch: 1 103 | fullscreenMode: 1 104 | xboxSpeechDB: 0 105 | xboxEnableHeadOrientation: 0 106 | xboxEnableGuest: 0 107 | xboxEnablePIXSampling: 0 108 | metalFramebufferOnly: 0 109 | xboxOneResolution: 0 110 | xboxOneSResolution: 0 111 | xboxOneXResolution: 3 112 | xboxOneMonoLoggingLevel: 0 113 | xboxOneLoggingLevel: 1 114 | xboxOneDisableEsram: 0 115 | xboxOneEnableTypeOptimization: 0 116 | xboxOnePresentImmediateThreshold: 0 117 | switchQueueCommandMemory: 0 118 | switchQueueControlMemory: 16384 119 | switchQueueComputeMemory: 262144 120 | switchNVNShaderPoolsGranularity: 33554432 121 | switchNVNDefaultPoolsGranularity: 16777216 122 | switchNVNOtherPoolsGranularity: 16777216 123 | switchGpuScratchPoolGranularity: 2097152 124 | switchAllowGpuScratchShrinking: 0 125 | switchNVNMaxPublicTextureIDCount: 0 126 | switchNVNMaxPublicSamplerIDCount: 0 127 | switchNVNGraphicsFirmwareMemory: 32 128 | stadiaPresentMode: 0 129 | stadiaTargetFramerate: 0 130 | vulkanNumSwapchainBuffers: 3 131 | vulkanEnableSetSRGBWrite: 0 132 | vulkanEnablePreTransform: 0 133 | vulkanEnableLateAcquireNextImage: 0 134 | vulkanEnableCommandBufferRecycling: 1 135 | loadStoreDebugModeEnabled: 0 136 | bundleVersion: 1.0 137 | preloadedAssets: [] 138 | metroInputSource: 0 139 | wsaTransparentSwapchain: 0 140 | m_HolographicPauseOnTrackingLoss: 1 141 | xboxOneDisableKinectGpuReservation: 0 142 | xboxOneEnable7thCore: 0 143 | vrSettings: 144 | enable360StereoCapture: 0 145 | isWsaHolographicRemotingEnabled: 0 146 | enableFrameTimingStats: 0 147 | enableOpenGLProfilerGPURecorders: 1 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.Company.ProductName 158 | buildNumber: 159 | Standalone: 0 160 | iPhone: 0 161 | tvOS: 0 162 | overrideDefaultApplicationIdentifier: 1 163 | AndroidBundleVersionCode: 1 164 | AndroidMinSdkVersion: 22 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: 1 177 | strictShaderVariantMatching: 0 178 | VertexChannelCompressionMask: 4054 179 | iPhoneSdkVersion: 988 180 | iOSTargetOSVersionString: 12.0 181 | tvOSSdkVersion: 0 182 | tvOSRequireExtendedGameController: 0 183 | tvOSTargetOSVersionString: 12.0 184 | uIPrerenderedIcon: 0 185 | uIRequiresPersistentWiFi: 0 186 | uIRequiresFullScreen: 1 187 | uIStatusBarHidden: 1 188 | uIExitOnSuspend: 0 189 | uIStatusBarStyle: 0 190 | appleTVSplashScreen: {fileID: 0} 191 | appleTVSplashScreen2x: {fileID: 0} 192 | tvOSSmallIconLayers: [] 193 | tvOSSmallIconLayers2x: [] 194 | tvOSLargeIconLayers: [] 195 | tvOSLargeIconLayers2x: [] 196 | tvOSTopShelfImageLayers: [] 197 | tvOSTopShelfImageLayers2x: [] 198 | tvOSTopShelfImageWideLayers: [] 199 | tvOSTopShelfImageWideLayers2x: [] 200 | iOSLaunchScreenType: 0 201 | iOSLaunchScreenPortrait: {fileID: 0} 202 | iOSLaunchScreenLandscape: {fileID: 0} 203 | iOSLaunchScreenBackgroundColor: 204 | serializedVersion: 2 205 | rgba: 0 206 | iOSLaunchScreenFillPct: 100 207 | iOSLaunchScreenSize: 100 208 | iOSLaunchScreenCustomXibPath: 209 | iOSLaunchScreeniPadType: 0 210 | iOSLaunchScreeniPadImage: {fileID: 0} 211 | iOSLaunchScreeniPadBackgroundColor: 212 | serializedVersion: 2 213 | rgba: 0 214 | iOSLaunchScreeniPadFillPct: 100 215 | iOSLaunchScreeniPadSize: 100 216 | iOSLaunchScreeniPadCustomXibPath: 217 | iOSLaunchScreenCustomStoryboardPath: 218 | iOSLaunchScreeniPadCustomStoryboardPath: 219 | iOSDeviceRequirements: [] 220 | iOSURLSchemes: [] 221 | macOSURLSchemes: [] 222 | iOSBackgroundModes: 0 223 | iOSMetalForceHardShadows: 0 224 | metalEditorSupport: 1 225 | metalAPIValidation: 1 226 | iOSRenderExtraFrameOnPause: 0 227 | iosCopyPluginsCodeInsteadOfSymlink: 0 228 | appleDeveloperTeamID: 229 | iOSManualSigningProvisioningProfileID: 230 | tvOSManualSigningProvisioningProfileID: 231 | iOSManualSigningProvisioningProfileType: 0 232 | tvOSManualSigningProvisioningProfileType: 0 233 | appleEnableAutomaticSigning: 0 234 | iOSRequireARKit: 0 235 | iOSAutomaticallyDetectAndAddCapabilities: 1 236 | appleEnableProMotion: 0 237 | shaderPrecisionModel: 0 238 | clonedFromGUID: 5f34be1353de5cf4398729fda238591b 239 | templatePackageId: com.unity.template.2d@1.0.2 240 | templateDefaultScene: Assets/Scenes/SampleScene.unity 241 | useCustomMainManifest: 0 242 | useCustomLauncherManifest: 0 243 | useCustomMainGradleTemplate: 0 244 | useCustomLauncherGradleManifest: 0 245 | useCustomBaseGradleTemplate: 0 246 | useCustomGradlePropertiesTemplate: 0 247 | useCustomGradleSettingsTemplate: 0 248 | useCustomProguardFile: 0 249 | AndroidTargetArchitectures: 5 250 | AndroidTargetDevices: 0 251 | AndroidSplashScreenScale: 0 252 | androidSplashScreen: {fileID: 0} 253 | AndroidKeystoreName: '{inproject}: ' 254 | AndroidKeyaliasName: 255 | AndroidEnableArmv9SecurityFeatures: 0 256 | AndroidBuildApkPerCpuArchitecture: 0 257 | AndroidTVCompatibility: 1 258 | AndroidIsGame: 1 259 | AndroidEnableTango: 0 260 | androidEnableBanner: 1 261 | androidUseLowAccuracyLocation: 0 262 | androidUseCustomKeystore: 0 263 | m_AndroidBanners: 264 | - width: 320 265 | height: 180 266 | banner: {fileID: 0} 267 | androidGamepadSupportLevel: 0 268 | chromeosInputEmulation: 1 269 | AndroidMinifyRelease: 0 270 | AndroidMinifyDebug: 0 271 | AndroidValidateAppBundleSize: 1 272 | AndroidAppBundleSizeToValidate: 150 273 | m_BuildTargetIcons: [] 274 | m_BuildTargetPlatformIcons: 275 | - m_BuildTarget: iPhone 276 | m_Icons: 277 | - m_Textures: [] 278 | m_Width: 180 279 | m_Height: 180 280 | m_Kind: 0 281 | m_SubKind: iPhone 282 | - m_Textures: [] 283 | m_Width: 120 284 | m_Height: 120 285 | m_Kind: 0 286 | m_SubKind: iPhone 287 | - m_Textures: [] 288 | m_Width: 167 289 | m_Height: 167 290 | m_Kind: 0 291 | m_SubKind: iPad 292 | - m_Textures: [] 293 | m_Width: 152 294 | m_Height: 152 295 | m_Kind: 0 296 | m_SubKind: iPad 297 | - m_Textures: [] 298 | m_Width: 76 299 | m_Height: 76 300 | m_Kind: 0 301 | m_SubKind: iPad 302 | - m_Textures: [] 303 | m_Width: 120 304 | m_Height: 120 305 | m_Kind: 3 306 | m_SubKind: iPhone 307 | - m_Textures: [] 308 | m_Width: 80 309 | m_Height: 80 310 | m_Kind: 3 311 | m_SubKind: iPhone 312 | - m_Textures: [] 313 | m_Width: 80 314 | m_Height: 80 315 | m_Kind: 3 316 | m_SubKind: iPad 317 | - m_Textures: [] 318 | m_Width: 40 319 | m_Height: 40 320 | m_Kind: 3 321 | m_SubKind: iPad 322 | - m_Textures: [] 323 | m_Width: 87 324 | m_Height: 87 325 | m_Kind: 1 326 | m_SubKind: iPhone 327 | - m_Textures: [] 328 | m_Width: 58 329 | m_Height: 58 330 | m_Kind: 1 331 | m_SubKind: iPhone 332 | - m_Textures: [] 333 | m_Width: 29 334 | m_Height: 29 335 | m_Kind: 1 336 | m_SubKind: iPhone 337 | - m_Textures: [] 338 | m_Width: 58 339 | m_Height: 58 340 | m_Kind: 1 341 | m_SubKind: iPad 342 | - m_Textures: [] 343 | m_Width: 29 344 | m_Height: 29 345 | m_Kind: 1 346 | m_SubKind: iPad 347 | - m_Textures: [] 348 | m_Width: 60 349 | m_Height: 60 350 | m_Kind: 2 351 | m_SubKind: iPhone 352 | - m_Textures: [] 353 | m_Width: 40 354 | m_Height: 40 355 | m_Kind: 2 356 | m_SubKind: iPhone 357 | - m_Textures: [] 358 | m_Width: 40 359 | m_Height: 40 360 | m_Kind: 2 361 | m_SubKind: iPad 362 | - m_Textures: [] 363 | m_Width: 20 364 | m_Height: 20 365 | m_Kind: 2 366 | m_SubKind: iPad 367 | - m_Textures: [] 368 | m_Width: 1024 369 | m_Height: 1024 370 | m_Kind: 4 371 | m_SubKind: App Store 372 | - m_BuildTarget: Android 373 | m_Icons: 374 | - m_Textures: [] 375 | m_Width: 432 376 | m_Height: 432 377 | m_Kind: 2 378 | m_SubKind: 379 | - m_Textures: [] 380 | m_Width: 324 381 | m_Height: 324 382 | m_Kind: 2 383 | m_SubKind: 384 | - m_Textures: [] 385 | m_Width: 216 386 | m_Height: 216 387 | m_Kind: 2 388 | m_SubKind: 389 | - m_Textures: [] 390 | m_Width: 162 391 | m_Height: 162 392 | m_Kind: 2 393 | m_SubKind: 394 | - m_Textures: [] 395 | m_Width: 108 396 | m_Height: 108 397 | m_Kind: 2 398 | m_SubKind: 399 | - m_Textures: [] 400 | m_Width: 81 401 | m_Height: 81 402 | m_Kind: 2 403 | m_SubKind: 404 | - m_Textures: [] 405 | m_Width: 192 406 | m_Height: 192 407 | m_Kind: 1 408 | m_SubKind: 409 | - m_Textures: [] 410 | m_Width: 144 411 | m_Height: 144 412 | m_Kind: 1 413 | m_SubKind: 414 | - m_Textures: [] 415 | m_Width: 96 416 | m_Height: 96 417 | m_Kind: 1 418 | m_SubKind: 419 | - m_Textures: [] 420 | m_Width: 72 421 | m_Height: 72 422 | m_Kind: 1 423 | m_SubKind: 424 | - m_Textures: [] 425 | m_Width: 48 426 | m_Height: 48 427 | m_Kind: 1 428 | m_SubKind: 429 | - m_Textures: [] 430 | m_Width: 36 431 | m_Height: 36 432 | m_Kind: 1 433 | m_SubKind: 434 | - m_Textures: [] 435 | m_Width: 192 436 | m_Height: 192 437 | m_Kind: 0 438 | m_SubKind: 439 | - m_Textures: [] 440 | m_Width: 144 441 | m_Height: 144 442 | m_Kind: 0 443 | m_SubKind: 444 | - m_Textures: [] 445 | m_Width: 96 446 | m_Height: 96 447 | m_Kind: 0 448 | m_SubKind: 449 | - m_Textures: [] 450 | m_Width: 72 451 | m_Height: 72 452 | m_Kind: 0 453 | m_SubKind: 454 | - m_Textures: [] 455 | m_Width: 48 456 | m_Height: 48 457 | m_Kind: 0 458 | m_SubKind: 459 | - m_Textures: [] 460 | m_Width: 36 461 | m_Height: 36 462 | m_Kind: 0 463 | m_SubKind: 464 | m_BuildTargetBatching: [] 465 | m_BuildTargetShaderSettings: [] 466 | m_BuildTargetGraphicsJobs: 467 | - m_BuildTarget: WindowsStandaloneSupport 468 | m_GraphicsJobs: 0 469 | - m_BuildTarget: MacStandaloneSupport 470 | m_GraphicsJobs: 0 471 | - m_BuildTarget: LinuxStandaloneSupport 472 | m_GraphicsJobs: 0 473 | - m_BuildTarget: AndroidPlayer 474 | m_GraphicsJobs: 0 475 | - m_BuildTarget: iOSSupport 476 | m_GraphicsJobs: 0 477 | - m_BuildTarget: PS4Player 478 | m_GraphicsJobs: 0 479 | - m_BuildTarget: PS5Player 480 | m_GraphicsJobs: 0 481 | - m_BuildTarget: XboxOnePlayer 482 | m_GraphicsJobs: 0 483 | - m_BuildTarget: GameCoreXboxOneSupport 484 | m_GraphicsJobs: 0 485 | - m_BuildTarget: GameCoreScarlettSupport 486 | m_GraphicsJobs: 0 487 | - m_BuildTarget: Switch 488 | m_GraphicsJobs: 0 489 | - m_BuildTarget: WebGLSupport 490 | m_GraphicsJobs: 0 491 | - m_BuildTarget: MetroSupport 492 | m_GraphicsJobs: 0 493 | - m_BuildTarget: AppleTVSupport 494 | m_GraphicsJobs: 0 495 | - m_BuildTarget: BJMSupport 496 | m_GraphicsJobs: 0 497 | - m_BuildTarget: CloudRendering 498 | m_GraphicsJobs: 0 499 | - m_BuildTarget: EmbeddedLinux 500 | m_GraphicsJobs: 0 501 | - m_BuildTarget: QNX 502 | m_GraphicsJobs: 0 503 | m_BuildTargetGraphicsJobMode: 504 | - m_BuildTarget: PS4Player 505 | m_GraphicsJobMode: 0 506 | - m_BuildTarget: XboxOnePlayer 507 | m_GraphicsJobMode: 0 508 | m_BuildTargetGraphicsAPIs: 509 | - m_BuildTarget: iOSSupport 510 | m_APIs: 10000000 511 | m_Automatic: 1 512 | - m_BuildTarget: AndroidPlayer 513 | m_APIs: 0b00000008000000 514 | m_Automatic: 0 515 | m_BuildTargetVRSettings: [] 516 | m_DefaultShaderChunkSizeInMB: 16 517 | m_DefaultShaderChunkCount: 0 518 | openGLRequireES31: 0 519 | openGLRequireES31AEP: 0 520 | openGLRequireES32: 0 521 | m_TemplateCustomTags: {} 522 | mobileMTRendering: 523 | Android: 1 524 | iPhone: 1 525 | tvOS: 1 526 | m_BuildTargetGroupLightmapEncodingQuality: [] 527 | m_BuildTargetGroupHDRCubemapEncodingQuality: [] 528 | m_BuildTargetGroupLightmapSettings: [] 529 | m_BuildTargetGroupLoadStoreDebugModeSettings: [] 530 | m_BuildTargetNormalMapEncoding: [] 531 | m_BuildTargetDefaultTextureCompressionFormat: [] 532 | playModeTestRunnerEnabled: 0 533 | runPlayModeTestAsEditModeTest: 0 534 | actionOnDotNetUnhandledException: 1 535 | enableInternalProfiler: 0 536 | logObjCUncaughtExceptions: 1 537 | enableCrashReportAPI: 0 538 | cameraUsageDescription: 539 | locationUsageDescription: 540 | microphoneUsageDescription: 541 | bluetoothUsageDescription: 542 | macOSTargetOSVersion: 10.13.0 543 | switchNMETAOverride: 544 | switchNetLibKey: 545 | switchSocketMemoryPoolSize: 6144 546 | switchSocketAllocatorPoolSize: 128 547 | switchSocketConcurrencyLimit: 14 548 | switchScreenResolutionBehavior: 2 549 | switchUseCPUProfiler: 0 550 | switchUseGOLDLinker: 0 551 | switchLTOSetting: 0 552 | switchApplicationID: 0x01004b9000490000 553 | switchNSODependencies: 554 | switchCompilerFlags: 555 | switchTitleNames_0: 556 | switchTitleNames_1: 557 | switchTitleNames_2: 558 | switchTitleNames_3: 559 | switchTitleNames_4: 560 | switchTitleNames_5: 561 | switchTitleNames_6: 562 | switchTitleNames_7: 563 | switchTitleNames_8: 564 | switchTitleNames_9: 565 | switchTitleNames_10: 566 | switchTitleNames_11: 567 | switchTitleNames_12: 568 | switchTitleNames_13: 569 | switchTitleNames_14: 570 | switchTitleNames_15: 571 | switchPublisherNames_0: 572 | switchPublisherNames_1: 573 | switchPublisherNames_2: 574 | switchPublisherNames_3: 575 | switchPublisherNames_4: 576 | switchPublisherNames_5: 577 | switchPublisherNames_6: 578 | switchPublisherNames_7: 579 | switchPublisherNames_8: 580 | switchPublisherNames_9: 581 | switchPublisherNames_10: 582 | switchPublisherNames_11: 583 | switchPublisherNames_12: 584 | switchPublisherNames_13: 585 | switchPublisherNames_14: 586 | switchPublisherNames_15: 587 | switchIcons_0: {fileID: 0} 588 | switchIcons_1: {fileID: 0} 589 | switchIcons_2: {fileID: 0} 590 | switchIcons_3: {fileID: 0} 591 | switchIcons_4: {fileID: 0} 592 | switchIcons_5: {fileID: 0} 593 | switchIcons_6: {fileID: 0} 594 | switchIcons_7: {fileID: 0} 595 | switchIcons_8: {fileID: 0} 596 | switchIcons_9: {fileID: 0} 597 | switchIcons_10: {fileID: 0} 598 | switchIcons_11: {fileID: 0} 599 | switchIcons_12: {fileID: 0} 600 | switchIcons_13: {fileID: 0} 601 | switchIcons_14: {fileID: 0} 602 | switchIcons_15: {fileID: 0} 603 | switchSmallIcons_0: {fileID: 0} 604 | switchSmallIcons_1: {fileID: 0} 605 | switchSmallIcons_2: {fileID: 0} 606 | switchSmallIcons_3: {fileID: 0} 607 | switchSmallIcons_4: {fileID: 0} 608 | switchSmallIcons_5: {fileID: 0} 609 | switchSmallIcons_6: {fileID: 0} 610 | switchSmallIcons_7: {fileID: 0} 611 | switchSmallIcons_8: {fileID: 0} 612 | switchSmallIcons_9: {fileID: 0} 613 | switchSmallIcons_10: {fileID: 0} 614 | switchSmallIcons_11: {fileID: 0} 615 | switchSmallIcons_12: {fileID: 0} 616 | switchSmallIcons_13: {fileID: 0} 617 | switchSmallIcons_14: {fileID: 0} 618 | switchSmallIcons_15: {fileID: 0} 619 | switchManualHTML: 620 | switchAccessibleURLs: 621 | switchLegalInformation: 622 | switchMainThreadStackSize: 1048576 623 | switchPresenceGroupId: 624 | switchLogoHandling: 0 625 | switchReleaseVersion: 0 626 | switchDisplayVersion: 1.0.0 627 | switchStartupUserAccount: 0 628 | switchSupportedLanguagesMask: 0 629 | switchLogoType: 0 630 | switchApplicationErrorCodeCategory: 631 | switchUserAccountSaveDataSize: 0 632 | switchUserAccountSaveDataJournalSize: 0 633 | switchApplicationAttribute: 0 634 | switchCardSpecSize: -1 635 | switchCardSpecClock: -1 636 | switchRatingsMask: 0 637 | switchRatingsInt_0: 0 638 | switchRatingsInt_1: 0 639 | switchRatingsInt_2: 0 640 | switchRatingsInt_3: 0 641 | switchRatingsInt_4: 0 642 | switchRatingsInt_5: 0 643 | switchRatingsInt_6: 0 644 | switchRatingsInt_7: 0 645 | switchRatingsInt_8: 0 646 | switchRatingsInt_9: 0 647 | switchRatingsInt_10: 0 648 | switchRatingsInt_11: 0 649 | switchRatingsInt_12: 0 650 | switchLocalCommunicationIds_0: 651 | switchLocalCommunicationIds_1: 652 | switchLocalCommunicationIds_2: 653 | switchLocalCommunicationIds_3: 654 | switchLocalCommunicationIds_4: 655 | switchLocalCommunicationIds_5: 656 | switchLocalCommunicationIds_6: 657 | switchLocalCommunicationIds_7: 658 | switchParentalControl: 0 659 | switchAllowsScreenshot: 1 660 | switchAllowsVideoCapturing: 1 661 | switchAllowsRuntimeAddOnContentInstall: 0 662 | switchDataLossConfirmation: 0 663 | switchUserAccountLockEnabled: 0 664 | switchSystemResourceMemory: 16777216 665 | switchSupportedNpadStyles: 3 666 | switchNativeFsCacheSize: 32 667 | switchIsHoldTypeHorizontal: 0 668 | switchSupportedNpadCount: 8 669 | switchEnableTouchScreen: 1 670 | switchSocketConfigEnabled: 0 671 | switchTcpInitialSendBufferSize: 32 672 | switchTcpInitialReceiveBufferSize: 64 673 | switchTcpAutoSendBufferSizeMax: 256 674 | switchTcpAutoReceiveBufferSizeMax: 256 675 | switchUdpSendBufferSize: 9 676 | switchUdpReceiveBufferSize: 42 677 | switchSocketBufferEfficiency: 4 678 | switchSocketInitializeEnabled: 1 679 | switchNetworkInterfaceManagerInitializeEnabled: 1 680 | switchPlayerConnectionEnabled: 1 681 | switchUseNewStyleFilepaths: 1 682 | switchUseLegacyFmodPriorities: 0 683 | switchUseMicroSleepForYield: 1 684 | switchEnableRamDiskSupport: 0 685 | switchMicroSleepForYieldTime: 25 686 | switchRamDiskSpaceSize: 12 687 | ps4NPAgeRating: 12 688 | ps4NPTitleSecret: 689 | ps4NPTrophyPackPath: 690 | ps4ParentalLevel: 11 691 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 692 | ps4Category: 0 693 | ps4MasterVersion: 01.00 694 | ps4AppVersion: 01.00 695 | ps4AppType: 0 696 | ps4ParamSfxPath: 697 | ps4VideoOutPixelFormat: 0 698 | ps4VideoOutInitialWidth: 1920 699 | ps4VideoOutBaseModeInitialWidth: 1920 700 | ps4VideoOutReprojectionRate: 60 701 | ps4PronunciationXMLPath: 702 | ps4PronunciationSIGPath: 703 | ps4BackgroundImagePath: 704 | ps4StartupImagePath: 705 | ps4StartupImagesFolder: 706 | ps4IconImagesFolder: 707 | ps4SaveDataImagePath: 708 | ps4SdkOverride: 709 | ps4BGMPath: 710 | ps4ShareFilePath: 711 | ps4ShareOverlayImagePath: 712 | ps4PrivacyGuardImagePath: 713 | ps4ExtraSceSysFile: 714 | ps4NPtitleDatPath: 715 | ps4RemotePlayKeyAssignment: -1 716 | ps4RemotePlayKeyMappingDir: 717 | ps4PlayTogetherPlayerCount: 0 718 | ps4EnterButtonAssignment: 1 719 | ps4ApplicationParam1: 0 720 | ps4ApplicationParam2: 0 721 | ps4ApplicationParam3: 0 722 | ps4ApplicationParam4: 0 723 | ps4DownloadDataSize: 0 724 | ps4GarlicHeapSize: 2048 725 | ps4ProGarlicHeapSize: 2560 726 | playerPrefsMaxSize: 32768 727 | ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ 728 | ps4pnSessions: 1 729 | ps4pnPresence: 1 730 | ps4pnFriends: 1 731 | ps4pnGameCustomData: 1 732 | playerPrefsSupport: 0 733 | enableApplicationExit: 0 734 | resetTempFolder: 1 735 | restrictedAudioUsageRights: 0 736 | ps4UseResolutionFallback: 0 737 | ps4ReprojectionSupport: 0 738 | ps4UseAudio3dBackend: 0 739 | ps4UseLowGarlicFragmentationMode: 1 740 | ps4SocialScreenEnabled: 0 741 | ps4ScriptOptimizationLevel: 0 742 | ps4Audio3dVirtualSpeakerCount: 14 743 | ps4attribCpuUsage: 0 744 | ps4PatchPkgPath: 745 | ps4PatchLatestPkgPath: 746 | ps4PatchChangeinfoPath: 747 | ps4PatchDayOne: 0 748 | ps4attribUserManagement: 0 749 | ps4attribMoveSupport: 0 750 | ps4attrib3DSupport: 0 751 | ps4attribShareSupport: 0 752 | ps4attribExclusiveVR: 0 753 | ps4disableAutoHideSplash: 0 754 | ps4videoRecordingFeaturesUsed: 0 755 | ps4contentSearchFeaturesUsed: 0 756 | ps4CompatibilityPS5: 0 757 | ps4AllowPS5Detection: 0 758 | ps4GPU800MHz: 1 759 | ps4attribEyeToEyeDistanceSettingVR: 0 760 | ps4IncludedModules: [] 761 | ps4attribVROutputEnabled: 0 762 | monoEnv: 763 | splashScreenBackgroundSourceLandscape: {fileID: 0} 764 | splashScreenBackgroundSourcePortrait: {fileID: 0} 765 | blurSplashScreenBackground: 1 766 | spritePackerPolicy: 767 | webGLMemorySize: 256 768 | webGLExceptionSupport: 1 769 | webGLNameFilesAsHashes: 0 770 | webGLShowDiagnostics: 0 771 | webGLDataCaching: 1 772 | webGLDebugSymbols: 0 773 | webGLEmscriptenArgs: 774 | webGLModulesDirectory: 775 | webGLTemplate: APPLICATION:Default 776 | webGLAnalyzeBuildSize: 0 777 | webGLUseEmbeddedResources: 0 778 | webGLCompressionFormat: 1 779 | webGLWasmArithmeticExceptions: 0 780 | webGLLinkerTarget: 1 781 | webGLThreadsSupport: 0 782 | webGLDecompressionFallback: 0 783 | webGLInitialMemorySize: 32 784 | webGLMaximumMemorySize: 2048 785 | webGLMemoryGrowthMode: 2 786 | webGLMemoryLinearGrowthStep: 16 787 | webGLMemoryGeometricGrowthStep: 0.2 788 | webGLMemoryGeometricGrowthCap: 96 789 | webGLPowerPreference: 2 790 | scriptingDefineSymbols: {} 791 | additionalCompilerArguments: {} 792 | platformArchitecture: {} 793 | scriptingBackend: {} 794 | il2cppCompilerConfiguration: {} 795 | il2cppCodeGeneration: {} 796 | managedStrippingLevel: 797 | EmbeddedLinux: 1 798 | GameCoreScarlett: 1 799 | GameCoreXboxOne: 1 800 | Nintendo Switch: 1 801 | PS4: 1 802 | PS5: 1 803 | QNX: 1 804 | Stadia: 1 805 | WebGL: 1 806 | Windows Store Apps: 1 807 | XboxOne: 1 808 | iPhone: 1 809 | tvOS: 1 810 | incrementalIl2cppBuild: {} 811 | suppressCommonWarnings: 1 812 | allowUnsafeCode: 0 813 | useDeterministicCompilation: 1 814 | selectedPlatform: 0 815 | additionalIl2CppArgs: 816 | scriptingRuntimeVersion: 1 817 | gcIncremental: 1 818 | gcWBarrierValidation: 0 819 | apiCompatibilityLevelPerPlatform: {} 820 | m_RenderingPath: 1 821 | m_MobileRenderingPath: 1 822 | metroPackageName: Template_2D 823 | metroPackageVersion: 824 | metroCertificatePath: 825 | metroCertificatePassword: 826 | metroCertificateSubject: 827 | metroCertificateIssuer: 828 | metroCertificateNotAfter: 0000000000000000 829 | metroApplicationDescription: Template_2D 830 | wsaImages: {} 831 | metroTileShortName: 832 | metroTileShowName: 0 833 | metroMediumTileShowName: 0 834 | metroLargeTileShowName: 0 835 | metroWideTileShowName: 0 836 | metroSupportStreamingInstall: 0 837 | metroLastRequiredScene: 0 838 | metroDefaultTileSize: 1 839 | metroTileForegroundText: 2 840 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 841 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, 842 | a: 1} 843 | metroSplashScreenUseBackgroundColor: 0 844 | platformCapabilities: {} 845 | metroTargetDeviceFamilies: {} 846 | metroFTAName: 847 | metroFTAFileTypes: [] 848 | metroProtocolName: 849 | vcxProjDefaultLanguage: 850 | XboxOneProductId: 851 | XboxOneUpdateKey: 852 | XboxOneSandboxId: 853 | XboxOneContentId: 854 | XboxOneTitleId: 855 | XboxOneSCId: 856 | XboxOneGameOsOverridePath: 857 | XboxOnePackagingOverridePath: 858 | XboxOneAppManifestOverridePath: 859 | XboxOneVersion: 1.0.0.0 860 | XboxOnePackageEncryption: 0 861 | XboxOnePackageUpdateGranularity: 2 862 | XboxOneDescription: 863 | XboxOneLanguage: 864 | - enus 865 | XboxOneCapability: [] 866 | XboxOneGameRating: {} 867 | XboxOneIsContentPackage: 0 868 | XboxOneEnhancedXboxCompatibilityMode: 0 869 | XboxOneEnableGPUVariability: 0 870 | XboxOneSockets: {} 871 | XboxOneSplashScreen: {fileID: 0} 872 | XboxOneAllowedProductIds: [] 873 | XboxOnePersistentLocalStorageSize: 0 874 | XboxOneXTitleMemory: 8 875 | XboxOneOverrideIdentityName: 876 | XboxOneOverrideIdentityPublisher: 877 | vrEditorSettings: {} 878 | cloudServicesEnabled: 879 | UNet: 1 880 | luminIcon: 881 | m_Name: 882 | m_ModelFolderPath: 883 | m_PortalFolderPath: 884 | luminCert: 885 | m_CertPath: 886 | m_SignPackage: 1 887 | luminIsChannelApp: 0 888 | luminVersion: 889 | m_VersionCode: 1 890 | m_VersionName: 891 | hmiPlayerDataPath: 892 | hmiForceSRGBBlit: 1 893 | embeddedLinuxEnableGamepadInput: 1 894 | hmiLogStartupTiming: 0 895 | hmiCpuConfiguration: 896 | apiCompatibilityLevel: 6 897 | activeInputHandler: 0 898 | windowsGamepadBackendHint: 0 899 | cloudProjectId: 900 | framebufferDepthMemorylessMode: 0 901 | qualitySettingsNames: [] 902 | projectName: 903 | organizationId: 904 | cloudEnabled: 0 905 | legacyClampBlendShapeWeights: 0 906 | hmiLoadingImage: {fileID: 0} 907 | virtualTexturingSupportEnabled: 0 908 | insecureHttpOption: 0 909 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2022.3.21f1 2 | m_EditorVersionWithRevision: 2022.3.21f1 (bf09ca542b87) 3 | -------------------------------------------------------------------------------- /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 | streamingMipmapsActive: 0 33 | streamingMipmapsAddAllCameras: 1 34 | streamingMipmapsMemoryBudget: 512 35 | streamingMipmapsRenderersPerFrame: 512 36 | streamingMipmapsMaxLevelReduction: 2 37 | streamingMipmapsMaxFileIORequests: 1024 38 | particleRaycastBudget: 4 39 | asyncUploadTimeSlice: 2 40 | asyncUploadBufferSize: 16 41 | asyncUploadPersistentBuffer: 1 42 | resolutionScalingFixedDPIFactor: 1 43 | excludedTargetPlatforms: [] 44 | - serializedVersion: 2 45 | name: Low 46 | pixelLightCount: 0 47 | shadows: 0 48 | shadowResolution: 0 49 | shadowProjection: 1 50 | shadowCascades: 1 51 | shadowDistance: 20 52 | shadowNearPlaneOffset: 3 53 | shadowCascade2Split: 0.33333334 54 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 55 | shadowmaskMode: 0 56 | blendWeights: 2 57 | textureQuality: 0 58 | anisotropicTextures: 0 59 | antiAliasing: 0 60 | softParticles: 0 61 | softVegetation: 0 62 | realtimeReflectionProbes: 0 63 | billboardsFaceCameraPosition: 0 64 | vSyncCount: 0 65 | lodBias: 0.4 66 | maximumLODLevel: 0 67 | streamingMipmapsActive: 0 68 | streamingMipmapsAddAllCameras: 1 69 | streamingMipmapsMemoryBudget: 512 70 | streamingMipmapsRenderersPerFrame: 512 71 | streamingMipmapsMaxLevelReduction: 2 72 | streamingMipmapsMaxFileIORequests: 1024 73 | particleRaycastBudget: 16 74 | asyncUploadTimeSlice: 2 75 | asyncUploadBufferSize: 16 76 | asyncUploadPersistentBuffer: 1 77 | resolutionScalingFixedDPIFactor: 1 78 | excludedTargetPlatforms: [] 79 | - serializedVersion: 2 80 | name: Medium 81 | pixelLightCount: 1 82 | shadows: 0 83 | shadowResolution: 0 84 | shadowProjection: 1 85 | shadowCascades: 1 86 | shadowDistance: 20 87 | shadowNearPlaneOffset: 3 88 | shadowCascade2Split: 0.33333334 89 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 90 | shadowmaskMode: 0 91 | blendWeights: 2 92 | textureQuality: 0 93 | anisotropicTextures: 0 94 | antiAliasing: 0 95 | softParticles: 0 96 | softVegetation: 0 97 | realtimeReflectionProbes: 0 98 | billboardsFaceCameraPosition: 0 99 | vSyncCount: 1 100 | lodBias: 0.7 101 | maximumLODLevel: 0 102 | streamingMipmapsActive: 0 103 | streamingMipmapsAddAllCameras: 1 104 | streamingMipmapsMemoryBudget: 512 105 | streamingMipmapsRenderersPerFrame: 512 106 | streamingMipmapsMaxLevelReduction: 2 107 | streamingMipmapsMaxFileIORequests: 1024 108 | particleRaycastBudget: 64 109 | asyncUploadTimeSlice: 2 110 | asyncUploadBufferSize: 16 111 | asyncUploadPersistentBuffer: 1 112 | resolutionScalingFixedDPIFactor: 1 113 | excludedTargetPlatforms: [] 114 | - serializedVersion: 2 115 | name: High 116 | pixelLightCount: 2 117 | shadows: 0 118 | shadowResolution: 1 119 | shadowProjection: 1 120 | shadowCascades: 2 121 | shadowDistance: 40 122 | shadowNearPlaneOffset: 3 123 | shadowCascade2Split: 0.33333334 124 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 125 | shadowmaskMode: 1 126 | blendWeights: 2 127 | textureQuality: 0 128 | anisotropicTextures: 0 129 | antiAliasing: 0 130 | softParticles: 0 131 | softVegetation: 1 132 | realtimeReflectionProbes: 0 133 | billboardsFaceCameraPosition: 0 134 | vSyncCount: 1 135 | lodBias: 1 136 | maximumLODLevel: 0 137 | streamingMipmapsActive: 0 138 | streamingMipmapsAddAllCameras: 1 139 | streamingMipmapsMemoryBudget: 512 140 | streamingMipmapsRenderersPerFrame: 512 141 | streamingMipmapsMaxLevelReduction: 2 142 | streamingMipmapsMaxFileIORequests: 1024 143 | particleRaycastBudget: 256 144 | asyncUploadTimeSlice: 2 145 | asyncUploadBufferSize: 16 146 | asyncUploadPersistentBuffer: 1 147 | resolutionScalingFixedDPIFactor: 1 148 | excludedTargetPlatforms: [] 149 | - serializedVersion: 2 150 | name: Very High 151 | pixelLightCount: 3 152 | shadows: 0 153 | shadowResolution: 2 154 | shadowProjection: 1 155 | shadowCascades: 2 156 | shadowDistance: 70 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: 0 164 | antiAliasing: 0 165 | softParticles: 0 166 | softVegetation: 1 167 | realtimeReflectionProbes: 0 168 | billboardsFaceCameraPosition: 0 169 | vSyncCount: 1 170 | lodBias: 1.5 171 | maximumLODLevel: 0 172 | streamingMipmapsActive: 0 173 | streamingMipmapsAddAllCameras: 1 174 | streamingMipmapsMemoryBudget: 512 175 | streamingMipmapsRenderersPerFrame: 512 176 | streamingMipmapsMaxLevelReduction: 2 177 | streamingMipmapsMaxFileIORequests: 1024 178 | particleRaycastBudget: 1024 179 | asyncUploadTimeSlice: 2 180 | asyncUploadBufferSize: 16 181 | asyncUploadPersistentBuffer: 1 182 | resolutionScalingFixedDPIFactor: 1 183 | excludedTargetPlatforms: [] 184 | - serializedVersion: 2 185 | name: Ultra 186 | pixelLightCount: 4 187 | shadows: 0 188 | shadowResolution: 0 189 | shadowProjection: 1 190 | shadowCascades: 4 191 | shadowDistance: 150 192 | shadowNearPlaneOffset: 3 193 | shadowCascade2Split: 0.33333334 194 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 195 | shadowmaskMode: 1 196 | blendWeights: 4 197 | textureQuality: 0 198 | anisotropicTextures: 0 199 | antiAliasing: 0 200 | softParticles: 0 201 | softVegetation: 1 202 | realtimeReflectionProbes: 0 203 | billboardsFaceCameraPosition: 0 204 | vSyncCount: 0 205 | lodBias: 2 206 | maximumLODLevel: 0 207 | streamingMipmapsActive: 0 208 | streamingMipmapsAddAllCameras: 1 209 | streamingMipmapsMemoryBudget: 512 210 | streamingMipmapsRenderersPerFrame: 512 211 | streamingMipmapsMaxLevelReduction: 2 212 | streamingMipmapsMaxFileIORequests: 1024 213 | particleRaycastBudget: 4096 214 | asyncUploadTimeSlice: 2 215 | asyncUploadBufferSize: 16 216 | asyncUploadPersistentBuffer: 1 217 | resolutionScalingFixedDPIFactor: 1 218 | excludedTargetPlatforms: [] 219 | m_PerPlatformDefaultQuality: 220 | Android: 2 221 | Nintendo 3DS: 5 222 | Nintendo Switch: 5 223 | PS4: 5 224 | PSM: 5 225 | PSP2: 2 226 | Standalone: 5 227 | Tizen: 2 228 | WebGL: 3 229 | WiiU: 5 230 | Windows Store Apps: 5 231 | XboxOne: 5 232 | iPhone: 2 233 | tvOS: 2 234 | -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /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.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /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 | serializedVersion: 1 7 | m_Enabled: 1 8 | m_TestMode: 0 9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events 10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events 11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com 12 | m_DashboardUrl: https://dashboard.unity3d.com 13 | m_TestInitMode: 0 14 | CrashReportingSettings: 15 | m_EventUrl: https://perf-events.cloud.unity3d.com 16 | m_Enabled: 0 17 | m_LogBufferSize: 10 18 | m_CaptureEditorExceptions: 1 19 | UnityPurchasingSettings: 20 | m_Enabled: 0 21 | m_TestMode: 0 22 | UnityAnalyticsSettings: 23 | m_Enabled: 0 24 | m_TestMode: 0 25 | m_InitializeOnStartup: 1 26 | m_PackageRequiringCoreStatsPresent: 1 27 | UnityAdsSettings: 28 | m_Enabled: 0 29 | m_InitializeOnStartup: 1 30 | m_TestMode: 0 31 | m_IosGameId: 32 | m_AndroidGameId: 33 | m_GameIds: {} 34 | m_GameId: 35 | PerformanceReportingSettings: 36 | m_Enabled: 0 37 | -------------------------------------------------------------------------------- /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_RenderPipeSettingsPath: 10 | m_FixedTimeStep: 0.016666668 11 | m_MaxDeltaTime: 0.05 12 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Unity color picker 2 | 3 | This is a simple color picker for Unity UI (uGUI) that can be used in runtime. It uses a custom shader to make the lines crisp at any resolution. 4 | 5 | ![Screenshot](Screenshot.png?raw=true) 6 | 7 | This project was last edited in Unity 2022.3.21f1. If you have an earlier version, you can use scripts and shader only and they should still work. -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaletin/UnityColorPicker/cd0e292919ccb380523487ec8b0baff4e808b3ab/Screenshot.png --------------------------------------------------------------------------------