├── ProjectSettings ├── boot.config ├── ProjectVersion.txt ├── ClusterInputManager.asset ├── PresetManager.asset ├── EditorBuildSettings.asset ├── XRSettings.asset ├── VersionControlSettings.asset ├── Packages │ └── com.unity.testtools.codecoverage │ │ └── Settings.json ├── TimeManager.asset ├── VFXManager.asset ├── AudioManager.asset ├── TagManager.asset ├── PackageManagerSettings.asset ├── EditorSettings.asset ├── UnityConnectSettings.asset ├── DynamicsManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── GraphicsSettings.asset ├── SceneTemplateSettings.json ├── InputManager.asset ├── QualitySettings.asset └── ProjectSettings.asset ├── GuDing.gif ├── YiDong.gif ├── Assets ├── Art │ ├── joystick_arrow.png │ ├── joystick_handle.png │ ├── joystick_Outline.png │ ├── joystick_arrow.png.meta │ ├── joystick_Outline.png.meta │ └── joystick_handle.png.meta ├── Art.meta ├── Scenes.meta ├── Scenes │ ├── SampleScene.unity.meta │ └── SampleScene.unity ├── Scripts.meta └── Scripts │ ├── JoystickUI.cs.meta │ ├── ClickEventListener.cs.meta │ ├── ClickEventListener.cs │ └── JoystickUI.cs └── README.md /ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GuDing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangyan2021/Joystick/HEAD/GuDing.gif -------------------------------------------------------------------------------- /YiDong.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangyan2021/Joystick/HEAD/YiDong.gif -------------------------------------------------------------------------------- /Assets/Art/joystick_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangyan2021/Joystick/HEAD/Assets/Art/joystick_arrow.png -------------------------------------------------------------------------------- /Assets/Art/joystick_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangyan2021/Joystick/HEAD/Assets/Art/joystick_handle.png -------------------------------------------------------------------------------- /Assets/Art/joystick_Outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangyan2021/Joystick/HEAD/Assets/Art/joystick_Outline.png -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2021.3.33f1 2 | m_EditorVersionWithRevision: 2021.3.33f1 (ee5a2aa03ab2) 3 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /Assets/Art.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dda42616142c4a489b6f4b3750ba703 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e0ec4d509c48db49b4493d970113e1c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fc0d4010bbf28b4594072e72b8655ab 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0dc7279b742df6429de7e7b67311990 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Joystick 2 | UGUI超实用摇杆,希望对大家有帮助。 3 | 4 | 支持平台:Pc、Android、IOS、WebGL等多个平台 5 | 6 | ![image](https://github.com/huangyan2021/Joystick/blob/main/GuDing.gif) 7 | ![image](https://github.com/huangyan2021/Joystick/blob/main/YiDong.gif) -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "m_Name": "Settings", 3 | "m_Path": "ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json", 4 | "m_Dictionary": { 5 | "m_DictionaryValues": [] 6 | } 7 | } -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Assets/Scripts/JoystickUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 328aec08dc770a94f913da6b484f08e2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/ClickEventListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6a5a95fe7038634a9943f85a9617bc3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_StripUpdateShader: {fileID: 0} 10 | m_RenderPipeSettingsPath: 11 | m_FixedTimeStep: 0.016666668 12 | m_MaxDeltaTime: 0.05 13 | -------------------------------------------------------------------------------- /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 | serializedVersion: 2 7 | m_Volume: 1 8 | Rolloff Scale: 1 9 | Doppler Factor: 1 10 | Default Speaker Mode: 2 11 | m_SampleRate: 0 12 | m_DSPBufferSize: 1024 13 | m_VirtualVoiceCount: 512 14 | m_RealVoiceCount: 32 15 | m_SpatializerPlugin: 16 | m_AmbisonicDecoderPlugin: 17 | m_DisableAudio: 0 18 | m_VirtualizeEffects: 1 19 | m_RequestedDSPBufferSize: 1024 20 | -------------------------------------------------------------------------------- /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/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_EnablePackageDependencies: 0 17 | m_AdvancedSettingsExpanded: 1 18 | m_ScopedRegistriesSettingsExpanded: 1 19 | m_SeeAllPackageVersions: 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_UserSelectedRegistryName: 29 | m_UserAddingNewScopedRegistry: 0 30 | m_RegistryInfoDraft: 31 | m_Modified: 0 32 | m_ErrorMessage: 33 | m_UserModificationsInstanceId: -830 34 | m_OriginalInstanceId: -832 35 | m_LoadAssets: 0 36 | -------------------------------------------------------------------------------- /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: 11 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_LineEndingsForNewScripts: 0 10 | m_DefaultBehaviorMode: 0 11 | m_PrefabRegularEnvironment: {fileID: 0} 12 | m_PrefabUIEnvironment: {fileID: 0} 13 | m_SpritePackerMode: 0 14 | m_SpritePackerPaddingPower: 1 15 | m_EtcTextureCompressorBehavior: 1 16 | m_EtcTextureFastCompressor: 1 17 | m_EtcTextureNormalCompressor: 2 18 | m_EtcTextureBestCompressor: 4 19 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp;asmref 20 | m_ProjectGenerationRootNamespace: 21 | m_CollabEditorSettings: 22 | inProgressEnabled: 1 23 | m_EnableTextureStreamingInEditMode: 1 24 | m_EnableTextureStreamingInPlayMode: 1 25 | m_AsyncShaderCompilation: 1 26 | m_EnterPlayModeOptionsEnabled: 0 27 | m_EnterPlayModeOptions: 3 28 | m_ShowLightmapResolutionOverlay: 1 29 | m_UseLegacyProbeSampleCount: 0 30 | m_SerializeInlineMappingsOnOneLine: 1 31 | -------------------------------------------------------------------------------- /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: 0 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: 0 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/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: 11 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 | m_FrictionType: 0 32 | m_EnableEnhancedDeterminism: 0 33 | m_EnableUnifiedHeightmaps: 1 34 | m_DefaultMaxAngluarSpeed: 7 35 | -------------------------------------------------------------------------------- /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/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/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: 13 7 | m_Deferred: 8 | m_Mode: 1 9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} 10 | m_DeferredReflections: 11 | m_Mode: 1 12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} 13 | m_ScreenSpaceShadows: 14 | m_Mode: 1 15 | m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} 16 | m_LegacyDeferred: 17 | m_Mode: 1 18 | m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} 19 | m_DepthNormals: 20 | m_Mode: 1 21 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} 22 | m_MotionVectors: 23 | m_Mode: 1 24 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} 25 | m_LightHalo: 26 | m_Mode: 1 27 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} 28 | m_LensFlare: 29 | m_Mode: 1 30 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} 31 | m_AlwaysIncludedShaders: 32 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 33 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} 34 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} 35 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} 36 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} 37 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 38 | m_PreloadedShaders: [] 39 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, 40 | type: 0} 41 | m_CustomRenderPipeline: {fileID: 0} 42 | m_TransparencySortMode: 0 43 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 44 | m_DefaultRenderingPath: 1 45 | m_DefaultMobileRenderingPath: 1 46 | m_TierSettings: [] 47 | m_LightmapStripping: 0 48 | m_FogStripping: 0 49 | m_InstancingStripping: 0 50 | m_LightmapKeepPlain: 1 51 | m_LightmapKeepDirCombined: 1 52 | m_LightmapKeepDynamicPlain: 1 53 | m_LightmapKeepDynamicDirCombined: 1 54 | m_LightmapKeepShadowMask: 1 55 | m_LightmapKeepSubtractive: 1 56 | m_FogKeepLinear: 1 57 | m_FogKeepExp: 1 58 | m_FogKeepExp2: 1 59 | m_AlbedoSwatchInfos: [] 60 | m_LightsUseLinearIntensity: 0 61 | m_LightsUseColorTemperature: 0 62 | m_LogWhenShaderIsCompiled: 0 63 | m_AllowEnlightenSupportForUpgradedProject: 0 64 | -------------------------------------------------------------------------------- /Assets/Scripts/ClickEventListener.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.EventSystems; 3 | 4 | public class ClickEventListener : MonoBehaviour, IPointerClickHandler, IPointerDownHandler, IPointerUpHandler, 5 | IDragHandler 6 | { 7 | public static ClickEventListener Get(GameObject obj) 8 | { 9 | ClickEventListener listener = obj.GetComponent(); 10 | if (listener == null) 11 | { 12 | listener = obj.AddComponent(); 13 | } 14 | 15 | return listener; 16 | } 17 | 18 | private System.Action _clickedHandler = null; 19 | private System.Action _doubleClickedHandler = null; 20 | private System.Action _onPointerDownHandler = null; 21 | private System.Action _onPointerUpHandler = null; 22 | private System.Action _onDragHandler = null; 23 | bool _isPressed = false; 24 | 25 | public bool IsPressed => _isPressed; 26 | 27 | public void OnPointerClick(PointerEventData eventData) 28 | { 29 | if (eventData.clickCount == 2) 30 | { 31 | if (_doubleClickedHandler != null) 32 | { 33 | _doubleClickedHandler(eventData); 34 | } 35 | } 36 | else 37 | { 38 | if (_clickedHandler != null) 39 | { 40 | _clickedHandler(eventData); 41 | } 42 | } 43 | } 44 | 45 | public void SetClickEventHandler(System.Action handler) 46 | { 47 | _clickedHandler = handler; 48 | } 49 | 50 | public void SetDoubleClickEventHandler(System.Action handler) 51 | { 52 | _doubleClickedHandler = handler; 53 | } 54 | 55 | public void SetPointerDownHandler(System.Action handler) 56 | { 57 | _onPointerDownHandler = handler; 58 | } 59 | 60 | public void SetPointerUpHandler(System.Action handler) 61 | { 62 | _onPointerUpHandler = handler; 63 | } 64 | 65 | public void SetDragHandler(System.Action handler) 66 | { 67 | _onDragHandler = handler; 68 | } 69 | 70 | public void OnPointerDown(PointerEventData eventData) 71 | { 72 | _isPressed = true; 73 | if (_onPointerDownHandler != null) 74 | { 75 | _onPointerDownHandler(eventData); 76 | } 77 | } 78 | 79 | public void OnPointerUp(PointerEventData eventData) 80 | { 81 | _isPressed = false; 82 | if (_onPointerUpHandler != null) 83 | { 84 | _onPointerUpHandler(eventData); 85 | } 86 | } 87 | 88 | public void OnDrag(PointerEventData eventData) 89 | { 90 | if (_onDragHandler != null) 91 | { 92 | _onDragHandler(eventData); 93 | } 94 | } 95 | } -------------------------------------------------------------------------------- /Assets/Scripts/JoystickUI.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.EventSystems; 3 | 4 | public class JoystickUI : MonoBehaviour 5 | { 6 | //摇杆半径 7 | private float m_joyRadius = 100; 8 | //摇杆外围起始位置 9 | private Vector2 m_joyRangeBeginPos = Vector2.zero; 10 | //摇杆中心起始位置 11 | private Vector2 m_joyCenterBeginPos = Vector2.zero; 12 | //接受事件类 13 | private ClickEventListener m_joystickEvent; 14 | //玩家移动方向 15 | public Vector3 playerMoveDir; 16 | //接受点击检测 17 | public RectTransform joystickDrag; 18 | //摇杆背景 19 | public RectTransform joystickBg; 20 | //摇杆移动点 21 | public RectTransform joystickHandle; 22 | //摇杆指针 23 | public Transform joystickArrow; 24 | //UI摄像机 25 | public Camera UICamera; 26 | //是否自由移动 27 | public bool isFree = true; 28 | 29 | private void Start() 30 | { 31 | //拖拽事件相关 32 | m_joystickEvent = ClickEventListener.Get(joystickDrag.gameObject); 33 | m_joystickEvent.SetPointerDownHandler(OnPointerDown); 34 | m_joystickEvent.SetPointerUpHandler(OnPointerUp); 35 | m_joystickEvent.SetDragHandler(OnDrag); 36 | //摇杆检测坐标初始化 37 | joystickDrag.localPosition = Vector3.zero; 38 | //默认显示摇杆背景 39 | joystickBg.gameObject.SetActive(true); 40 | //摇杆相关坐标初始化 41 | RestoreJoystick(); 42 | } 43 | 44 | private void OnPointerDown(PointerEventData eventData) 45 | { 46 | //屏幕坐标和UI坐标的转换 47 | RectTransformUtility.ScreenPointToLocalPointInRectangle(joystickBg, eventData.position, UICamera, out m_joyRangeBeginPos); 48 | if (isFree) 49 | { 50 | //摇杆背景移动到点击位置 51 | joystickBg.anchoredPosition = m_joyRangeBeginPos; 52 | } 53 | //摇杆中心起始位置 54 | m_joyCenterBeginPos = joystickHandle.anchoredPosition; 55 | //显示摇杆 56 | ShowJoystick(true); 57 | } 58 | 59 | private void OnDrag(PointerEventData eventData) 60 | { 61 | //屏幕坐标和UI坐标的转换 62 | RectTransformUtility.ScreenPointToLocalPointInRectangle(joystickBg, eventData.position, UICamera, out Vector2 handlePos); 63 | //摇杆移动方向 64 | var direction = handlePos - m_joyCenterBeginPos; 65 | //摇杆移动距离 66 | var dis = direction.magnitude; 67 | //限制 joystickHandle 移动范围 68 | var radius = Mathf.Clamp(dis, 0, m_joyRadius); 69 | //设置摇杆移动点的移动位置 70 | joystickHandle.anchoredPosition = direction.normalized * radius; 71 | //获取摇杆指针的旋转角度 72 | var angle = Quaternion.FromToRotation(Vector3.up, playerMoveDir).eulerAngles.z; 73 | //设置摇杆指针的旋转角度 74 | joystickArrow.localRotation = Quaternion.Euler(0, 0, angle); 75 | //设置玩家移动方向 76 | playerMoveDir = direction.normalized; 77 | } 78 | 79 | private void OnPointerUp(PointerEventData eventData) 80 | { 81 | RestoreJoystick(); 82 | } 83 | 84 | /// 85 | /// 恢复摇杆默认值 86 | /// 87 | private void RestoreJoystick() 88 | { 89 | ShowJoystick(false); 90 | joystickHandle.anchoredPosition = Vector2.zero; 91 | joystickBg.anchoredPosition = Vector2.zero; 92 | joystickArrow.localEulerAngles = Vector3.zero; 93 | } 94 | 95 | private void ShowJoystick(bool isShow) 96 | { 97 | //如果是自由移动才控制动态显示 98 | if (isFree) 99 | { 100 | joystickBg.gameObject.SetActive(isShow); 101 | } 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /Assets/Art/joystick_arrow.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cecf3d3eb6a98414daeb92be4ffe607a 3 | TextureImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 13 7 | mipmaps: 8 | mipMapMode: 0 9 | enableMipMap: 0 10 | sRGBTexture: 1 11 | linearTexture: 0 12 | fadeOut: 0 13 | borderMipMap: 0 14 | mipMapsPreserveCoverage: 0 15 | alphaTestReferenceValue: 0.5 16 | mipMapFadeDistanceStart: 1 17 | mipMapFadeDistanceEnd: 3 18 | bumpmap: 19 | convertToNormalMap: 0 20 | externalNormalMap: 0 21 | heightScale: 0.25 22 | normalMapFilter: 0 23 | flipGreenChannel: 0 24 | isReadable: 0 25 | streamingMipmaps: 0 26 | streamingMipmapsPriority: 0 27 | vTOnly: 0 28 | ignoreMipmapLimit: 0 29 | grayScaleToAlpha: 0 30 | generateCubemap: 6 31 | cubemapConvolution: 0 32 | seamlessCubemap: 0 33 | textureFormat: 1 34 | maxTextureSize: 2048 35 | textureSettings: 36 | serializedVersion: 2 37 | filterMode: 1 38 | aniso: 1 39 | mipBias: 0 40 | wrapU: 1 41 | wrapV: 1 42 | wrapW: 0 43 | nPOTScale: 0 44 | lightmap: 0 45 | compressionQuality: 50 46 | spriteMode: 1 47 | spriteExtrude: 1 48 | spriteMeshType: 1 49 | alignment: 0 50 | spritePivot: {x: 0.5, y: 0.5} 51 | spritePixelsToUnits: 100 52 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 53 | spriteGenerateFallbackPhysicsShape: 1 54 | alphaUsage: 1 55 | alphaIsTransparency: 1 56 | spriteTessellationDetail: -1 57 | textureType: 8 58 | textureShape: 1 59 | singleChannelComponent: 0 60 | flipbookRows: 1 61 | flipbookColumns: 1 62 | maxTextureSizeSet: 0 63 | compressionQualitySet: 0 64 | textureFormatSet: 0 65 | ignorePngGamma: 0 66 | applyGammaDecoding: 0 67 | swizzle: 50462976 68 | cookieLightType: 0 69 | platformSettings: 70 | - serializedVersion: 3 71 | buildTarget: DefaultTexturePlatform 72 | maxTextureSize: 512 73 | resizeAlgorithm: 0 74 | textureFormat: -1 75 | textureCompression: 1 76 | compressionQuality: 50 77 | crunchedCompression: 0 78 | allowsAlphaSplitting: 0 79 | overridden: 0 80 | ignorePlatformSupport: 0 81 | androidETC2FallbackOverride: 0 82 | forceMaximumCompressionQuality_BC6H_BC7: 0 83 | - serializedVersion: 3 84 | buildTarget: Standalone 85 | maxTextureSize: 2048 86 | resizeAlgorithm: 0 87 | textureFormat: -1 88 | textureCompression: 1 89 | compressionQuality: 50 90 | crunchedCompression: 0 91 | allowsAlphaSplitting: 0 92 | overridden: 0 93 | ignorePlatformSupport: 0 94 | androidETC2FallbackOverride: 0 95 | forceMaximumCompressionQuality_BC6H_BC7: 0 96 | - serializedVersion: 3 97 | buildTarget: WebGL 98 | maxTextureSize: 2048 99 | resizeAlgorithm: 0 100 | textureFormat: -1 101 | textureCompression: 1 102 | compressionQuality: 50 103 | crunchedCompression: 0 104 | allowsAlphaSplitting: 0 105 | overridden: 0 106 | ignorePlatformSupport: 0 107 | androidETC2FallbackOverride: 0 108 | forceMaximumCompressionQuality_BC6H_BC7: 0 109 | - serializedVersion: 3 110 | buildTarget: Android 111 | maxTextureSize: 2048 112 | resizeAlgorithm: 0 113 | textureFormat: -1 114 | textureCompression: 1 115 | compressionQuality: 50 116 | crunchedCompression: 0 117 | allowsAlphaSplitting: 0 118 | overridden: 0 119 | ignorePlatformSupport: 0 120 | androidETC2FallbackOverride: 0 121 | forceMaximumCompressionQuality_BC6H_BC7: 0 122 | spriteSheet: 123 | serializedVersion: 2 124 | sprites: [] 125 | outline: [] 126 | physicsShape: [] 127 | bones: [] 128 | spriteID: 5e97eb03825dee720800000000000000 129 | internalID: 0 130 | vertices: [] 131 | indices: 132 | edges: [] 133 | weights: [] 134 | secondaryTextures: [] 135 | nameFileIdTable: {} 136 | mipmapLimitGroupName: 137 | pSDRemoveMatte: 0 138 | userData: 139 | assetBundleName: 140 | assetBundleVariant: 141 | -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "templatePinStates": [], 3 | "dependencyTypeInfos": [ 4 | { 5 | "userAdded": false, 6 | "type": "UnityEngine.AnimationClip", 7 | "defaultInstantiationMode": 0 8 | }, 9 | { 10 | "userAdded": false, 11 | "type": "UnityEditor.Animations.AnimatorController", 12 | "defaultInstantiationMode": 0 13 | }, 14 | { 15 | "userAdded": false, 16 | "type": "UnityEngine.AnimatorOverrideController", 17 | "defaultInstantiationMode": 0 18 | }, 19 | { 20 | "userAdded": false, 21 | "type": "UnityEditor.Audio.AudioMixerController", 22 | "defaultInstantiationMode": 0 23 | }, 24 | { 25 | "userAdded": false, 26 | "type": "UnityEngine.ComputeShader", 27 | "defaultInstantiationMode": 1 28 | }, 29 | { 30 | "userAdded": false, 31 | "type": "UnityEngine.Cubemap", 32 | "defaultInstantiationMode": 0 33 | }, 34 | { 35 | "userAdded": false, 36 | "type": "UnityEngine.GameObject", 37 | "defaultInstantiationMode": 0 38 | }, 39 | { 40 | "userAdded": false, 41 | "type": "UnityEditor.LightingDataAsset", 42 | "defaultInstantiationMode": 0 43 | }, 44 | { 45 | "userAdded": false, 46 | "type": "UnityEngine.LightingSettings", 47 | "defaultInstantiationMode": 0 48 | }, 49 | { 50 | "userAdded": false, 51 | "type": "UnityEngine.Material", 52 | "defaultInstantiationMode": 0 53 | }, 54 | { 55 | "userAdded": false, 56 | "type": "UnityEditor.MonoScript", 57 | "defaultInstantiationMode": 1 58 | }, 59 | { 60 | "userAdded": false, 61 | "type": "UnityEngine.PhysicMaterial", 62 | "defaultInstantiationMode": 0 63 | }, 64 | { 65 | "userAdded": false, 66 | "type": "UnityEngine.PhysicsMaterial2D", 67 | "defaultInstantiationMode": 0 68 | }, 69 | { 70 | "userAdded": false, 71 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessProfile", 72 | "defaultInstantiationMode": 0 73 | }, 74 | { 75 | "userAdded": false, 76 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessResources", 77 | "defaultInstantiationMode": 0 78 | }, 79 | { 80 | "userAdded": false, 81 | "type": "UnityEngine.Rendering.VolumeProfile", 82 | "defaultInstantiationMode": 0 83 | }, 84 | { 85 | "userAdded": false, 86 | "type": "UnityEditor.SceneAsset", 87 | "defaultInstantiationMode": 1 88 | }, 89 | { 90 | "userAdded": false, 91 | "type": "UnityEngine.Shader", 92 | "defaultInstantiationMode": 1 93 | }, 94 | { 95 | "userAdded": false, 96 | "type": "UnityEngine.ShaderVariantCollection", 97 | "defaultInstantiationMode": 1 98 | }, 99 | { 100 | "userAdded": false, 101 | "type": "UnityEngine.Texture", 102 | "defaultInstantiationMode": 0 103 | }, 104 | { 105 | "userAdded": false, 106 | "type": "UnityEngine.Texture2D", 107 | "defaultInstantiationMode": 0 108 | }, 109 | { 110 | "userAdded": false, 111 | "type": "UnityEngine.Timeline.TimelineAsset", 112 | "defaultInstantiationMode": 0 113 | } 114 | ], 115 | "defaultDependencyTypeInfo": { 116 | "userAdded": false, 117 | "type": "", 118 | "defaultInstantiationMode": 1 119 | }, 120 | "newSceneOverride": 0 121 | } -------------------------------------------------------------------------------- /Assets/Art/joystick_Outline.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b56d9fa0e8bd6e409ed188db38a692c 3 | TextureImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 12 7 | mipmaps: 8 | mipMapMode: 0 9 | enableMipMap: 0 10 | sRGBTexture: 1 11 | linearTexture: 0 12 | fadeOut: 0 13 | borderMipMap: 0 14 | mipMapsPreserveCoverage: 0 15 | alphaTestReferenceValue: 0.5 16 | mipMapFadeDistanceStart: 1 17 | mipMapFadeDistanceEnd: 3 18 | bumpmap: 19 | convertToNormalMap: 0 20 | externalNormalMap: 0 21 | heightScale: 0.25 22 | normalMapFilter: 0 23 | flipGreenChannel: 0 24 | isReadable: 0 25 | streamingMipmaps: 0 26 | streamingMipmapsPriority: 0 27 | vTOnly: 0 28 | ignoreMipmapLimit: 0 29 | grayScaleToAlpha: 0 30 | generateCubemap: 6 31 | cubemapConvolution: 0 32 | seamlessCubemap: 0 33 | textureFormat: 1 34 | maxTextureSize: 2048 35 | textureSettings: 36 | serializedVersion: 2 37 | filterMode: 1 38 | aniso: 1 39 | mipBias: 0 40 | wrapU: 1 41 | wrapV: 1 42 | wrapW: 0 43 | nPOTScale: 0 44 | lightmap: 0 45 | compressionQuality: 50 46 | spriteMode: 1 47 | spriteExtrude: 1 48 | spriteMeshType: 1 49 | alignment: 0 50 | spritePivot: {x: 0.5, y: 0.5} 51 | spritePixelsToUnits: 100 52 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 53 | spriteGenerateFallbackPhysicsShape: 1 54 | alphaUsage: 1 55 | alphaIsTransparency: 1 56 | spriteTessellationDetail: -1 57 | textureType: 8 58 | textureShape: 1 59 | singleChannelComponent: 0 60 | flipbookRows: 1 61 | flipbookColumns: 1 62 | maxTextureSizeSet: 0 63 | compressionQualitySet: 0 64 | textureFormatSet: 0 65 | ignorePngGamma: 0 66 | applyGammaDecoding: 1 67 | swizzle: 50462976 68 | cookieLightType: 1 69 | platformSettings: 70 | - serializedVersion: 3 71 | buildTarget: DefaultTexturePlatform 72 | maxTextureSize: 256 73 | resizeAlgorithm: 0 74 | textureFormat: -1 75 | textureCompression: 1 76 | compressionQuality: 50 77 | crunchedCompression: 0 78 | allowsAlphaSplitting: 0 79 | overridden: 0 80 | ignorePlatformSupport: 0 81 | androidETC2FallbackOverride: 0 82 | forceMaximumCompressionQuality_BC6H_BC7: 0 83 | - serializedVersion: 3 84 | buildTarget: Standalone 85 | maxTextureSize: 256 86 | resizeAlgorithm: 0 87 | textureFormat: -1 88 | textureCompression: 1 89 | compressionQuality: 50 90 | crunchedCompression: 0 91 | allowsAlphaSplitting: 0 92 | overridden: 0 93 | ignorePlatformSupport: 0 94 | androidETC2FallbackOverride: 0 95 | forceMaximumCompressionQuality_BC6H_BC7: 0 96 | - serializedVersion: 3 97 | buildTarget: iPhone 98 | maxTextureSize: 2048 99 | resizeAlgorithm: 0 100 | textureFormat: -1 101 | textureCompression: 1 102 | compressionQuality: 50 103 | crunchedCompression: 0 104 | allowsAlphaSplitting: 0 105 | overridden: 0 106 | ignorePlatformSupport: 0 107 | androidETC2FallbackOverride: 0 108 | forceMaximumCompressionQuality_BC6H_BC7: 1 109 | - serializedVersion: 3 110 | buildTarget: Android 111 | maxTextureSize: 256 112 | resizeAlgorithm: 0 113 | textureFormat: -1 114 | textureCompression: 1 115 | compressionQuality: 50 116 | crunchedCompression: 0 117 | allowsAlphaSplitting: 0 118 | overridden: 0 119 | ignorePlatformSupport: 0 120 | androidETC2FallbackOverride: 0 121 | forceMaximumCompressionQuality_BC6H_BC7: 0 122 | - serializedVersion: 3 123 | buildTarget: WebGL 124 | maxTextureSize: 2048 125 | resizeAlgorithm: 0 126 | textureFormat: -1 127 | textureCompression: 1 128 | compressionQuality: 50 129 | crunchedCompression: 0 130 | allowsAlphaSplitting: 0 131 | overridden: 0 132 | ignorePlatformSupport: 0 133 | androidETC2FallbackOverride: 0 134 | forceMaximumCompressionQuality_BC6H_BC7: 1 135 | - serializedVersion: 3 136 | buildTarget: Server 137 | maxTextureSize: 256 138 | resizeAlgorithm: 0 139 | textureFormat: -1 140 | textureCompression: 1 141 | compressionQuality: 50 142 | crunchedCompression: 0 143 | allowsAlphaSplitting: 0 144 | overridden: 0 145 | ignorePlatformSupport: 0 146 | androidETC2FallbackOverride: 0 147 | forceMaximumCompressionQuality_BC6H_BC7: 0 148 | spriteSheet: 149 | serializedVersion: 2 150 | sprites: [] 151 | outline: [] 152 | physicsShape: [] 153 | bones: [] 154 | spriteID: 5e97eb03825dee720800000000000000 155 | internalID: 0 156 | vertices: [] 157 | indices: 158 | edges: [] 159 | weights: [] 160 | secondaryTextures: [] 161 | nameFileIdTable: {} 162 | mipmapLimitGroupName: 163 | pSDRemoveMatte: 0 164 | userData: 165 | assetBundleName: 166 | assetBundleVariant: 167 | -------------------------------------------------------------------------------- /Assets/Art/joystick_handle.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 010a6e5305fa7004f89c5d317b7b47d4 3 | TextureImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 12 7 | mipmaps: 8 | mipMapMode: 0 9 | enableMipMap: 0 10 | sRGBTexture: 1 11 | linearTexture: 0 12 | fadeOut: 0 13 | borderMipMap: 0 14 | mipMapsPreserveCoverage: 0 15 | alphaTestReferenceValue: 0.5 16 | mipMapFadeDistanceStart: 1 17 | mipMapFadeDistanceEnd: 3 18 | bumpmap: 19 | convertToNormalMap: 0 20 | externalNormalMap: 0 21 | heightScale: 0.25 22 | normalMapFilter: 0 23 | flipGreenChannel: 0 24 | isReadable: 0 25 | streamingMipmaps: 0 26 | streamingMipmapsPriority: 0 27 | vTOnly: 0 28 | ignoreMipmapLimit: 0 29 | grayScaleToAlpha: 0 30 | generateCubemap: 6 31 | cubemapConvolution: 0 32 | seamlessCubemap: 0 33 | textureFormat: 1 34 | maxTextureSize: 2048 35 | textureSettings: 36 | serializedVersion: 2 37 | filterMode: 1 38 | aniso: 1 39 | mipBias: 0 40 | wrapU: 1 41 | wrapV: 1 42 | wrapW: 0 43 | nPOTScale: 0 44 | lightmap: 0 45 | compressionQuality: 50 46 | spriteMode: 1 47 | spriteExtrude: 1 48 | spriteMeshType: 1 49 | alignment: 0 50 | spritePivot: {x: 0.5, y: 0.5} 51 | spritePixelsToUnits: 100 52 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 53 | spriteGenerateFallbackPhysicsShape: 1 54 | alphaUsage: 1 55 | alphaIsTransparency: 1 56 | spriteTessellationDetail: -1 57 | textureType: 8 58 | textureShape: 1 59 | singleChannelComponent: 0 60 | flipbookRows: 1 61 | flipbookColumns: 1 62 | maxTextureSizeSet: 0 63 | compressionQualitySet: 0 64 | textureFormatSet: 0 65 | ignorePngGamma: 0 66 | applyGammaDecoding: 1 67 | swizzle: 50462976 68 | cookieLightType: 1 69 | platformSettings: 70 | - serializedVersion: 3 71 | buildTarget: DefaultTexturePlatform 72 | maxTextureSize: 2048 73 | resizeAlgorithm: 0 74 | textureFormat: -1 75 | textureCompression: 1 76 | compressionQuality: 50 77 | crunchedCompression: 0 78 | allowsAlphaSplitting: 0 79 | overridden: 0 80 | ignorePlatformSupport: 0 81 | androidETC2FallbackOverride: 0 82 | forceMaximumCompressionQuality_BC6H_BC7: 1 83 | - serializedVersion: 3 84 | buildTarget: Standalone 85 | maxTextureSize: 2048 86 | resizeAlgorithm: 0 87 | textureFormat: -1 88 | textureCompression: 1 89 | compressionQuality: 50 90 | crunchedCompression: 0 91 | allowsAlphaSplitting: 0 92 | overridden: 0 93 | ignorePlatformSupport: 0 94 | androidETC2FallbackOverride: 0 95 | forceMaximumCompressionQuality_BC6H_BC7: 1 96 | - serializedVersion: 3 97 | buildTarget: iPhone 98 | maxTextureSize: 2048 99 | resizeAlgorithm: 0 100 | textureFormat: -1 101 | textureCompression: 1 102 | compressionQuality: 50 103 | crunchedCompression: 0 104 | allowsAlphaSplitting: 0 105 | overridden: 0 106 | ignorePlatformSupport: 0 107 | androidETC2FallbackOverride: 0 108 | forceMaximumCompressionQuality_BC6H_BC7: 1 109 | - serializedVersion: 3 110 | buildTarget: Android 111 | maxTextureSize: 2048 112 | resizeAlgorithm: 0 113 | textureFormat: -1 114 | textureCompression: 1 115 | compressionQuality: 50 116 | crunchedCompression: 0 117 | allowsAlphaSplitting: 0 118 | overridden: 0 119 | ignorePlatformSupport: 0 120 | androidETC2FallbackOverride: 0 121 | forceMaximumCompressionQuality_BC6H_BC7: 1 122 | - serializedVersion: 3 123 | buildTarget: WebGL 124 | maxTextureSize: 2048 125 | resizeAlgorithm: 0 126 | textureFormat: -1 127 | textureCompression: 1 128 | compressionQuality: 50 129 | crunchedCompression: 0 130 | allowsAlphaSplitting: 0 131 | overridden: 0 132 | ignorePlatformSupport: 0 133 | androidETC2FallbackOverride: 0 134 | forceMaximumCompressionQuality_BC6H_BC7: 1 135 | - serializedVersion: 3 136 | buildTarget: Server 137 | maxTextureSize: 2048 138 | resizeAlgorithm: 0 139 | textureFormat: -1 140 | textureCompression: 1 141 | compressionQuality: 50 142 | crunchedCompression: 0 143 | allowsAlphaSplitting: 0 144 | overridden: 0 145 | ignorePlatformSupport: 0 146 | androidETC2FallbackOverride: 0 147 | forceMaximumCompressionQuality_BC6H_BC7: 1 148 | spriteSheet: 149 | serializedVersion: 2 150 | sprites: [] 151 | outline: [] 152 | physicsShape: [] 153 | bones: [] 154 | spriteID: 5e97eb03825dee720800000000000000 155 | internalID: 0 156 | vertices: [] 157 | indices: 158 | edges: [] 159 | weights: [] 160 | secondaryTextures: [] 161 | nameFileIdTable: {} 162 | mipmapLimitGroupName: 163 | pSDRemoveMatte: 0 164 | userData: 165 | assetBundleName: 166 | assetBundleVariant: 167 | -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!13 &1 4 | InputManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Axes: 8 | - serializedVersion: 3 9 | m_Name: Horizontal 10 | descriptiveName: 11 | descriptiveNegativeName: 12 | negativeButton: left 13 | positiveButton: right 14 | altNegativeButton: a 15 | altPositiveButton: d 16 | gravity: 3 17 | dead: 0.001 18 | sensitivity: 3 19 | snap: 1 20 | invert: 0 21 | type: 0 22 | axis: 0 23 | joyNum: 0 24 | - serializedVersion: 3 25 | m_Name: Vertical 26 | descriptiveName: 27 | descriptiveNegativeName: 28 | negativeButton: down 29 | positiveButton: up 30 | altNegativeButton: s 31 | altPositiveButton: w 32 | gravity: 3 33 | dead: 0.001 34 | sensitivity: 3 35 | snap: 1 36 | invert: 0 37 | type: 0 38 | axis: 0 39 | joyNum: 0 40 | - serializedVersion: 3 41 | m_Name: Fire1 42 | descriptiveName: 43 | descriptiveNegativeName: 44 | negativeButton: 45 | positiveButton: left ctrl 46 | altNegativeButton: 47 | altPositiveButton: mouse 0 48 | gravity: 1000 49 | dead: 0.001 50 | sensitivity: 1000 51 | snap: 0 52 | invert: 0 53 | type: 0 54 | axis: 0 55 | joyNum: 0 56 | - serializedVersion: 3 57 | m_Name: Fire2 58 | descriptiveName: 59 | descriptiveNegativeName: 60 | negativeButton: 61 | positiveButton: left alt 62 | altNegativeButton: 63 | altPositiveButton: mouse 1 64 | gravity: 1000 65 | dead: 0.001 66 | sensitivity: 1000 67 | snap: 0 68 | invert: 0 69 | type: 0 70 | axis: 0 71 | joyNum: 0 72 | - serializedVersion: 3 73 | m_Name: Fire3 74 | descriptiveName: 75 | descriptiveNegativeName: 76 | negativeButton: 77 | positiveButton: left shift 78 | altNegativeButton: 79 | altPositiveButton: mouse 2 80 | gravity: 1000 81 | dead: 0.001 82 | sensitivity: 1000 83 | snap: 0 84 | invert: 0 85 | type: 0 86 | axis: 0 87 | joyNum: 0 88 | - serializedVersion: 3 89 | m_Name: Jump 90 | descriptiveName: 91 | descriptiveNegativeName: 92 | negativeButton: 93 | positiveButton: space 94 | altNegativeButton: 95 | altPositiveButton: 96 | gravity: 1000 97 | dead: 0.001 98 | sensitivity: 1000 99 | snap: 0 100 | invert: 0 101 | type: 0 102 | axis: 0 103 | joyNum: 0 104 | - serializedVersion: 3 105 | m_Name: Mouse X 106 | descriptiveName: 107 | descriptiveNegativeName: 108 | negativeButton: 109 | positiveButton: 110 | altNegativeButton: 111 | altPositiveButton: 112 | gravity: 0 113 | dead: 0 114 | sensitivity: 0.1 115 | snap: 0 116 | invert: 0 117 | type: 1 118 | axis: 0 119 | joyNum: 0 120 | - serializedVersion: 3 121 | m_Name: Mouse Y 122 | descriptiveName: 123 | descriptiveNegativeName: 124 | negativeButton: 125 | positiveButton: 126 | altNegativeButton: 127 | altPositiveButton: 128 | gravity: 0 129 | dead: 0 130 | sensitivity: 0.1 131 | snap: 0 132 | invert: 0 133 | type: 1 134 | axis: 1 135 | joyNum: 0 136 | - serializedVersion: 3 137 | m_Name: Mouse ScrollWheel 138 | descriptiveName: 139 | descriptiveNegativeName: 140 | negativeButton: 141 | positiveButton: 142 | altNegativeButton: 143 | altPositiveButton: 144 | gravity: 0 145 | dead: 0 146 | sensitivity: 0.1 147 | snap: 0 148 | invert: 0 149 | type: 1 150 | axis: 2 151 | joyNum: 0 152 | - serializedVersion: 3 153 | m_Name: Horizontal 154 | descriptiveName: 155 | descriptiveNegativeName: 156 | negativeButton: 157 | positiveButton: 158 | altNegativeButton: 159 | altPositiveButton: 160 | gravity: 0 161 | dead: 0.19 162 | sensitivity: 1 163 | snap: 0 164 | invert: 0 165 | type: 2 166 | axis: 0 167 | joyNum: 0 168 | - serializedVersion: 3 169 | m_Name: Vertical 170 | descriptiveName: 171 | descriptiveNegativeName: 172 | negativeButton: 173 | positiveButton: 174 | altNegativeButton: 175 | altPositiveButton: 176 | gravity: 0 177 | dead: 0.19 178 | sensitivity: 1 179 | snap: 0 180 | invert: 1 181 | type: 2 182 | axis: 1 183 | joyNum: 0 184 | - serializedVersion: 3 185 | m_Name: Fire1 186 | descriptiveName: 187 | descriptiveNegativeName: 188 | negativeButton: 189 | positiveButton: joystick button 0 190 | altNegativeButton: 191 | altPositiveButton: 192 | gravity: 1000 193 | dead: 0.001 194 | sensitivity: 1000 195 | snap: 0 196 | invert: 0 197 | type: 0 198 | axis: 0 199 | joyNum: 0 200 | - serializedVersion: 3 201 | m_Name: Fire2 202 | descriptiveName: 203 | descriptiveNegativeName: 204 | negativeButton: 205 | positiveButton: joystick button 1 206 | altNegativeButton: 207 | altPositiveButton: 208 | gravity: 1000 209 | dead: 0.001 210 | sensitivity: 1000 211 | snap: 0 212 | invert: 0 213 | type: 0 214 | axis: 0 215 | joyNum: 0 216 | - serializedVersion: 3 217 | m_Name: Fire3 218 | descriptiveName: 219 | descriptiveNegativeName: 220 | negativeButton: 221 | positiveButton: joystick button 2 222 | altNegativeButton: 223 | altPositiveButton: 224 | gravity: 1000 225 | dead: 0.001 226 | sensitivity: 1000 227 | snap: 0 228 | invert: 0 229 | type: 0 230 | axis: 0 231 | joyNum: 0 232 | - serializedVersion: 3 233 | m_Name: Jump 234 | descriptiveName: 235 | descriptiveNegativeName: 236 | negativeButton: 237 | positiveButton: joystick button 3 238 | altNegativeButton: 239 | altPositiveButton: 240 | gravity: 1000 241 | dead: 0.001 242 | sensitivity: 1000 243 | snap: 0 244 | invert: 0 245 | type: 0 246 | axis: 0 247 | joyNum: 0 248 | - serializedVersion: 3 249 | m_Name: Submit 250 | descriptiveName: 251 | descriptiveNegativeName: 252 | negativeButton: 253 | positiveButton: return 254 | altNegativeButton: 255 | altPositiveButton: joystick button 0 256 | gravity: 1000 257 | dead: 0.001 258 | sensitivity: 1000 259 | snap: 0 260 | invert: 0 261 | type: 0 262 | axis: 0 263 | joyNum: 0 264 | - serializedVersion: 3 265 | m_Name: Submit 266 | descriptiveName: 267 | descriptiveNegativeName: 268 | negativeButton: 269 | positiveButton: enter 270 | altNegativeButton: 271 | altPositiveButton: space 272 | gravity: 1000 273 | dead: 0.001 274 | sensitivity: 1000 275 | snap: 0 276 | invert: 0 277 | type: 0 278 | axis: 0 279 | joyNum: 0 280 | - serializedVersion: 3 281 | m_Name: Cancel 282 | descriptiveName: 283 | descriptiveNegativeName: 284 | negativeButton: 285 | positiveButton: escape 286 | altNegativeButton: 287 | altPositiveButton: joystick button 1 288 | gravity: 1000 289 | dead: 0.001 290 | sensitivity: 1000 291 | snap: 0 292 | invert: 0 293 | type: 0 294 | axis: 0 295 | joyNum: 0 296 | -------------------------------------------------------------------------------- /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: 1 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: 1 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: 2 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: 1 129 | antiAliasing: 0 130 | softParticles: 0 131 | softVegetation: 1 132 | realtimeReflectionProbes: 1 133 | billboardsFaceCameraPosition: 1 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: 2 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: 2 164 | antiAliasing: 2 165 | softParticles: 1 166 | softVegetation: 1 167 | realtimeReflectionProbes: 1 168 | billboardsFaceCameraPosition: 1 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: 2 188 | shadowResolution: 2 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: 2 199 | antiAliasing: 2 200 | softParticles: 1 201 | softVegetation: 1 202 | realtimeReflectionProbes: 1 203 | billboardsFaceCameraPosition: 1 204 | vSyncCount: 1 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 | Lumin: 5 222 | GameCoreScarlett: 5 223 | GameCoreXboxOne: 5 224 | Nintendo 3DS: 5 225 | Nintendo Switch: 5 226 | PS4: 5 227 | PS5: 5 228 | Stadia: 5 229 | Standalone: 5 230 | WebGL: 3 231 | Windows Store Apps: 5 232 | XboxOne: 5 233 | iPhone: 2 234 | tvOS: 2 235 | -------------------------------------------------------------------------------- /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: 24 7 | productGUID: 09bf1d9239250294db25ad97dba72e76 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: Joystick 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: 1920 46 | defaultScreenHeight: 1080 47 | defaultScreenWidthWeb: 960 48 | defaultScreenHeightWeb: 600 49 | m_StereoRenderingPath: 0 50 | m_ActiveColorSpace: 1 51 | unsupportedMSAAFallback: 0 52 | m_MTRendering: 1 53 | mipStripping: 0 54 | numberOfMipsStripped: 0 55 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 56 | iosShowActivityIndicatorOnLoading: -1 57 | androidShowActivityIndicatorOnLoading: -1 58 | iosUseCustomAppBackgroundBehavior: 0 59 | iosAllowHTTPDownload: 1 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: 1 70 | androidUseSwappy: 1 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: 1 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 | switchNVNMaxPublicTextureIDCount: 0 124 | switchNVNMaxPublicSamplerIDCount: 0 125 | switchMaxWorkerMultiple: 8 126 | stadiaPresentMode: 0 127 | stadiaTargetFramerate: 0 128 | vulkanNumSwapchainBuffers: 3 129 | vulkanEnableSetSRGBWrite: 0 130 | vulkanEnablePreTransform: 1 131 | vulkanEnableLateAcquireNextImage: 0 132 | vulkanEnableCommandBufferRecycling: 1 133 | m_SupportedAspectRatios: 134 | 4:3: 1 135 | 5:4: 1 136 | 16:10: 1 137 | 16:9: 1 138 | Others: 1 139 | bundleVersion: 0.1 140 | preloadedAssets: [] 141 | metroInputSource: 0 142 | wsaTransparentSwapchain: 0 143 | m_HolographicPauseOnTrackingLoss: 1 144 | xboxOneDisableKinectGpuReservation: 1 145 | xboxOneEnable7thCore: 1 146 | vrSettings: 147 | enable360StereoCapture: 0 148 | isWsaHolographicRemotingEnabled: 0 149 | enableFrameTimingStats: 0 150 | enableOpenGLProfilerGPURecorders: 1 151 | useHDRDisplay: 0 152 | D3DHDRBitDepth: 0 153 | m_ColorGamuts: 00000000 154 | targetPixelDensity: 30 155 | resolutionScalingMode: 0 156 | resetResolutionOnWindowResize: 0 157 | androidSupportedAspectRatio: 1 158 | androidMaxAspectRatio: 2.1 159 | applicationIdentifier: {} 160 | buildNumber: 161 | Standalone: 0 162 | iPhone: 0 163 | tvOS: 0 164 | overrideDefaultApplicationIdentifier: 0 165 | AndroidBundleVersionCode: 1 166 | AndroidMinSdkVersion: 22 167 | AndroidTargetSdkVersion: 0 168 | AndroidPreferredInstallLocation: 1 169 | aotOptions: 170 | stripEngineCode: 1 171 | iPhoneStrippingLevel: 0 172 | iPhoneScriptCallOptimization: 0 173 | ForceInternetPermission: 0 174 | ForceSDCardPermission: 0 175 | CreateWallpaper: 0 176 | APKExpansionFiles: 0 177 | keepLoadedShadersAlive: 0 178 | StripUnusedMeshComponents: 1 179 | VertexChannelCompressionMask: 4054 180 | iPhoneSdkVersion: 988 181 | iOSTargetOSVersionString: 12.0 182 | tvOSSdkVersion: 0 183 | tvOSRequireExtendedGameController: 0 184 | tvOSTargetOSVersionString: 12.0 185 | uIPrerenderedIcon: 0 186 | uIRequiresPersistentWiFi: 0 187 | uIRequiresFullScreen: 1 188 | uIStatusBarHidden: 1 189 | uIExitOnSuspend: 0 190 | uIStatusBarStyle: 0 191 | appleTVSplashScreen: {fileID: 0} 192 | appleTVSplashScreen2x: {fileID: 0} 193 | tvOSSmallIconLayers: [] 194 | tvOSSmallIconLayers2x: [] 195 | tvOSLargeIconLayers: [] 196 | tvOSLargeIconLayers2x: [] 197 | tvOSTopShelfImageLayers: [] 198 | tvOSTopShelfImageLayers2x: [] 199 | tvOSTopShelfImageWideLayers: [] 200 | tvOSTopShelfImageWideLayers2x: [] 201 | iOSLaunchScreenType: 0 202 | iOSLaunchScreenPortrait: {fileID: 0} 203 | iOSLaunchScreenLandscape: {fileID: 0} 204 | iOSLaunchScreenBackgroundColor: 205 | serializedVersion: 2 206 | rgba: 0 207 | iOSLaunchScreenFillPct: 100 208 | iOSLaunchScreenSize: 100 209 | iOSLaunchScreenCustomXibPath: 210 | iOSLaunchScreeniPadType: 0 211 | iOSLaunchScreeniPadImage: {fileID: 0} 212 | iOSLaunchScreeniPadBackgroundColor: 213 | serializedVersion: 2 214 | rgba: 0 215 | iOSLaunchScreeniPadFillPct: 100 216 | iOSLaunchScreeniPadSize: 100 217 | iOSLaunchScreeniPadCustomXibPath: 218 | iOSLaunchScreenCustomStoryboardPath: 219 | iOSLaunchScreeniPadCustomStoryboardPath: 220 | iOSDeviceRequirements: [] 221 | iOSURLSchemes: [] 222 | macOSURLSchemes: [] 223 | iOSBackgroundModes: 0 224 | iOSMetalForceHardShadows: 0 225 | metalEditorSupport: 1 226 | metalAPIValidation: 1 227 | iOSRenderExtraFrameOnPause: 0 228 | iosCopyPluginsCodeInsteadOfSymlink: 0 229 | appleDeveloperTeamID: 230 | iOSManualSigningProvisioningProfileID: 231 | tvOSManualSigningProvisioningProfileID: 232 | iOSManualSigningProvisioningProfileType: 0 233 | tvOSManualSigningProvisioningProfileType: 0 234 | appleEnableAutomaticSigning: 0 235 | iOSRequireARKit: 0 236 | iOSAutomaticallyDetectAndAddCapabilities: 1 237 | appleEnableProMotion: 0 238 | shaderPrecisionModel: 0 239 | clonedFromGUID: c0afd0d1d80e3634a9dac47e8a0426ea 240 | templatePackageId: com.unity.template.3d@8.1.3 241 | templateDefaultScene: Assets/Scenes/SampleScene.unity 242 | useCustomMainManifest: 0 243 | useCustomLauncherManifest: 0 244 | useCustomMainGradleTemplate: 0 245 | useCustomLauncherGradleManifest: 0 246 | useCustomBaseGradleTemplate: 0 247 | useCustomGradlePropertiesTemplate: 0 248 | useCustomProguardFile: 0 249 | AndroidTargetArchitectures: 1 250 | AndroidTargetDevices: 0 251 | AndroidSplashScreenScale: 0 252 | androidSplashScreen: {fileID: 0} 253 | AndroidKeystoreName: 254 | AndroidKeyaliasName: 255 | AndroidBuildApkPerCpuArchitecture: 0 256 | AndroidTVCompatibility: 0 257 | AndroidIsGame: 1 258 | AndroidEnableTango: 0 259 | androidEnableBanner: 1 260 | androidUseLowAccuracyLocation: 0 261 | androidUseCustomKeystore: 0 262 | m_AndroidBanners: 263 | - width: 320 264 | height: 180 265 | banner: {fileID: 0} 266 | androidGamepadSupportLevel: 0 267 | chromeosInputEmulation: 1 268 | AndroidMinifyWithR8: 0 269 | AndroidMinifyRelease: 0 270 | AndroidMinifyDebug: 0 271 | AndroidValidateAppBundleSize: 1 272 | AndroidAppBundleSizeToValidate: 150 273 | m_BuildTargetIcons: [] 274 | m_BuildTargetPlatformIcons: 275 | - m_BuildTarget: Android 276 | m_Icons: 277 | - m_Textures: [] 278 | m_Width: 432 279 | m_Height: 432 280 | m_Kind: 2 281 | m_SubKind: 282 | - m_Textures: [] 283 | m_Width: 324 284 | m_Height: 324 285 | m_Kind: 2 286 | m_SubKind: 287 | - m_Textures: [] 288 | m_Width: 216 289 | m_Height: 216 290 | m_Kind: 2 291 | m_SubKind: 292 | - m_Textures: [] 293 | m_Width: 162 294 | m_Height: 162 295 | m_Kind: 2 296 | m_SubKind: 297 | - m_Textures: [] 298 | m_Width: 108 299 | m_Height: 108 300 | m_Kind: 2 301 | m_SubKind: 302 | - m_Textures: [] 303 | m_Width: 81 304 | m_Height: 81 305 | m_Kind: 2 306 | m_SubKind: 307 | - m_Textures: [] 308 | m_Width: 192 309 | m_Height: 192 310 | m_Kind: 1 311 | m_SubKind: 312 | - m_Textures: [] 313 | m_Width: 144 314 | m_Height: 144 315 | m_Kind: 1 316 | m_SubKind: 317 | - m_Textures: [] 318 | m_Width: 96 319 | m_Height: 96 320 | m_Kind: 1 321 | m_SubKind: 322 | - m_Textures: [] 323 | m_Width: 72 324 | m_Height: 72 325 | m_Kind: 1 326 | m_SubKind: 327 | - m_Textures: [] 328 | m_Width: 48 329 | m_Height: 48 330 | m_Kind: 1 331 | m_SubKind: 332 | - m_Textures: [] 333 | m_Width: 36 334 | m_Height: 36 335 | m_Kind: 1 336 | m_SubKind: 337 | - m_Textures: [] 338 | m_Width: 192 339 | m_Height: 192 340 | m_Kind: 0 341 | m_SubKind: 342 | - m_Textures: [] 343 | m_Width: 144 344 | m_Height: 144 345 | m_Kind: 0 346 | m_SubKind: 347 | - m_Textures: [] 348 | m_Width: 96 349 | m_Height: 96 350 | m_Kind: 0 351 | m_SubKind: 352 | - m_Textures: [] 353 | m_Width: 72 354 | m_Height: 72 355 | m_Kind: 0 356 | m_SubKind: 357 | - m_Textures: [] 358 | m_Width: 48 359 | m_Height: 48 360 | m_Kind: 0 361 | m_SubKind: 362 | - m_Textures: [] 363 | m_Width: 36 364 | m_Height: 36 365 | m_Kind: 0 366 | m_SubKind: 367 | m_BuildTargetBatching: 368 | - m_BuildTarget: Standalone 369 | m_StaticBatching: 1 370 | m_DynamicBatching: 0 371 | - m_BuildTarget: tvOS 372 | m_StaticBatching: 1 373 | m_DynamicBatching: 0 374 | - m_BuildTarget: Android 375 | m_StaticBatching: 1 376 | m_DynamicBatching: 0 377 | - m_BuildTarget: iPhone 378 | m_StaticBatching: 1 379 | m_DynamicBatching: 0 380 | - m_BuildTarget: WebGL 381 | m_StaticBatching: 0 382 | m_DynamicBatching: 0 383 | m_BuildTargetShaderSettings: [] 384 | m_BuildTargetGraphicsJobs: 385 | - m_BuildTarget: MacStandaloneSupport 386 | m_GraphicsJobs: 0 387 | - m_BuildTarget: Switch 388 | m_GraphicsJobs: 1 389 | - m_BuildTarget: MetroSupport 390 | m_GraphicsJobs: 1 391 | - m_BuildTarget: AppleTVSupport 392 | m_GraphicsJobs: 0 393 | - m_BuildTarget: BJMSupport 394 | m_GraphicsJobs: 1 395 | - m_BuildTarget: LinuxStandaloneSupport 396 | m_GraphicsJobs: 1 397 | - m_BuildTarget: PS4Player 398 | m_GraphicsJobs: 1 399 | - m_BuildTarget: iOSSupport 400 | m_GraphicsJobs: 0 401 | - m_BuildTarget: WindowsStandaloneSupport 402 | m_GraphicsJobs: 1 403 | - m_BuildTarget: XboxOnePlayer 404 | m_GraphicsJobs: 1 405 | - m_BuildTarget: LuminSupport 406 | m_GraphicsJobs: 0 407 | - m_BuildTarget: AndroidPlayer 408 | m_GraphicsJobs: 0 409 | - m_BuildTarget: WebGLSupport 410 | m_GraphicsJobs: 0 411 | m_BuildTargetGraphicsJobMode: 412 | - m_BuildTarget: PS4Player 413 | m_GraphicsJobMode: 0 414 | - m_BuildTarget: XboxOnePlayer 415 | m_GraphicsJobMode: 0 416 | m_BuildTargetGraphicsAPIs: 417 | - m_BuildTarget: AndroidPlayer 418 | m_APIs: 150000000b000000 419 | m_Automatic: 1 420 | - m_BuildTarget: iOSSupport 421 | m_APIs: 10000000 422 | m_Automatic: 1 423 | - m_BuildTarget: AppleTVSupport 424 | m_APIs: 10000000 425 | m_Automatic: 1 426 | - m_BuildTarget: WebGLSupport 427 | m_APIs: 0b000000 428 | m_Automatic: 1 429 | m_BuildTargetVRSettings: 430 | - m_BuildTarget: Standalone 431 | m_Enabled: 0 432 | m_Devices: 433 | - Oculus 434 | - OpenVR 435 | m_DefaultShaderChunkSizeInMB: 16 436 | m_DefaultShaderChunkCount: 0 437 | openGLRequireES31: 0 438 | openGLRequireES31AEP: 0 439 | openGLRequireES32: 0 440 | m_TemplateCustomTags: {} 441 | mobileMTRendering: 442 | Android: 1 443 | iPhone: 1 444 | tvOS: 1 445 | m_BuildTargetGroupLightmapEncodingQuality: 446 | - m_BuildTarget: Android 447 | m_EncodingQuality: 1 448 | - m_BuildTarget: iPhone 449 | m_EncodingQuality: 1 450 | - m_BuildTarget: tvOS 451 | m_EncodingQuality: 1 452 | m_BuildTargetGroupLightmapSettings: [] 453 | m_BuildTargetNormalMapEncoding: 454 | - m_BuildTarget: Android 455 | m_Encoding: 1 456 | - m_BuildTarget: iPhone 457 | m_Encoding: 1 458 | - m_BuildTarget: tvOS 459 | m_Encoding: 1 460 | m_BuildTargetDefaultTextureCompressionFormat: 461 | - m_BuildTarget: Android 462 | m_Format: 3 463 | playModeTestRunnerEnabled: 0 464 | runPlayModeTestAsEditModeTest: 0 465 | actionOnDotNetUnhandledException: 1 466 | enableInternalProfiler: 0 467 | logObjCUncaughtExceptions: 1 468 | enableCrashReportAPI: 0 469 | cameraUsageDescription: 470 | locationUsageDescription: 471 | microphoneUsageDescription: 472 | bluetoothUsageDescription: 473 | switchNMETAOverride: 474 | switchNetLibKey: 475 | switchSocketMemoryPoolSize: 6144 476 | switchSocketAllocatorPoolSize: 128 477 | switchSocketConcurrencyLimit: 14 478 | switchScreenResolutionBehavior: 2 479 | switchUseCPUProfiler: 0 480 | switchEnableFileSystemTrace: 0 481 | switchLTOSetting: 0 482 | switchApplicationID: 0x01004b9000490000 483 | switchNSODependencies: 484 | switchTitleNames_0: 485 | switchTitleNames_1: 486 | switchTitleNames_2: 487 | switchTitleNames_3: 488 | switchTitleNames_4: 489 | switchTitleNames_5: 490 | switchTitleNames_6: 491 | switchTitleNames_7: 492 | switchTitleNames_8: 493 | switchTitleNames_9: 494 | switchTitleNames_10: 495 | switchTitleNames_11: 496 | switchTitleNames_12: 497 | switchTitleNames_13: 498 | switchTitleNames_14: 499 | switchTitleNames_15: 500 | switchPublisherNames_0: 501 | switchPublisherNames_1: 502 | switchPublisherNames_2: 503 | switchPublisherNames_3: 504 | switchPublisherNames_4: 505 | switchPublisherNames_5: 506 | switchPublisherNames_6: 507 | switchPublisherNames_7: 508 | switchPublisherNames_8: 509 | switchPublisherNames_9: 510 | switchPublisherNames_10: 511 | switchPublisherNames_11: 512 | switchPublisherNames_12: 513 | switchPublisherNames_13: 514 | switchPublisherNames_14: 515 | switchPublisherNames_15: 516 | switchIcons_0: {fileID: 0} 517 | switchIcons_1: {fileID: 0} 518 | switchIcons_2: {fileID: 0} 519 | switchIcons_3: {fileID: 0} 520 | switchIcons_4: {fileID: 0} 521 | switchIcons_5: {fileID: 0} 522 | switchIcons_6: {fileID: 0} 523 | switchIcons_7: {fileID: 0} 524 | switchIcons_8: {fileID: 0} 525 | switchIcons_9: {fileID: 0} 526 | switchIcons_10: {fileID: 0} 527 | switchIcons_11: {fileID: 0} 528 | switchIcons_12: {fileID: 0} 529 | switchIcons_13: {fileID: 0} 530 | switchIcons_14: {fileID: 0} 531 | switchIcons_15: {fileID: 0} 532 | switchSmallIcons_0: {fileID: 0} 533 | switchSmallIcons_1: {fileID: 0} 534 | switchSmallIcons_2: {fileID: 0} 535 | switchSmallIcons_3: {fileID: 0} 536 | switchSmallIcons_4: {fileID: 0} 537 | switchSmallIcons_5: {fileID: 0} 538 | switchSmallIcons_6: {fileID: 0} 539 | switchSmallIcons_7: {fileID: 0} 540 | switchSmallIcons_8: {fileID: 0} 541 | switchSmallIcons_9: {fileID: 0} 542 | switchSmallIcons_10: {fileID: 0} 543 | switchSmallIcons_11: {fileID: 0} 544 | switchSmallIcons_12: {fileID: 0} 545 | switchSmallIcons_13: {fileID: 0} 546 | switchSmallIcons_14: {fileID: 0} 547 | switchSmallIcons_15: {fileID: 0} 548 | switchManualHTML: 549 | switchAccessibleURLs: 550 | switchLegalInformation: 551 | switchMainThreadStackSize: 1048576 552 | switchPresenceGroupId: 553 | switchLogoHandling: 0 554 | switchReleaseVersion: 0 555 | switchDisplayVersion: 1.0.0 556 | switchStartupUserAccount: 0 557 | switchSupportedLanguagesMask: 0 558 | switchLogoType: 0 559 | switchApplicationErrorCodeCategory: 560 | switchUserAccountSaveDataSize: 0 561 | switchUserAccountSaveDataJournalSize: 0 562 | switchApplicationAttribute: 0 563 | switchCardSpecSize: -1 564 | switchCardSpecClock: -1 565 | switchRatingsMask: 0 566 | switchRatingsInt_0: 0 567 | switchRatingsInt_1: 0 568 | switchRatingsInt_2: 0 569 | switchRatingsInt_3: 0 570 | switchRatingsInt_4: 0 571 | switchRatingsInt_5: 0 572 | switchRatingsInt_6: 0 573 | switchRatingsInt_7: 0 574 | switchRatingsInt_8: 0 575 | switchRatingsInt_9: 0 576 | switchRatingsInt_10: 0 577 | switchRatingsInt_11: 0 578 | switchRatingsInt_12: 0 579 | switchLocalCommunicationIds_0: 580 | switchLocalCommunicationIds_1: 581 | switchLocalCommunicationIds_2: 582 | switchLocalCommunicationIds_3: 583 | switchLocalCommunicationIds_4: 584 | switchLocalCommunicationIds_5: 585 | switchLocalCommunicationIds_6: 586 | switchLocalCommunicationIds_7: 587 | switchParentalControl: 0 588 | switchAllowsScreenshot: 1 589 | switchAllowsVideoCapturing: 1 590 | switchAllowsRuntimeAddOnContentInstall: 0 591 | switchDataLossConfirmation: 0 592 | switchUserAccountLockEnabled: 0 593 | switchSystemResourceMemory: 16777216 594 | switchSupportedNpadStyles: 22 595 | switchNativeFsCacheSize: 32 596 | switchIsHoldTypeHorizontal: 0 597 | switchSupportedNpadCount: 8 598 | switchEnableTouchScreen: 1 599 | switchSocketConfigEnabled: 0 600 | switchTcpInitialSendBufferSize: 32 601 | switchTcpInitialReceiveBufferSize: 64 602 | switchTcpAutoSendBufferSizeMax: 256 603 | switchTcpAutoReceiveBufferSizeMax: 256 604 | switchUdpSendBufferSize: 9 605 | switchUdpReceiveBufferSize: 42 606 | switchSocketBufferEfficiency: 4 607 | switchSocketInitializeEnabled: 1 608 | switchNetworkInterfaceManagerInitializeEnabled: 1 609 | switchUseNewStyleFilepaths: 0 610 | switchUseLegacyFmodPriorities: 1 611 | switchUseMicroSleepForYield: 1 612 | switchEnableRamDiskSupport: 0 613 | switchMicroSleepForYieldTime: 25 614 | switchRamDiskSpaceSize: 12 615 | ps4NPAgeRating: 12 616 | ps4NPTitleSecret: 617 | ps4NPTrophyPackPath: 618 | ps4ParentalLevel: 11 619 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 620 | ps4Category: 0 621 | ps4MasterVersion: 01.00 622 | ps4AppVersion: 01.00 623 | ps4AppType: 0 624 | ps4ParamSfxPath: 625 | ps4VideoOutPixelFormat: 0 626 | ps4VideoOutInitialWidth: 1920 627 | ps4VideoOutBaseModeInitialWidth: 1920 628 | ps4VideoOutReprojectionRate: 60 629 | ps4PronunciationXMLPath: 630 | ps4PronunciationSIGPath: 631 | ps4BackgroundImagePath: 632 | ps4StartupImagePath: 633 | ps4StartupImagesFolder: 634 | ps4IconImagesFolder: 635 | ps4SaveDataImagePath: 636 | ps4SdkOverride: 637 | ps4BGMPath: 638 | ps4ShareFilePath: 639 | ps4ShareOverlayImagePath: 640 | ps4PrivacyGuardImagePath: 641 | ps4ExtraSceSysFile: 642 | ps4NPtitleDatPath: 643 | ps4RemotePlayKeyAssignment: -1 644 | ps4RemotePlayKeyMappingDir: 645 | ps4PlayTogetherPlayerCount: 0 646 | ps4EnterButtonAssignment: 1 647 | ps4ApplicationParam1: 0 648 | ps4ApplicationParam2: 0 649 | ps4ApplicationParam3: 0 650 | ps4ApplicationParam4: 0 651 | ps4DownloadDataSize: 0 652 | ps4GarlicHeapSize: 2048 653 | ps4ProGarlicHeapSize: 2560 654 | playerPrefsMaxSize: 32768 655 | ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ 656 | ps4pnSessions: 1 657 | ps4pnPresence: 1 658 | ps4pnFriends: 1 659 | ps4pnGameCustomData: 1 660 | playerPrefsSupport: 0 661 | enableApplicationExit: 0 662 | resetTempFolder: 1 663 | restrictedAudioUsageRights: 0 664 | ps4UseResolutionFallback: 0 665 | ps4ReprojectionSupport: 0 666 | ps4UseAudio3dBackend: 0 667 | ps4UseLowGarlicFragmentationMode: 1 668 | ps4SocialScreenEnabled: 0 669 | ps4ScriptOptimizationLevel: 0 670 | ps4Audio3dVirtualSpeakerCount: 14 671 | ps4attribCpuUsage: 0 672 | ps4PatchPkgPath: 673 | ps4PatchLatestPkgPath: 674 | ps4PatchChangeinfoPath: 675 | ps4PatchDayOne: 0 676 | ps4attribUserManagement: 0 677 | ps4attribMoveSupport: 0 678 | ps4attrib3DSupport: 0 679 | ps4attribShareSupport: 0 680 | ps4attribExclusiveVR: 0 681 | ps4disableAutoHideSplash: 0 682 | ps4videoRecordingFeaturesUsed: 0 683 | ps4contentSearchFeaturesUsed: 0 684 | ps4CompatibilityPS5: 0 685 | ps4AllowPS5Detection: 0 686 | ps4GPU800MHz: 1 687 | ps4attribEyeToEyeDistanceSettingVR: 0 688 | ps4IncludedModules: [] 689 | ps4attribVROutputEnabled: 0 690 | monoEnv: 691 | splashScreenBackgroundSourceLandscape: {fileID: 0} 692 | splashScreenBackgroundSourcePortrait: {fileID: 0} 693 | blurSplashScreenBackground: 1 694 | spritePackerPolicy: 695 | webGLMemorySize: 16 696 | webGLExceptionSupport: 1 697 | webGLNameFilesAsHashes: 0 698 | webGLDataCaching: 1 699 | webGLDebugSymbols: 0 700 | webGLEmscriptenArgs: 701 | webGLModulesDirectory: 702 | webGLTemplate: APPLICATION:Default 703 | webGLAnalyzeBuildSize: 0 704 | webGLUseEmbeddedResources: 0 705 | webGLCompressionFormat: 1 706 | webGLWasmArithmeticExceptions: 0 707 | webGLLinkerTarget: 1 708 | webGLThreadsSupport: 0 709 | webGLDecompressionFallback: 0 710 | webGLPowerPreference: 2 711 | scriptingDefineSymbols: {} 712 | additionalCompilerArguments: {} 713 | platformArchitecture: {} 714 | scriptingBackend: {} 715 | il2cppCompilerConfiguration: {} 716 | managedStrippingLevel: 717 | EmbeddedLinux: 1 718 | GameCoreScarlett: 1 719 | GameCoreXboxOne: 1 720 | Lumin: 1 721 | Nintendo Switch: 1 722 | PS4: 1 723 | PS5: 1 724 | Stadia: 1 725 | WebGL: 1 726 | Windows Store Apps: 1 727 | XboxOne: 1 728 | iPhone: 1 729 | tvOS: 1 730 | incrementalIl2cppBuild: {} 731 | suppressCommonWarnings: 1 732 | allowUnsafeCode: 0 733 | useDeterministicCompilation: 1 734 | enableRoslynAnalyzers: 1 735 | additionalIl2CppArgs: 736 | scriptingRuntimeVersion: 1 737 | gcIncremental: 1 738 | assemblyVersionValidation: 1 739 | gcWBarrierValidation: 0 740 | apiCompatibilityLevelPerPlatform: {} 741 | m_RenderingPath: 1 742 | m_MobileRenderingPath: 1 743 | metroPackageName: Template_3D 744 | metroPackageVersion: 745 | metroCertificatePath: 746 | metroCertificatePassword: 747 | metroCertificateSubject: 748 | metroCertificateIssuer: 749 | metroCertificateNotAfter: 0000000000000000 750 | metroApplicationDescription: Template_3D 751 | wsaImages: {} 752 | metroTileShortName: 753 | metroTileShowName: 0 754 | metroMediumTileShowName: 0 755 | metroLargeTileShowName: 0 756 | metroWideTileShowName: 0 757 | metroSupportStreamingInstall: 0 758 | metroLastRequiredScene: 0 759 | metroDefaultTileSize: 1 760 | metroTileForegroundText: 2 761 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 762 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1} 763 | metroSplashScreenUseBackgroundColor: 0 764 | platformCapabilities: {} 765 | metroTargetDeviceFamilies: {} 766 | metroFTAName: 767 | metroFTAFileTypes: [] 768 | metroProtocolName: 769 | vcxProjDefaultLanguage: 770 | XboxOneProductId: 771 | XboxOneUpdateKey: 772 | XboxOneSandboxId: 773 | XboxOneContentId: 774 | XboxOneTitleId: 775 | XboxOneSCId: 776 | XboxOneGameOsOverridePath: 777 | XboxOnePackagingOverridePath: 778 | XboxOneAppManifestOverridePath: 779 | XboxOneVersion: 1.0.0.0 780 | XboxOnePackageEncryption: 0 781 | XboxOnePackageUpdateGranularity: 2 782 | XboxOneDescription: 783 | XboxOneLanguage: 784 | - enus 785 | XboxOneCapability: [] 786 | XboxOneGameRating: {} 787 | XboxOneIsContentPackage: 0 788 | XboxOneEnhancedXboxCompatibilityMode: 0 789 | XboxOneEnableGPUVariability: 1 790 | XboxOneSockets: {} 791 | XboxOneSplashScreen: {fileID: 0} 792 | XboxOneAllowedProductIds: [] 793 | XboxOnePersistentLocalStorageSize: 0 794 | XboxOneXTitleMemory: 8 795 | XboxOneOverrideIdentityName: 796 | XboxOneOverrideIdentityPublisher: 797 | vrEditorSettings: {} 798 | cloudServicesEnabled: 799 | UNet: 1 800 | luminIcon: 801 | m_Name: 802 | m_ModelFolderPath: 803 | m_PortalFolderPath: 804 | luminCert: 805 | m_CertPath: 806 | m_SignPackage: 1 807 | luminIsChannelApp: 0 808 | luminVersion: 809 | m_VersionCode: 1 810 | m_VersionName: 811 | apiCompatibilityLevel: 6 812 | activeInputHandler: 0 813 | windowsGamepadBackendHint: 0 814 | cloudProjectId: 815 | framebufferDepthMemorylessMode: 0 816 | qualitySettingsNames: [] 817 | projectName: 818 | organizationId: 819 | cloudEnabled: 0 820 | legacyClampBlendShapeWeights: 0 821 | playerDataPath: 822 | forceSRGBBlit: 1 823 | virtualTexturingSupportEnabled: 0 824 | -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.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: 0 28 | m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} 29 | m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 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: 705507994} 41 | m_IndirectSpecularColor: {r: 0.18028378, g: 0.22571412, b: 0.30692285, 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: 1 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: 1 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: 0} 102 | --- !u!196 &4 103 | NavMeshSettings: 104 | serializedVersion: 2 105 | m_ObjectHideFlags: 0 106 | m_BuildSettings: 107 | serializedVersion: 2 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 | accuratePlacement: 0 121 | maxJobWorkers: 0 122 | preserveTilesOutsideBounds: 0 123 | debug: 124 | m_Flags: 0 125 | m_NavMeshData: {fileID: 0} 126 | --- !u!1 &201490150 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: 201490153} 135 | - component: {fileID: 201490152} 136 | - component: {fileID: 201490151} 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 &201490151 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: 201490150} 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 &201490152 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: 201490150} 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 &201490153 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: 201490150} 186 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 187 | m_LocalPosition: {x: 0, y: 0, z: 0} 188 | m_LocalScale: {x: 1, y: 1, z: 1} 189 | m_ConstrainProportionsScale: 0 190 | m_Children: [] 191 | m_Father: {fileID: 1425593632} 192 | m_RootOrder: 2 193 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 194 | --- !u!1 &470291292 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: 470291293} 203 | - component: {fileID: 470291295} 204 | - component: {fileID: 470291294} 205 | m_Layer: 5 206 | m_Name: joystickArrow 207 | m_TagString: Untagged 208 | m_Icon: {fileID: 0} 209 | m_NavMeshLayer: 0 210 | m_StaticEditorFlags: 0 211 | m_IsActive: 1 212 | --- !u!224 &470291293 213 | RectTransform: 214 | m_ObjectHideFlags: 0 215 | m_CorrespondingSourceObject: {fileID: 0} 216 | m_PrefabInstance: {fileID: 0} 217 | m_PrefabAsset: {fileID: 0} 218 | m_GameObject: {fileID: 470291292} 219 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 220 | m_LocalPosition: {x: 0, y: 0, z: 0} 221 | m_LocalScale: {x: 1, y: 1, z: 1} 222 | m_ConstrainProportionsScale: 0 223 | m_Children: [] 224 | m_Father: {fileID: 1826210820} 225 | m_RootOrder: 0 226 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 227 | m_AnchorMin: {x: 0.5, y: 0.5} 228 | m_AnchorMax: {x: 0.5, y: 0.5} 229 | m_AnchoredPosition: {x: 0, y: 0} 230 | m_SizeDelta: {x: 400, y: 400} 231 | m_Pivot: {x: 0.5, y: 0.5} 232 | --- !u!114 &470291294 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: 470291292} 239 | m_Enabled: 1 240 | m_EditorHideFlags: 0 241 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 242 | m_Name: 243 | m_EditorClassIdentifier: 244 | m_Material: {fileID: 0} 245 | m_Color: {r: 1, g: 1, b: 1, a: 1} 246 | m_RaycastTarget: 0 247 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 248 | m_Maskable: 1 249 | m_OnCullStateChanged: 250 | m_PersistentCalls: 251 | m_Calls: [] 252 | m_Sprite: {fileID: 21300000, guid: cecf3d3eb6a98414daeb92be4ffe607a, type: 3} 253 | m_Type: 0 254 | m_PreserveAspect: 0 255 | m_FillCenter: 1 256 | m_FillMethod: 4 257 | m_FreeCutMethod: 1 258 | m_ClipNodes: [] 259 | m_FreeCustomSize: 0 260 | m_FreeCrileStep: 0 261 | m_FillAmount: 1 262 | m_FillClockwise: 1 263 | m_FillOrigin: 0 264 | m_UseSpriteMesh: 0 265 | m_PixelsPerUnitMultiplier: 1 266 | --- !u!222 &470291295 267 | CanvasRenderer: 268 | m_ObjectHideFlags: 0 269 | m_CorrespondingSourceObject: {fileID: 0} 270 | m_PrefabInstance: {fileID: 0} 271 | m_PrefabAsset: {fileID: 0} 272 | m_GameObject: {fileID: 470291292} 273 | m_CullTransparentMesh: 1 274 | --- !u!1 &705507993 275 | GameObject: 276 | m_ObjectHideFlags: 0 277 | m_CorrespondingSourceObject: {fileID: 0} 278 | m_PrefabInstance: {fileID: 0} 279 | m_PrefabAsset: {fileID: 0} 280 | serializedVersion: 6 281 | m_Component: 282 | - component: {fileID: 705507995} 283 | - component: {fileID: 705507994} 284 | m_Layer: 0 285 | m_Name: Directional Light 286 | m_TagString: Untagged 287 | m_Icon: {fileID: 0} 288 | m_NavMeshLayer: 0 289 | m_StaticEditorFlags: 0 290 | m_IsActive: 1 291 | --- !u!108 &705507994 292 | Light: 293 | m_ObjectHideFlags: 0 294 | m_CorrespondingSourceObject: {fileID: 0} 295 | m_PrefabInstance: {fileID: 0} 296 | m_PrefabAsset: {fileID: 0} 297 | m_GameObject: {fileID: 705507993} 298 | m_Enabled: 1 299 | serializedVersion: 10 300 | m_Type: 1 301 | m_Shape: 0 302 | m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} 303 | m_Intensity: 1 304 | m_Range: 10 305 | m_SpotAngle: 30 306 | m_InnerSpotAngle: 21.80208 307 | m_CookieSize: 10 308 | m_Shadows: 309 | m_Type: 2 310 | m_Resolution: -1 311 | m_CustomResolution: -1 312 | m_Strength: 1 313 | m_Bias: 0.05 314 | m_NormalBias: 0.4 315 | m_NearPlane: 0.2 316 | m_CullingMatrixOverride: 317 | e00: 1 318 | e01: 0 319 | e02: 0 320 | e03: 0 321 | e10: 0 322 | e11: 1 323 | e12: 0 324 | e13: 0 325 | e20: 0 326 | e21: 0 327 | e22: 1 328 | e23: 0 329 | e30: 0 330 | e31: 0 331 | e32: 0 332 | e33: 1 333 | m_UseCullingMatrixOverride: 0 334 | m_Cookie: {fileID: 0} 335 | m_DrawHalo: 0 336 | m_Flare: {fileID: 0} 337 | m_RenderMode: 0 338 | m_CullingMask: 339 | serializedVersion: 2 340 | m_Bits: 4294967295 341 | m_RenderingLayerMask: 1 342 | m_Lightmapping: 1 343 | m_LightShadowCasterMode: 0 344 | m_AreaSize: {x: 1, y: 1} 345 | m_BounceIntensity: 1 346 | m_ColorTemperature: 6570 347 | m_UseColorTemperature: 0 348 | m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} 349 | m_UseBoundingSphereOverride: 0 350 | m_UseViewFrustumForShadowCasterCull: 1 351 | m_ShadowRadius: 0 352 | m_ShadowAngle: 0 353 | --- !u!4 &705507995 354 | Transform: 355 | m_ObjectHideFlags: 0 356 | m_CorrespondingSourceObject: {fileID: 0} 357 | m_PrefabInstance: {fileID: 0} 358 | m_PrefabAsset: {fileID: 0} 359 | m_GameObject: {fileID: 705507993} 360 | m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} 361 | m_LocalPosition: {x: 0, y: 3, z: 0} 362 | m_LocalScale: {x: 1, y: 1, z: 1} 363 | m_ConstrainProportionsScale: 0 364 | m_Children: [] 365 | m_Father: {fileID: 0} 366 | m_RootOrder: 1 367 | m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} 368 | --- !u!1 &740797672 369 | GameObject: 370 | m_ObjectHideFlags: 0 371 | m_CorrespondingSourceObject: {fileID: 0} 372 | m_PrefabInstance: {fileID: 0} 373 | m_PrefabAsset: {fileID: 0} 374 | serializedVersion: 6 375 | m_Component: 376 | - component: {fileID: 740797676} 377 | - component: {fileID: 740797675} 378 | - component: {fileID: 740797674} 379 | - component: {fileID: 740797673} 380 | m_Layer: 5 381 | m_Name: UICanvas 382 | m_TagString: Untagged 383 | m_Icon: {fileID: 0} 384 | m_NavMeshLayer: 0 385 | m_StaticEditorFlags: 0 386 | m_IsActive: 1 387 | --- !u!114 &740797673 388 | MonoBehaviour: 389 | m_ObjectHideFlags: 0 390 | m_CorrespondingSourceObject: {fileID: 0} 391 | m_PrefabInstance: {fileID: 0} 392 | m_PrefabAsset: {fileID: 0} 393 | m_GameObject: {fileID: 740797672} 394 | m_Enabled: 1 395 | m_EditorHideFlags: 0 396 | m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} 397 | m_Name: 398 | m_EditorClassIdentifier: 399 | m_IgnoreReversedGraphics: 1 400 | m_BlockingObjects: 0 401 | m_BlockingMask: 402 | serializedVersion: 2 403 | m_Bits: 4294967295 404 | --- !u!114 &740797674 405 | MonoBehaviour: 406 | m_ObjectHideFlags: 0 407 | m_CorrespondingSourceObject: {fileID: 0} 408 | m_PrefabInstance: {fileID: 0} 409 | m_PrefabAsset: {fileID: 0} 410 | m_GameObject: {fileID: 740797672} 411 | m_Enabled: 1 412 | m_EditorHideFlags: 0 413 | m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} 414 | m_Name: 415 | m_EditorClassIdentifier: 416 | m_UiScaleMode: 1 417 | m_ReferencePixelsPerUnit: 100 418 | m_ScaleFactor: 1 419 | m_ReferenceResolution: {x: 1080, y: 1920} 420 | m_ScreenMatchMode: 0 421 | m_MatchWidthOrHeight: 0 422 | m_PhysicalUnit: 3 423 | m_FallbackScreenDPI: 96 424 | m_DefaultSpriteDPI: 96 425 | m_DynamicPixelsPerUnit: 1 426 | m_PresetInfoIsWorld: 0 427 | --- !u!223 &740797675 428 | Canvas: 429 | m_ObjectHideFlags: 0 430 | m_CorrespondingSourceObject: {fileID: 0} 431 | m_PrefabInstance: {fileID: 0} 432 | m_PrefabAsset: {fileID: 0} 433 | m_GameObject: {fileID: 740797672} 434 | m_Enabled: 1 435 | serializedVersion: 3 436 | m_RenderMode: 1 437 | m_Camera: {fileID: 802229453} 438 | m_PlaneDistance: 100 439 | m_PixelPerfect: 0 440 | m_ReceivesEvents: 1 441 | m_OverrideSorting: 0 442 | m_OverridePixelPerfect: 0 443 | m_SortingBucketNormalizedSize: 0 444 | m_AdditionalShaderChannelsFlag: 0 445 | m_SortingLayerID: 0 446 | m_SortingOrder: 0 447 | m_TargetDisplay: 0 448 | --- !u!224 &740797676 449 | RectTransform: 450 | m_ObjectHideFlags: 0 451 | m_CorrespondingSourceObject: {fileID: 0} 452 | m_PrefabInstance: {fileID: 0} 453 | m_PrefabAsset: {fileID: 0} 454 | m_GameObject: {fileID: 740797672} 455 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 456 | m_LocalPosition: {x: 0, y: 0, z: 0} 457 | m_LocalScale: {x: 0, y: 0, z: 0} 458 | m_ConstrainProportionsScale: 0 459 | m_Children: 460 | - {fileID: 1500267390} 461 | m_Father: {fileID: 1425593632} 462 | m_RootOrder: 0 463 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 464 | m_AnchorMin: {x: 0, y: 0} 465 | m_AnchorMax: {x: 0, y: 0} 466 | m_AnchoredPosition: {x: 0, y: 0} 467 | m_SizeDelta: {x: 0, y: 0} 468 | m_Pivot: {x: 0, y: 0} 469 | --- !u!1 &802229450 470 | GameObject: 471 | m_ObjectHideFlags: 0 472 | m_CorrespondingSourceObject: {fileID: 0} 473 | m_PrefabInstance: {fileID: 0} 474 | m_PrefabAsset: {fileID: 0} 475 | serializedVersion: 6 476 | m_Component: 477 | - component: {fileID: 802229451} 478 | - component: {fileID: 802229453} 479 | - component: {fileID: 802229452} 480 | m_Layer: 0 481 | m_Name: UICamera 482 | m_TagString: Untagged 483 | m_Icon: {fileID: 0} 484 | m_NavMeshLayer: 0 485 | m_StaticEditorFlags: 0 486 | m_IsActive: 1 487 | --- !u!4 &802229451 488 | Transform: 489 | m_ObjectHideFlags: 0 490 | m_CorrespondingSourceObject: {fileID: 0} 491 | m_PrefabInstance: {fileID: 0} 492 | m_PrefabAsset: {fileID: 0} 493 | m_GameObject: {fileID: 802229450} 494 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 495 | m_LocalPosition: {x: 0, y: 0, z: 0} 496 | m_LocalScale: {x: 1, y: 1, z: 1} 497 | m_ConstrainProportionsScale: 0 498 | m_Children: [] 499 | m_Father: {fileID: 1425593632} 500 | m_RootOrder: 1 501 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 502 | --- !u!81 &802229452 503 | AudioListener: 504 | m_ObjectHideFlags: 0 505 | m_CorrespondingSourceObject: {fileID: 0} 506 | m_PrefabInstance: {fileID: 0} 507 | m_PrefabAsset: {fileID: 0} 508 | m_GameObject: {fileID: 802229450} 509 | m_Enabled: 1 510 | --- !u!20 &802229453 511 | Camera: 512 | m_ObjectHideFlags: 0 513 | m_CorrespondingSourceObject: {fileID: 0} 514 | m_PrefabInstance: {fileID: 0} 515 | m_PrefabAsset: {fileID: 0} 516 | m_GameObject: {fileID: 802229450} 517 | m_Enabled: 1 518 | serializedVersion: 2 519 | m_ClearFlags: 2 520 | m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0.2784314} 521 | m_projectionMatrixMode: 1 522 | m_GateFitMode: 2 523 | m_FOVAxisMode: 0 524 | m_SensorSize: {x: 36, y: 24} 525 | m_LensShift: {x: 0, y: 0} 526 | m_FocalLength: 50 527 | m_NormalizedViewPortRect: 528 | serializedVersion: 2 529 | x: 0 530 | y: 0 531 | width: 1 532 | height: 1 533 | near clip plane: 0.3 534 | far clip plane: 1000 535 | field of view: 60 536 | orthographic: 1 537 | orthographic size: 5 538 | m_Depth: 0 539 | m_CullingMask: 540 | serializedVersion: 2 541 | m_Bits: 32 542 | m_RenderingPath: -1 543 | m_TargetTexture: {fileID: 0} 544 | m_TargetDisplay: 0 545 | m_TargetEye: 3 546 | m_HDR: 1 547 | m_AllowMSAA: 1 548 | m_AllowDynamicResolution: 0 549 | m_ForceIntoRT: 0 550 | m_OcclusionCulling: 1 551 | m_StereoConvergence: 10 552 | m_StereoSeparation: 0.022 553 | --- !u!1 &963194225 554 | GameObject: 555 | m_ObjectHideFlags: 0 556 | m_CorrespondingSourceObject: {fileID: 0} 557 | m_PrefabInstance: {fileID: 0} 558 | m_PrefabAsset: {fileID: 0} 559 | serializedVersion: 6 560 | m_Component: 561 | - component: {fileID: 963194228} 562 | - component: {fileID: 963194227} 563 | - component: {fileID: 963194226} 564 | m_Layer: 0 565 | m_Name: Main Camera 566 | m_TagString: MainCamera 567 | m_Icon: {fileID: 0} 568 | m_NavMeshLayer: 0 569 | m_StaticEditorFlags: 0 570 | m_IsActive: 1 571 | --- !u!81 &963194226 572 | AudioListener: 573 | m_ObjectHideFlags: 0 574 | m_CorrespondingSourceObject: {fileID: 0} 575 | m_PrefabInstance: {fileID: 0} 576 | m_PrefabAsset: {fileID: 0} 577 | m_GameObject: {fileID: 963194225} 578 | m_Enabled: 1 579 | --- !u!20 &963194227 580 | Camera: 581 | m_ObjectHideFlags: 0 582 | m_CorrespondingSourceObject: {fileID: 0} 583 | m_PrefabInstance: {fileID: 0} 584 | m_PrefabAsset: {fileID: 0} 585 | m_GameObject: {fileID: 963194225} 586 | m_Enabled: 1 587 | serializedVersion: 2 588 | m_ClearFlags: 1 589 | m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} 590 | m_projectionMatrixMode: 1 591 | m_GateFitMode: 2 592 | m_FOVAxisMode: 0 593 | m_SensorSize: {x: 36, y: 24} 594 | m_LensShift: {x: 0, y: 0} 595 | m_FocalLength: 50 596 | m_NormalizedViewPortRect: 597 | serializedVersion: 2 598 | x: 0 599 | y: 0 600 | width: 1 601 | height: 1 602 | near clip plane: 0.3 603 | far clip plane: 1000 604 | field of view: 60 605 | orthographic: 0 606 | orthographic size: 5 607 | m_Depth: -1 608 | m_CullingMask: 609 | serializedVersion: 2 610 | m_Bits: 1 611 | m_RenderingPath: -1 612 | m_TargetTexture: {fileID: 0} 613 | m_TargetDisplay: 0 614 | m_TargetEye: 3 615 | m_HDR: 1 616 | m_AllowMSAA: 1 617 | m_AllowDynamicResolution: 0 618 | m_ForceIntoRT: 0 619 | m_OcclusionCulling: 1 620 | m_StereoConvergence: 10 621 | m_StereoSeparation: 0.022 622 | --- !u!4 &963194228 623 | Transform: 624 | m_ObjectHideFlags: 0 625 | m_CorrespondingSourceObject: {fileID: 0} 626 | m_PrefabInstance: {fileID: 0} 627 | m_PrefabAsset: {fileID: 0} 628 | m_GameObject: {fileID: 963194225} 629 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 630 | m_LocalPosition: {x: 0, y: 1, z: -10} 631 | m_LocalScale: {x: 1, y: 1, z: 1} 632 | m_ConstrainProportionsScale: 0 633 | m_Children: [] 634 | m_Father: {fileID: 0} 635 | m_RootOrder: 0 636 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 637 | --- !u!1 &1062413532 638 | GameObject: 639 | m_ObjectHideFlags: 0 640 | m_CorrespondingSourceObject: {fileID: 0} 641 | m_PrefabInstance: {fileID: 0} 642 | m_PrefabAsset: {fileID: 0} 643 | serializedVersion: 6 644 | m_Component: 645 | - component: {fileID: 1062413533} 646 | - component: {fileID: 1062413535} 647 | - component: {fileID: 1062413534} 648 | m_Layer: 5 649 | m_Name: joystickHandle 650 | m_TagString: Untagged 651 | m_Icon: {fileID: 0} 652 | m_NavMeshLayer: 0 653 | m_StaticEditorFlags: 0 654 | m_IsActive: 1 655 | --- !u!224 &1062413533 656 | RectTransform: 657 | m_ObjectHideFlags: 0 658 | m_CorrespondingSourceObject: {fileID: 0} 659 | m_PrefabInstance: {fileID: 0} 660 | m_PrefabAsset: {fileID: 0} 661 | m_GameObject: {fileID: 1062413532} 662 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 663 | m_LocalPosition: {x: 0, y: 0, z: 0} 664 | m_LocalScale: {x: 1, y: 1, z: 1} 665 | m_ConstrainProportionsScale: 0 666 | m_Children: [] 667 | m_Father: {fileID: 1826210820} 668 | m_RootOrder: 1 669 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 670 | m_AnchorMin: {x: 0.5, y: 0.5} 671 | m_AnchorMax: {x: 0.5, y: 0.5} 672 | m_AnchoredPosition: {x: 0, y: 0} 673 | m_SizeDelta: {x: 128, y: 128} 674 | m_Pivot: {x: 0.5, y: 0.5} 675 | --- !u!114 &1062413534 676 | MonoBehaviour: 677 | m_ObjectHideFlags: 0 678 | m_CorrespondingSourceObject: {fileID: 0} 679 | m_PrefabInstance: {fileID: 0} 680 | m_PrefabAsset: {fileID: 0} 681 | m_GameObject: {fileID: 1062413532} 682 | m_Enabled: 1 683 | m_EditorHideFlags: 0 684 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 685 | m_Name: 686 | m_EditorClassIdentifier: 687 | m_Material: {fileID: 0} 688 | m_Color: {r: 1, g: 1, b: 1, a: 1} 689 | m_RaycastTarget: 0 690 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 691 | m_Maskable: 1 692 | m_OnCullStateChanged: 693 | m_PersistentCalls: 694 | m_Calls: [] 695 | m_Sprite: {fileID: 21300000, guid: 010a6e5305fa7004f89c5d317b7b47d4, type: 3} 696 | m_Type: 0 697 | m_PreserveAspect: 0 698 | m_FillCenter: 1 699 | m_FillMethod: 4 700 | m_FreeCutMethod: 1 701 | m_ClipNodes: [] 702 | m_FreeCustomSize: 0 703 | m_FreeCrileStep: 0 704 | m_FillAmount: 1 705 | m_FillClockwise: 1 706 | m_FillOrigin: 0 707 | m_UseSpriteMesh: 0 708 | m_PixelsPerUnitMultiplier: 1 709 | --- !u!222 &1062413535 710 | CanvasRenderer: 711 | m_ObjectHideFlags: 0 712 | m_CorrespondingSourceObject: {fileID: 0} 713 | m_PrefabInstance: {fileID: 0} 714 | m_PrefabAsset: {fileID: 0} 715 | m_GameObject: {fileID: 1062413532} 716 | m_CullTransparentMesh: 1 717 | --- !u!1 &1425593631 718 | GameObject: 719 | m_ObjectHideFlags: 0 720 | m_CorrespondingSourceObject: {fileID: 0} 721 | m_PrefabInstance: {fileID: 0} 722 | m_PrefabAsset: {fileID: 0} 723 | serializedVersion: 6 724 | m_Component: 725 | - component: {fileID: 1425593632} 726 | m_Layer: 0 727 | m_Name: UIRoot 728 | m_TagString: Untagged 729 | m_Icon: {fileID: 0} 730 | m_NavMeshLayer: 0 731 | m_StaticEditorFlags: 0 732 | m_IsActive: 1 733 | --- !u!4 &1425593632 734 | Transform: 735 | m_ObjectHideFlags: 0 736 | m_CorrespondingSourceObject: {fileID: 0} 737 | m_PrefabInstance: {fileID: 0} 738 | m_PrefabAsset: {fileID: 0} 739 | m_GameObject: {fileID: 1425593631} 740 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 741 | m_LocalPosition: {x: 0, y: 0, z: 0} 742 | m_LocalScale: {x: 1, y: 1, z: 1} 743 | m_ConstrainProportionsScale: 0 744 | m_Children: 745 | - {fileID: 740797676} 746 | - {fileID: 802229451} 747 | - {fileID: 201490153} 748 | m_Father: {fileID: 0} 749 | m_RootOrder: 2 750 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 751 | --- !u!1 &1500267389 752 | GameObject: 753 | m_ObjectHideFlags: 0 754 | m_CorrespondingSourceObject: {fileID: 0} 755 | m_PrefabInstance: {fileID: 0} 756 | m_PrefabAsset: {fileID: 0} 757 | serializedVersion: 6 758 | m_Component: 759 | - component: {fileID: 1500267390} 760 | - component: {fileID: 1500267392} 761 | - component: {fileID: 1500267391} 762 | - component: {fileID: 1500267393} 763 | m_Layer: 5 764 | m_Name: JoystickUI 765 | m_TagString: Untagged 766 | m_Icon: {fileID: 0} 767 | m_NavMeshLayer: 0 768 | m_StaticEditorFlags: 0 769 | m_IsActive: 1 770 | --- !u!224 &1500267390 771 | RectTransform: 772 | m_ObjectHideFlags: 0 773 | m_CorrespondingSourceObject: {fileID: 0} 774 | m_PrefabInstance: {fileID: 0} 775 | m_PrefabAsset: {fileID: 0} 776 | m_GameObject: {fileID: 1500267389} 777 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 778 | m_LocalPosition: {x: 0, y: 0, z: 0} 779 | m_LocalScale: {x: 1, y: 1, z: 1} 780 | m_ConstrainProportionsScale: 0 781 | m_Children: 782 | - {fileID: 1870893119} 783 | - {fileID: 1826210820} 784 | m_Father: {fileID: 740797676} 785 | m_RootOrder: 0 786 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 787 | m_AnchorMin: {x: 0, y: 0} 788 | m_AnchorMax: {x: 1, y: 1} 789 | m_AnchoredPosition: {x: 0, y: 0} 790 | m_SizeDelta: {x: 0, y: 0} 791 | m_Pivot: {x: 0.5, y: 0.5} 792 | --- !u!114 &1500267391 793 | MonoBehaviour: 794 | m_ObjectHideFlags: 0 795 | m_CorrespondingSourceObject: {fileID: 0} 796 | m_PrefabInstance: {fileID: 0} 797 | m_PrefabAsset: {fileID: 0} 798 | m_GameObject: {fileID: 1500267389} 799 | m_Enabled: 1 800 | m_EditorHideFlags: 0 801 | m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} 802 | m_Name: 803 | m_EditorClassIdentifier: 804 | m_IgnoreReversedGraphics: 1 805 | m_BlockingObjects: 0 806 | m_BlockingMask: 807 | serializedVersion: 2 808 | m_Bits: 4294967295 809 | --- !u!223 &1500267392 810 | Canvas: 811 | m_ObjectHideFlags: 0 812 | m_CorrespondingSourceObject: {fileID: 0} 813 | m_PrefabInstance: {fileID: 0} 814 | m_PrefabAsset: {fileID: 0} 815 | m_GameObject: {fileID: 1500267389} 816 | m_Enabled: 1 817 | serializedVersion: 3 818 | m_RenderMode: 2 819 | m_Camera: {fileID: 0} 820 | m_PlaneDistance: 100 821 | m_PixelPerfect: 0 822 | m_ReceivesEvents: 1 823 | m_OverrideSorting: 0 824 | m_OverridePixelPerfect: 0 825 | m_SortingBucketNormalizedSize: 0 826 | m_AdditionalShaderChannelsFlag: 0 827 | m_SortingLayerID: 0 828 | m_SortingOrder: 0 829 | m_TargetDisplay: 0 830 | --- !u!114 &1500267393 831 | MonoBehaviour: 832 | m_ObjectHideFlags: 0 833 | m_CorrespondingSourceObject: {fileID: 0} 834 | m_PrefabInstance: {fileID: 0} 835 | m_PrefabAsset: {fileID: 0} 836 | m_GameObject: {fileID: 1500267389} 837 | m_Enabled: 1 838 | m_EditorHideFlags: 0 839 | m_Script: {fileID: 11500000, guid: 328aec08dc770a94f913da6b484f08e2, type: 3} 840 | m_Name: 841 | m_EditorClassIdentifier: 842 | playerMoveDir: {x: 0, y: 0, z: 0} 843 | joystickDrag: {fileID: 1870893119} 844 | joystickBg: {fileID: 1826210820} 845 | joystickHandle: {fileID: 1062413533} 846 | joystickArrow: {fileID: 470291293} 847 | UICamera: {fileID: 802229453} 848 | isFree: 1 849 | --- !u!1 &1826210819 850 | GameObject: 851 | m_ObjectHideFlags: 0 852 | m_CorrespondingSourceObject: {fileID: 0} 853 | m_PrefabInstance: {fileID: 0} 854 | m_PrefabAsset: {fileID: 0} 855 | serializedVersion: 6 856 | m_Component: 857 | - component: {fileID: 1826210820} 858 | - component: {fileID: 1826210822} 859 | - component: {fileID: 1826210821} 860 | m_Layer: 5 861 | m_Name: joystickBg 862 | m_TagString: Untagged 863 | m_Icon: {fileID: 0} 864 | m_NavMeshLayer: 0 865 | m_StaticEditorFlags: 0 866 | m_IsActive: 1 867 | --- !u!224 &1826210820 868 | RectTransform: 869 | m_ObjectHideFlags: 0 870 | m_CorrespondingSourceObject: {fileID: 0} 871 | m_PrefabInstance: {fileID: 0} 872 | m_PrefabAsset: {fileID: 0} 873 | m_GameObject: {fileID: 1826210819} 874 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 875 | m_LocalPosition: {x: 0, y: 0, z: 0} 876 | m_LocalScale: {x: 1, y: 1, z: 1} 877 | m_ConstrainProportionsScale: 0 878 | m_Children: 879 | - {fileID: 470291293} 880 | - {fileID: 1062413533} 881 | m_Father: {fileID: 1500267390} 882 | m_RootOrder: 1 883 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 884 | m_AnchorMin: {x: 0.5, y: 0.5} 885 | m_AnchorMax: {x: 0.5, y: 0.5} 886 | m_AnchoredPosition: {x: 0, y: 0} 887 | m_SizeDelta: {x: 256, y: 256} 888 | m_Pivot: {x: 0.5, y: 0.5} 889 | --- !u!114 &1826210821 890 | MonoBehaviour: 891 | m_ObjectHideFlags: 0 892 | m_CorrespondingSourceObject: {fileID: 0} 893 | m_PrefabInstance: {fileID: 0} 894 | m_PrefabAsset: {fileID: 0} 895 | m_GameObject: {fileID: 1826210819} 896 | m_Enabled: 1 897 | m_EditorHideFlags: 0 898 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 899 | m_Name: 900 | m_EditorClassIdentifier: 901 | m_Material: {fileID: 0} 902 | m_Color: {r: 1, g: 1, b: 1, a: 1} 903 | m_RaycastTarget: 0 904 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 905 | m_Maskable: 1 906 | m_OnCullStateChanged: 907 | m_PersistentCalls: 908 | m_Calls: [] 909 | m_Sprite: {fileID: 21300000, guid: 5b56d9fa0e8bd6e409ed188db38a692c, type: 3} 910 | m_Type: 0 911 | m_PreserveAspect: 0 912 | m_FillCenter: 1 913 | m_FillMethod: 4 914 | m_FreeCutMethod: 1 915 | m_ClipNodes: [] 916 | m_FreeCustomSize: 0 917 | m_FreeCrileStep: 0 918 | m_FillAmount: 1 919 | m_FillClockwise: 1 920 | m_FillOrigin: 0 921 | m_UseSpriteMesh: 0 922 | m_PixelsPerUnitMultiplier: 1 923 | --- !u!222 &1826210822 924 | CanvasRenderer: 925 | m_ObjectHideFlags: 0 926 | m_CorrespondingSourceObject: {fileID: 0} 927 | m_PrefabInstance: {fileID: 0} 928 | m_PrefabAsset: {fileID: 0} 929 | m_GameObject: {fileID: 1826210819} 930 | m_CullTransparentMesh: 1 931 | --- !u!1 &1870893118 932 | GameObject: 933 | m_ObjectHideFlags: 0 934 | m_CorrespondingSourceObject: {fileID: 0} 935 | m_PrefabInstance: {fileID: 0} 936 | m_PrefabAsset: {fileID: 0} 937 | serializedVersion: 6 938 | m_Component: 939 | - component: {fileID: 1870893119} 940 | - component: {fileID: 1870893121} 941 | - component: {fileID: 1870893120} 942 | m_Layer: 5 943 | m_Name: joystickDrag 944 | m_TagString: Untagged 945 | m_Icon: {fileID: 0} 946 | m_NavMeshLayer: 0 947 | m_StaticEditorFlags: 0 948 | m_IsActive: 1 949 | --- !u!224 &1870893119 950 | RectTransform: 951 | m_ObjectHideFlags: 0 952 | m_CorrespondingSourceObject: {fileID: 0} 953 | m_PrefabInstance: {fileID: 0} 954 | m_PrefabAsset: {fileID: 0} 955 | m_GameObject: {fileID: 1870893118} 956 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 957 | m_LocalPosition: {x: 0, y: 0, z: 0} 958 | m_LocalScale: {x: 1, y: 1, z: 1} 959 | m_ConstrainProportionsScale: 0 960 | m_Children: [] 961 | m_Father: {fileID: 1500267390} 962 | m_RootOrder: 0 963 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 964 | m_AnchorMin: {x: 0, y: 0} 965 | m_AnchorMax: {x: 1, y: 1} 966 | m_AnchoredPosition: {x: 0, y: 0} 967 | m_SizeDelta: {x: 0, y: 0} 968 | m_Pivot: {x: 0.5, y: 0.5} 969 | --- !u!114 &1870893120 970 | MonoBehaviour: 971 | m_ObjectHideFlags: 0 972 | m_CorrespondingSourceObject: {fileID: 0} 973 | m_PrefabInstance: {fileID: 0} 974 | m_PrefabAsset: {fileID: 0} 975 | m_GameObject: {fileID: 1870893118} 976 | m_Enabled: 1 977 | m_EditorHideFlags: 0 978 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 979 | m_Name: 980 | m_EditorClassIdentifier: 981 | m_Material: {fileID: 0} 982 | m_Color: {r: 1, g: 1, b: 1, a: 0} 983 | m_RaycastTarget: 1 984 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 985 | m_Maskable: 1 986 | m_OnCullStateChanged: 987 | m_PersistentCalls: 988 | m_Calls: [] 989 | m_Sprite: {fileID: 0} 990 | m_Type: 0 991 | m_PreserveAspect: 0 992 | m_FillCenter: 1 993 | m_FillMethod: 4 994 | m_FreeCutMethod: 1 995 | m_ClipNodes: [] 996 | m_FreeCustomSize: 0 997 | m_FreeCrileStep: 0 998 | m_FillAmount: 1 999 | m_FillClockwise: 1 1000 | m_FillOrigin: 0 1001 | m_UseSpriteMesh: 0 1002 | m_PixelsPerUnitMultiplier: 1 1003 | --- !u!222 &1870893121 1004 | CanvasRenderer: 1005 | m_ObjectHideFlags: 0 1006 | m_CorrespondingSourceObject: {fileID: 0} 1007 | m_PrefabInstance: {fileID: 0} 1008 | m_PrefabAsset: {fileID: 0} 1009 | m_GameObject: {fileID: 1870893118} 1010 | m_CullTransparentMesh: 1 1011 | --------------------------------------------------------------------------------