├── .gitattributes ├── .gitignore ├── Assets ├── Samples.meta ├── Samples │ ├── XR Interaction Toolkit.meta │ └── XR Interaction Toolkit │ │ ├── 0.10.0-preview.7.meta │ │ └── 0.10.0-preview.7 │ │ ├── Default Input Actions.meta │ │ └── Default Input Actions │ │ ├── .sample.json │ │ ├── XRI Default Continuous Move.preset │ │ ├── XRI Default Continuous Move.preset.meta │ │ ├── XRI Default Continuous Turn.preset │ │ ├── XRI Default Continuous Turn.preset.meta │ │ ├── XRI Default Input Actions.inputactions │ │ ├── XRI Default Input Actions.inputactions.meta │ │ ├── XRI Default Left Controller.preset │ │ ├── XRI Default Left Controller.preset.meta │ │ ├── XRI Default Right Controller.preset │ │ ├── XRI Default Right Controller.preset.meta │ │ ├── XRI Default Snap Turn.preset │ │ └── XRI Default Snap Turn.preset.meta ├── XR.meta ├── XR │ ├── Loaders.meta │ ├── Loaders │ │ ├── Open XR Loader No Pre Init.asset │ │ ├── Open XR Loader No Pre Init.asset.meta │ │ ├── Open XR Loader.asset │ │ └── Open XR Loader.asset.meta │ ├── Settings.meta │ ├── Settings │ │ ├── Open XR Package Settings.asset │ │ ├── Open XR Package Settings.asset.meta │ │ ├── OpenXR Editor Settings.asset │ │ └── OpenXR Editor Settings.asset.meta │ ├── XRGeneralSettings.asset │ └── XRGeneralSettings.asset.meta ├── _OpenXR.meta └── _OpenXR │ ├── Materials.meta │ ├── Materials │ ├── Grey.mat │ ├── Grey.mat.meta │ ├── Pink.mat │ ├── Pink.mat.meta │ ├── PinkTexture.mat │ ├── PinkTexture.mat.meta │ ├── White.mat │ └── White.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ ├── Hand.prefab │ ├── Hand.prefab.meta │ ├── InputExample.prefab │ ├── InputExample.prefab.meta │ ├── InteractableExample.prefab │ └── InteractableExample.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ ├── Main.unity │ ├── Main.unity.meta │ ├── MainSceneSettings.lighting │ └── MainSceneSettings.lighting.meta │ ├── Scripts.meta │ ├── Scripts │ ├── AssetInputExample.cs │ ├── AssetInputExample.cs.meta │ ├── InteractableExample.cs │ └── InteractableExample.cs.meta │ ├── Textures.meta │ └── Textures │ ├── Pink.png │ └── Pink.png.meta ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json └── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset ├── XRPackageSettings.asset └── XRSettings.asset /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # This .gitignore file should be placed at the root of your Unity project directory 2 | # 3 | # Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore 4 | # 5 | /[Ll]ibrary/ 6 | /[Tt]emp/ 7 | /[Oo]bj/ 8 | /[Bb]uild/ 9 | /[Bb]uilds/ 10 | /[Ll]ogs/ 11 | /[Mm]emoryCaptures/ 12 | 13 | # Never ignore Asset meta data 14 | !/[Aa]ssets/**/*.meta 15 | 16 | # Uncomment this line if you wish to ignore the asset store tools plugin 17 | # /[Aa]ssets/AssetStoreTools* 18 | 19 | # Autogenerated Jetbrains Rider plugin 20 | [Aa]ssets/Plugins/Editor/JetBrains* 21 | 22 | # Visual Studio cache directory 23 | .vs/ 24 | 25 | # Gradle cache directory 26 | .gradle/ 27 | 28 | # Autogenerated VS/MD/Consulo solution and project files 29 | ExportedObj/ 30 | .consulo/ 31 | *.csproj 32 | *.unityproj 33 | *.sln 34 | *.suo 35 | *.tmp 36 | *.user 37 | *.userprefs 38 | *.pidb 39 | *.booproj 40 | *.svd 41 | *.pdb 42 | *.mdb 43 | *.opendb 44 | *.VC.db 45 | 46 | # Unity3D generated meta files 47 | *.pidb.meta 48 | *.pdb.meta 49 | *.mdb.meta 50 | 51 | # Unity3D generated file on crash reports 52 | sysinfo.txt 53 | 54 | # Builds 55 | *.apk 56 | *.unitypackage 57 | 58 | # Crashlytics generated file 59 | crashlytics-build.properties 60 | 61 | -------------------------------------------------------------------------------- /Assets/Samples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6688a50d21025184ca3ac67937e6f528 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c7591424b878984d837c60d0176e65a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit/0.10.0-preview.7.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab825c2b44bdbc4448e0ca06d2fd9bfa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit/0.10.0-preview.7/Default Input Actions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 287593f3aeefead4e9ea00b7b5a73c15 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit/0.10.0-preview.7/Default Input Actions/.sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "displayName": "Default Input Actions", 3 | "description": "Default set of input actions and presets for use with XR Interaction Toolkit behaviors that utilize the Input System." 4 | } 5 | -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit/0.10.0-preview.7/Default Input Actions/XRI Default Continuous Move.preset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!181963792 &2655988077585873504 4 | Preset: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: XRI Default Continuous Move 10 | m_TargetType: 11 | m_NativeTypeID: 114 12 | m_ManagedTypePPtr: {fileID: 11500000, guid: 0bf296fc962d7184ab14ad1841598d5f, 13 | type: 3} 14 | m_ManagedTypeFallback: 15 | m_Properties: 16 | - target: {fileID: 0} 17 | propertyPath: m_Enabled 18 | value: 1 19 | objectReference: {fileID: 0} 20 | - target: {fileID: 0} 21 | propertyPath: m_EditorHideFlags 22 | value: 0 23 | objectReference: {fileID: 0} 24 | - target: {fileID: 0} 25 | propertyPath: m_EditorClassIdentifier 26 | value: 27 | objectReference: {fileID: 0} 28 | - target: {fileID: 0} 29 | propertyPath: m_System 30 | value: 31 | objectReference: {fileID: 0} 32 | - target: {fileID: 0} 33 | propertyPath: m_MoveSpeed 34 | value: 1 35 | objectReference: {fileID: 0} 36 | - target: {fileID: 0} 37 | propertyPath: m_EnableStrafe 38 | value: 1 39 | objectReference: {fileID: 0} 40 | - target: {fileID: 0} 41 | propertyPath: m_UseGravity 42 | value: 1 43 | objectReference: {fileID: 0} 44 | - target: {fileID: 0} 45 | propertyPath: m_GravityApplicationMode 46 | value: 0 47 | objectReference: {fileID: 0} 48 | - target: {fileID: 0} 49 | propertyPath: m_ForwardSource 50 | value: 51 | objectReference: {fileID: 0} 52 | - target: {fileID: 0} 53 | propertyPath: m_LeftHandMoveAction.m_UseReference 54 | value: 1 55 | objectReference: {fileID: 0} 56 | - target: {fileID: 0} 57 | propertyPath: m_LeftHandMoveAction.m_Action.m_Name 58 | value: Left Hand Move 59 | objectReference: {fileID: 0} 60 | - target: {fileID: 0} 61 | propertyPath: m_LeftHandMoveAction.m_Action.m_Type 62 | value: 0 63 | objectReference: {fileID: 0} 64 | - target: {fileID: 0} 65 | propertyPath: m_LeftHandMoveAction.m_Action.m_ExpectedControlType 66 | value: 67 | objectReference: {fileID: 0} 68 | - target: {fileID: 0} 69 | propertyPath: m_LeftHandMoveAction.m_Action.m_Id 70 | value: 75f1b245-c357-48c8-9acb-8967bec9dda2 71 | objectReference: {fileID: 0} 72 | - target: {fileID: 0} 73 | propertyPath: m_LeftHandMoveAction.m_Action.m_Processors 74 | value: 75 | objectReference: {fileID: 0} 76 | - target: {fileID: 0} 77 | propertyPath: m_LeftHandMoveAction.m_Action.m_Interactions 78 | value: 79 | objectReference: {fileID: 0} 80 | - target: {fileID: 0} 81 | propertyPath: m_LeftHandMoveAction.m_Action.m_SingletonActionBindings.Array.size 82 | value: 0 83 | objectReference: {fileID: 0} 84 | - target: {fileID: 0} 85 | propertyPath: m_LeftHandMoveAction.m_Reference 86 | value: 87 | objectReference: {fileID: 6972639530819350904, guid: c348712bda248c246b8c49b3db54643f, 88 | type: 3} 89 | - target: {fileID: 0} 90 | propertyPath: m_RightHandMoveAction.m_UseReference 91 | value: 1 92 | objectReference: {fileID: 0} 93 | - target: {fileID: 0} 94 | propertyPath: m_RightHandMoveAction.m_Action.m_Name 95 | value: Right Hand Move 96 | objectReference: {fileID: 0} 97 | - target: {fileID: 0} 98 | propertyPath: m_RightHandMoveAction.m_Action.m_Type 99 | value: 0 100 | objectReference: {fileID: 0} 101 | - target: {fileID: 0} 102 | propertyPath: m_RightHandMoveAction.m_Action.m_ExpectedControlType 103 | value: 104 | objectReference: {fileID: 0} 105 | - target: {fileID: 0} 106 | propertyPath: m_RightHandMoveAction.m_Action.m_Id 107 | value: 6bf6c732-e011-46b1-acc5-b649a4ec5f10 108 | objectReference: {fileID: 0} 109 | - target: {fileID: 0} 110 | propertyPath: m_RightHandMoveAction.m_Action.m_Processors 111 | value: 112 | objectReference: {fileID: 0} 113 | - target: {fileID: 0} 114 | propertyPath: m_RightHandMoveAction.m_Action.m_Interactions 115 | value: 116 | objectReference: {fileID: 0} 117 | - target: {fileID: 0} 118 | propertyPath: m_RightHandMoveAction.m_Action.m_SingletonActionBindings.Array.size 119 | value: 0 120 | objectReference: {fileID: 0} 121 | - target: {fileID: 0} 122 | propertyPath: m_RightHandMoveAction.m_Reference 123 | value: 124 | objectReference: {fileID: -8198699208435500284, guid: c348712bda248c246b8c49b3db54643f, 125 | type: 3} 126 | -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit/0.10.0-preview.7/Default Input Actions/XRI Default Continuous Move.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91f9da00cfdac5d49955df2d2d820b9c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit/0.10.0-preview.7/Default Input Actions/XRI Default Continuous Turn.preset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!181963792 &2655988077585873504 4 | Preset: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: XRI Default Continuous Turn 10 | m_TargetType: 11 | m_NativeTypeID: 114 12 | m_ManagedTypePPtr: {fileID: 11500000, guid: 919e39492806b334982b6b84c90dd927, 13 | type: 3} 14 | m_ManagedTypeFallback: 15 | m_Properties: 16 | - target: {fileID: 0} 17 | propertyPath: m_Enabled 18 | value: 1 19 | objectReference: {fileID: 0} 20 | - target: {fileID: 0} 21 | propertyPath: m_EditorHideFlags 22 | value: 0 23 | objectReference: {fileID: 0} 24 | - target: {fileID: 0} 25 | propertyPath: m_EditorClassIdentifier 26 | value: 27 | objectReference: {fileID: 0} 28 | - target: {fileID: 0} 29 | propertyPath: m_System 30 | value: 31 | objectReference: {fileID: 0} 32 | - target: {fileID: 0} 33 | propertyPath: m_TurnSpeed 34 | value: 60 35 | objectReference: {fileID: 0} 36 | - target: {fileID: 0} 37 | propertyPath: m_LeftHandTurnAction.m_UseReference 38 | value: 1 39 | objectReference: {fileID: 0} 40 | - target: {fileID: 0} 41 | propertyPath: m_LeftHandTurnAction.m_Action.m_Name 42 | value: Left Hand Turn 43 | objectReference: {fileID: 0} 44 | - target: {fileID: 0} 45 | propertyPath: m_LeftHandTurnAction.m_Action.m_Type 46 | value: 0 47 | objectReference: {fileID: 0} 48 | - target: {fileID: 0} 49 | propertyPath: m_LeftHandTurnAction.m_Action.m_ExpectedControlType 50 | value: 51 | objectReference: {fileID: 0} 52 | - target: {fileID: 0} 53 | propertyPath: m_LeftHandTurnAction.m_Action.m_Id 54 | value: b9ac2485-f305-451c-9106-d1d25cc235dc 55 | objectReference: {fileID: 0} 56 | - target: {fileID: 0} 57 | propertyPath: m_LeftHandTurnAction.m_Action.m_Processors 58 | value: 59 | objectReference: {fileID: 0} 60 | - target: {fileID: 0} 61 | propertyPath: m_LeftHandTurnAction.m_Action.m_Interactions 62 | value: 63 | objectReference: {fileID: 0} 64 | - target: {fileID: 0} 65 | propertyPath: m_LeftHandTurnAction.m_Action.m_SingletonActionBindings.Array.size 66 | value: 0 67 | objectReference: {fileID: 0} 68 | - target: {fileID: 0} 69 | propertyPath: m_LeftHandTurnAction.m_Reference 70 | value: 71 | objectReference: {fileID: 1010738217276881514, guid: c348712bda248c246b8c49b3db54643f, 72 | type: 3} 73 | - target: {fileID: 0} 74 | propertyPath: m_RightHandTurnAction.m_UseReference 75 | value: 1 76 | objectReference: {fileID: 0} 77 | - target: {fileID: 0} 78 | propertyPath: m_RightHandTurnAction.m_Action.m_Name 79 | value: Right Hand Turn 80 | objectReference: {fileID: 0} 81 | - target: {fileID: 0} 82 | propertyPath: m_RightHandTurnAction.m_Action.m_Type 83 | value: 0 84 | objectReference: {fileID: 0} 85 | - target: {fileID: 0} 86 | propertyPath: m_RightHandTurnAction.m_Action.m_ExpectedControlType 87 | value: 88 | objectReference: {fileID: 0} 89 | - target: {fileID: 0} 90 | propertyPath: m_RightHandTurnAction.m_Action.m_Id 91 | value: 93119ec4-ae3b-41c0-8fb4-7ff4c5e6f732 92 | objectReference: {fileID: 0} 93 | - target: {fileID: 0} 94 | propertyPath: m_RightHandTurnAction.m_Action.m_Processors 95 | value: 96 | objectReference: {fileID: 0} 97 | - target: {fileID: 0} 98 | propertyPath: m_RightHandTurnAction.m_Action.m_Interactions 99 | value: 100 | objectReference: {fileID: 0} 101 | - target: {fileID: 0} 102 | propertyPath: m_RightHandTurnAction.m_Action.m_SingletonActionBindings.Array.size 103 | value: 0 104 | objectReference: {fileID: 0} 105 | - target: {fileID: 0} 106 | propertyPath: m_RightHandTurnAction.m_Reference 107 | value: 108 | objectReference: {fileID: -6493913391331992944, guid: c348712bda248c246b8c49b3db54643f, 109 | type: 3} 110 | -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit/0.10.0-preview.7/Default Input Actions/XRI Default Continuous Turn.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0caad3af14f9a414dbdf25ed41e5aa47 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit/0.10.0-preview.7/Default Input Actions/XRI Default Input Actions.inputactions: -------------------------------------------------------------------------------- 1 | { 2 | "name": "XRI Default Input Actions", 3 | "maps": [ 4 | { 5 | "name": "XRI HMD", 6 | "id": "09ff3ccc-21b4-4346-a3a2-7c978b5af892", 7 | "actions": [ 8 | { 9 | "name": "Position", 10 | "type": "Value", 11 | "id": "1a9029f8-7a46-46b9-9eff-e9ae8365f611", 12 | "expectedControlType": "Vector3", 13 | "processors": "", 14 | "interactions": "" 15 | }, 16 | { 17 | "name": "Rotation", 18 | "type": "Value", 19 | "id": "aed87fe6-2b01-4dd2-a8fa-195578fd8158", 20 | "expectedControlType": "Quaternion", 21 | "processors": "", 22 | "interactions": "" 23 | } 24 | ], 25 | "bindings": [ 26 | { 27 | "name": "", 28 | "id": "cff1f981-6e1f-4e2c-a90c-715a0ea2e80e", 29 | "path": "/centerEyePosition", 30 | "interactions": "", 31 | "processors": "", 32 | "groups": "Generic XR Controller", 33 | "action": "Position", 34 | "isComposite": false, 35 | "isPartOfComposite": false 36 | }, 37 | { 38 | "name": "", 39 | "id": "e2017383-a3f6-4c46-acb1-012b8eece9cc", 40 | "path": "/centerEyeRotation", 41 | "interactions": "", 42 | "processors": "", 43 | "groups": "Generic XR Controller", 44 | "action": "Rotation", 45 | "isComposite": false, 46 | "isPartOfComposite": false 47 | } 48 | ] 49 | }, 50 | { 51 | "name": "XRI LeftHand", 52 | "id": "5fe596f9-1b7b-49b7-80a7-3b5195caf74d", 53 | "actions": [ 54 | { 55 | "name": "Position", 56 | "type": "Value", 57 | "id": "83a7af0b-87e3-42c3-a909-95fbf8091e4f", 58 | "expectedControlType": "Vector3", 59 | "processors": "", 60 | "interactions": "" 61 | }, 62 | { 63 | "name": "Rotation", 64 | "type": "Value", 65 | "id": "cb6b7130-2bac-4ef7-abe4-6991ae7d419d", 66 | "expectedControlType": "Quaternion", 67 | "processors": "", 68 | "interactions": "" 69 | }, 70 | { 71 | "name": "Select", 72 | "type": "Button", 73 | "id": "33754c03-48ec-46ef-9bc6-22ed6bfdd8e8", 74 | "expectedControlType": "Button", 75 | "processors": "", 76 | "interactions": "" 77 | }, 78 | { 79 | "name": "Activate", 80 | "type": "Value", 81 | "id": "0c0991c5-d329-4afc-8892-1076b440477c", 82 | "expectedControlType": "Axis", 83 | "processors": "", 84 | "interactions": "" 85 | }, 86 | { 87 | "name": "UI Press", 88 | "type": "Button", 89 | "id": "7e1eced7-c774-4fe5-be8f-d8711f646d9e", 90 | "expectedControlType": "Button", 91 | "processors": "", 92 | "interactions": "" 93 | }, 94 | { 95 | "name": "Haptic Device", 96 | "type": "PassThrough", 97 | "id": "664a62b0-e178-421d-b3f8-014eec01591d", 98 | "expectedControlType": "", 99 | "processors": "", 100 | "interactions": "" 101 | }, 102 | { 103 | "name": "Teleport Select", 104 | "type": "Button", 105 | "id": "cbeaf823-3b69-4004-8ec8-13ea2ca3fc31", 106 | "expectedControlType": "Button", 107 | "processors": "", 108 | "interactions": "" 109 | }, 110 | { 111 | "name": "Teleport Mode Activate", 112 | "type": "Button", 113 | "id": "a21db72c-4843-4839-b4d0-3ce8d287cb86", 114 | "expectedControlType": "Button", 115 | "processors": "", 116 | "interactions": "" 117 | }, 118 | { 119 | "name": "Teleport Mode Cancel", 120 | "type": "Button", 121 | "id": "89ce8348-6001-41a3-85b9-f8f2e2dcad7c", 122 | "expectedControlType": "Button", 123 | "processors": "", 124 | "interactions": "" 125 | }, 126 | { 127 | "name": "Turn", 128 | "type": "Value", 129 | "id": "9164e093-ebd4-4923-af32-1b52f31c2d66", 130 | "expectedControlType": "Vector2", 131 | "processors": "", 132 | "interactions": "" 133 | }, 134 | { 135 | "name": "Move", 136 | "type": "Value", 137 | "id": "9693e25f-8a4f-4aed-842f-3961243c69a1", 138 | "expectedControlType": "Vector2", 139 | "processors": "", 140 | "interactions": "" 141 | }, 142 | { 143 | "name": "Rotate Anchor", 144 | "type": "Value", 145 | "id": "21b75b25-12ad-410f-b4f8-a7745b7aca27", 146 | "expectedControlType": "Vector2", 147 | "processors": "", 148 | "interactions": "" 149 | }, 150 | { 151 | "name": "Translate Anchor", 152 | "type": "Value", 153 | "id": "bfa204c7-3c92-4193-bad1-39eb71920042", 154 | "expectedControlType": "Vector2", 155 | "processors": "", 156 | "interactions": "" 157 | } 158 | ], 159 | "bindings": [ 160 | { 161 | "name": "", 162 | "id": "b34c79c1-ab5e-4851-87ac-abc43705eae0", 163 | "path": "{LeftHand}/triggerPressed", 164 | "interactions": "", 165 | "processors": "", 166 | "groups": "Generic XR Controller", 167 | "action": "UI Press", 168 | "isComposite": false, 169 | "isPartOfComposite": false 170 | }, 171 | { 172 | "name": "", 173 | "id": "79634234-07c9-488b-98bd-7d83eb6895c5", 174 | "path": "{LeftHand}/deviceRotation", 175 | "interactions": "", 176 | "processors": "", 177 | "groups": "Generic XR Controller", 178 | "action": "Rotation", 179 | "isComposite": false, 180 | "isPartOfComposite": false 181 | }, 182 | { 183 | "name": "", 184 | "id": "8da6ed3a-f621-49fe-8c76-1f6b7d7754d6", 185 | "path": "{LeftHand}/Primary2DAxis", 186 | "interactions": "Sector(directions=1)", 187 | "processors": "", 188 | "groups": "Noncontinuous Move", 189 | "action": "Teleport Mode Activate", 190 | "isComposite": false, 191 | "isPartOfComposite": false 192 | }, 193 | { 194 | "name": "", 195 | "id": "b8edee81-6779-4aa8-89cd-29b149a8f55e", 196 | "path": "{LeftHand}/primaryButton", 197 | "interactions": "", 198 | "processors": "", 199 | "groups": "Generic XR Controller", 200 | "action": "Teleport Mode Activate", 201 | "isComposite": false, 202 | "isPartOfComposite": false 203 | }, 204 | { 205 | "name": "", 206 | "id": "b8aebee7-fa03-43d4-bfb7-77a3f87452cc", 207 | "path": "{LeftHand}/gripPressed", 208 | "interactions": "", 209 | "processors": "", 210 | "groups": "Generic XR Controller", 211 | "action": "Teleport Mode Cancel", 212 | "isComposite": false, 213 | "isPartOfComposite": false 214 | }, 215 | { 216 | "name": "", 217 | "id": "95fa1419-ca7b-4c8a-8d15-7d46e58d82e3", 218 | "path": "{LeftHand}/Primary2DAxis", 219 | "interactions": "Sector(directions=-1,sweepBehavior=3)", 220 | "processors": "", 221 | "groups": "Noncontinuous Move", 222 | "action": "Teleport Select", 223 | "isComposite": false, 224 | "isPartOfComposite": false 225 | }, 226 | { 227 | "name": "", 228 | "id": "14a27f53-867e-4d15-92d9-3e36deb55b1b", 229 | "path": "{LeftHand}/primaryButton", 230 | "interactions": "", 231 | "processors": "", 232 | "groups": "Generic XR Controller", 233 | "action": "Teleport Select", 234 | "isComposite": false, 235 | "isPartOfComposite": false 236 | }, 237 | { 238 | "name": "", 239 | "id": "3bf4fccb-bf42-4ec5-b215-c967f1d71642", 240 | "path": "{LeftHand}/devicePosition", 241 | "interactions": "", 242 | "processors": "", 243 | "groups": "Generic XR Controller", 244 | "action": "Position", 245 | "isComposite": false, 246 | "isPartOfComposite": false 247 | }, 248 | { 249 | "name": "", 250 | "id": "71a4d23f-3e9a-4513-923b-ba388c5e84bf", 251 | "path": "{LeftHand}/gripPressed", 252 | "interactions": "", 253 | "processors": "", 254 | "groups": "Generic XR Controller", 255 | "action": "Select", 256 | "isComposite": false, 257 | "isPartOfComposite": false 258 | }, 259 | { 260 | "name": "", 261 | "id": "487f4f2e-9e9b-49aa-b0f2-4037a24624f5", 262 | "path": "{LeftHand}/triggerPressed", 263 | "interactions": "", 264 | "processors": "", 265 | "groups": "Generic XR Controller", 266 | "action": "Activate", 267 | "isComposite": false, 268 | "isPartOfComposite": false 269 | }, 270 | { 271 | "name": "", 272 | "id": "39aa1724-a43c-4afc-aba4-cb859e3202b7", 273 | "path": "{LeftHand}/Primary2DAxis", 274 | "interactions": "", 275 | "processors": "", 276 | "groups": "Generic XR Controller", 277 | "action": "Translate Anchor", 278 | "isComposite": false, 279 | "isPartOfComposite": false 280 | }, 281 | { 282 | "name": "", 283 | "id": "99cb7ad1-51ec-4611-af68-92a85f2c17d6", 284 | "path": "{LeftHand}/Primary2DAxis", 285 | "interactions": "Sector(directions=12,sweepBehavior=1)", 286 | "processors": "", 287 | "groups": "Noncontinuous Move", 288 | "action": "Turn", 289 | "isComposite": false, 290 | "isPartOfComposite": false 291 | }, 292 | { 293 | "name": "", 294 | "id": "034c3ced-8f2c-44ce-892e-678ca433265b", 295 | "path": "{LeftHand}/Primary2DAxis", 296 | "interactions": "Sector(directions=2,sweepBehavior=2)", 297 | "processors": "", 298 | "groups": "Noncontinuous Move", 299 | "action": "Turn", 300 | "isComposite": false, 301 | "isPartOfComposite": false 302 | }, 303 | { 304 | "name": "", 305 | "id": "8e383b1a-270f-4c20-819b-89a59cffb498", 306 | "path": "{LeftHand}/Primary2DAxis", 307 | "interactions": "", 308 | "processors": "StickDeadzone", 309 | "groups": "Continuous Move", 310 | "action": "Move", 311 | "isComposite": false, 312 | "isPartOfComposite": false 313 | }, 314 | { 315 | "name": "", 316 | "id": "830c14df-3b19-4470-b5d6-7e4cad86b44b", 317 | "path": "{LeftHand}/Primary2DAxis", 318 | "interactions": "", 319 | "processors": "", 320 | "groups": "Generic XR Controller", 321 | "action": "Rotate Anchor", 322 | "isComposite": false, 323 | "isPartOfComposite": false 324 | }, 325 | { 326 | "name": "", 327 | "id": "acdf9550-5529-4ff7-8558-73ecdf0d75bd", 328 | "path": "{LeftHand}/*", 329 | "interactions": "", 330 | "processors": "", 331 | "groups": "Generic XR Controller", 332 | "action": "Haptic Device", 333 | "isComposite": false, 334 | "isPartOfComposite": false 335 | } 336 | ] 337 | }, 338 | { 339 | "name": "XRI RightHand", 340 | "id": "7960f8ef-2bf3-4281-aecc-4c03809d6c8c", 341 | "actions": [ 342 | { 343 | "name": "Position", 344 | "type": "Value", 345 | "id": "c4990d70-7b8a-4ce1-b03c-da86716b8352", 346 | "expectedControlType": "Vector3", 347 | "processors": "", 348 | "interactions": "" 349 | }, 350 | { 351 | "name": "Rotation", 352 | "type": "Value", 353 | "id": "ee6bf5bf-bb0a-4a50-8327-cb654b19e298", 354 | "expectedControlType": "Quaternion", 355 | "processors": "", 356 | "interactions": "" 357 | }, 358 | { 359 | "name": "Select", 360 | "type": "Button", 361 | "id": "ac96c10b-c955-4a46-8e67-bf16bc069b53", 362 | "expectedControlType": "Button", 363 | "processors": "", 364 | "interactions": "" 365 | }, 366 | { 367 | "name": "Activate", 368 | "type": "Value", 369 | "id": "41976d89-60de-4deb-bff9-16b4af96b290", 370 | "expectedControlType": "Axis", 371 | "processors": "", 372 | "interactions": "" 373 | }, 374 | { 375 | "name": "UI Press", 376 | "type": "Button", 377 | "id": "65174b45-c2ee-4f90-93bb-fb4084eaaab3", 378 | "expectedControlType": "Button", 379 | "processors": "", 380 | "interactions": "" 381 | }, 382 | { 383 | "name": "Haptic Device", 384 | "type": "PassThrough", 385 | "id": "57b2a1b4-3290-46d6-ac07-4854ee8f91b1", 386 | "expectedControlType": "", 387 | "processors": "", 388 | "interactions": "" 389 | }, 390 | { 391 | "name": "Teleport Select", 392 | "type": "Button", 393 | "id": "02e43582-8973-4940-af06-dff6158e3df2", 394 | "expectedControlType": "Button", 395 | "processors": "", 396 | "interactions": "" 397 | }, 398 | { 399 | "name": "Teleport Mode Activate", 400 | "type": "Button", 401 | "id": "a6c7231d-c55d-4dd4-9e87-877bb5522ef5", 402 | "expectedControlType": "Button", 403 | "processors": "", 404 | "interactions": "" 405 | }, 406 | { 407 | "name": "Teleport Mode Cancel", 408 | "type": "Button", 409 | "id": "d587b60c-39a0-4365-8075-477ce484ba0f", 410 | "expectedControlType": "Button", 411 | "processors": "", 412 | "interactions": "" 413 | }, 414 | { 415 | "name": "Turn", 416 | "type": "Value", 417 | "id": "9fb2eb2b-2fb6-4328-8167-10a1bf11b424", 418 | "expectedControlType": "Vector2", 419 | "processors": "", 420 | "interactions": "" 421 | }, 422 | { 423 | "name": "Move", 424 | "type": "Value", 425 | "id": "00a4dc9f-1ee6-4349-b0e9-72d5dccaadd6", 426 | "expectedControlType": "Vector2", 427 | "processors": "", 428 | "interactions": "" 429 | }, 430 | { 431 | "name": "Rotate Anchor", 432 | "type": "Value", 433 | "id": "9b5d8312-f609-4895-b70f-81a722b2ae11", 434 | "expectedControlType": "Vector2", 435 | "processors": "", 436 | "interactions": "" 437 | }, 438 | { 439 | "name": "Translate Anchor", 440 | "type": "Value", 441 | "id": "6f7cf253-7062-443b-b10f-2be48a33f027", 442 | "expectedControlType": "Vector2", 443 | "processors": "", 444 | "interactions": "" 445 | } 446 | ], 447 | "bindings": [ 448 | { 449 | "name": "", 450 | "id": "fa59aed1-ae0b-4074-a58c-294b85f46228", 451 | "path": "{RightHand}/trigger", 452 | "interactions": "", 453 | "processors": "", 454 | "groups": "Generic XR Controller", 455 | "action": "Activate", 456 | "isComposite": false, 457 | "isPartOfComposite": false 458 | }, 459 | { 460 | "name": "", 461 | "id": "8d2a5710-51f9-4e4b-a592-021821e5caa7", 462 | "path": "{RightHand}/deviceRotation", 463 | "interactions": "", 464 | "processors": "", 465 | "groups": "Generic XR Controller", 466 | "action": "Rotation", 467 | "isComposite": false, 468 | "isPartOfComposite": false 469 | }, 470 | { 471 | "name": "", 472 | "id": "62690862-4688-4010-975b-b3d9c6062157", 473 | "path": "{RightHand}/Primary2DAxis", 474 | "interactions": "Sector(directions=1)", 475 | "processors": "", 476 | "groups": "Generic XR Controller", 477 | "action": "Teleport Mode Activate", 478 | "isComposite": false, 479 | "isPartOfComposite": false 480 | }, 481 | { 482 | "name": "", 483 | "id": "90efd65e-3290-4798-af15-21ab4d7848b5", 484 | "path": "{RightHand}/primaryButton", 485 | "interactions": "", 486 | "processors": "", 487 | "groups": "Generic XR Controller", 488 | "action": "Teleport Mode Activate", 489 | "isComposite": false, 490 | "isPartOfComposite": false 491 | }, 492 | { 493 | "name": "", 494 | "id": "de466e6e-12bf-46a1-b0fd-ffbc343f3399", 495 | "path": "{RightHand}/gripPressed", 496 | "interactions": "", 497 | "processors": "", 498 | "groups": "Generic XR Controller", 499 | "action": "Teleport Mode Cancel", 500 | "isComposite": false, 501 | "isPartOfComposite": false 502 | }, 503 | { 504 | "name": "", 505 | "id": "919c4a6c-22ed-4083-8e14-f30e91ff59fe", 506 | "path": "{RightHand}/Primary2DAxis", 507 | "interactions": "Sector(directions=-1,sweepBehavior=3)", 508 | "processors": "", 509 | "groups": "Generic XR Controller", 510 | "action": "Teleport Select", 511 | "isComposite": false, 512 | "isPartOfComposite": false 513 | }, 514 | { 515 | "name": "", 516 | "id": "f7e6d19f-8306-47c9-8ca9-d3b6137565dc", 517 | "path": "{RightHand}/primaryButton", 518 | "interactions": "", 519 | "processors": "", 520 | "groups": "Generic XR Controller", 521 | "action": "Teleport Select", 522 | "isComposite": false, 523 | "isPartOfComposite": false 524 | }, 525 | { 526 | "name": "", 527 | "id": "274078b0-62e5-4730-bcc2-6896b9ad9f0c", 528 | "path": "{RightHand}/devicePosition", 529 | "interactions": "", 530 | "processors": "", 531 | "groups": "Generic XR Controller", 532 | "action": "Position", 533 | "isComposite": false, 534 | "isPartOfComposite": false 535 | }, 536 | { 537 | "name": "", 538 | "id": "1ce80054-410d-4112-a332-50faa7fb4f23", 539 | "path": "{RightHand}/gripPressed", 540 | "interactions": "", 541 | "processors": "", 542 | "groups": "Generic XR Controller", 543 | "action": "Select", 544 | "isComposite": false, 545 | "isPartOfComposite": false 546 | }, 547 | { 548 | "name": "", 549 | "id": "92bb5b8f-bf48-4dab-af05-50a865773895", 550 | "path": "{RightHand}/triggerPressed", 551 | "interactions": "", 552 | "processors": "", 553 | "groups": "Generic XR Controller", 554 | "action": "UI Press", 555 | "isComposite": false, 556 | "isPartOfComposite": false 557 | }, 558 | { 559 | "name": "", 560 | "id": "f029d63b-61df-46ba-b778-4c69688fdadb", 561 | "path": "{RightHand}/Primary2DAxis", 562 | "interactions": "", 563 | "processors": "", 564 | "groups": "Generic XR Controller", 565 | "action": "Translate Anchor", 566 | "isComposite": false, 567 | "isPartOfComposite": false 568 | }, 569 | { 570 | "name": "", 571 | "id": "d6c08c3d-3d41-4695-994d-1ac9016a5a9e", 572 | "path": "{RightHand}/Primary2DAxis", 573 | "interactions": "Sector(directions=12,sweepBehavior=1)", 574 | "processors": "", 575 | "groups": "Generic XR Controller", 576 | "action": "Turn", 577 | "isComposite": false, 578 | "isPartOfComposite": false 579 | }, 580 | { 581 | "name": "", 582 | "id": "70f78baa-0f00-4d32-a2b6-ea9e2090ecc2", 583 | "path": "{RightHand}/Primary2DAxis", 584 | "interactions": "Sector(directions=2,sweepBehavior=2)", 585 | "processors": "", 586 | "groups": "Generic XR Controller", 587 | "action": "Turn", 588 | "isComposite": false, 589 | "isPartOfComposite": false 590 | }, 591 | { 592 | "name": "", 593 | "id": "3de72d27-6d0f-4d5f-935c-1569f7b65825", 594 | "path": "{RightHand}/Primary2DAxis", 595 | "interactions": "", 596 | "processors": "", 597 | "groups": "Generic XR Controller", 598 | "action": "Rotate Anchor", 599 | "isComposite": false, 600 | "isPartOfComposite": false 601 | }, 602 | { 603 | "name": "", 604 | "id": "6011e1e6-b2dd-4cb1-8da5-29b03868f2c5", 605 | "path": "{RightHand}/*", 606 | "interactions": "", 607 | "processors": "", 608 | "groups": "Generic XR Controller", 609 | "action": "Haptic Device", 610 | "isComposite": false, 611 | "isPartOfComposite": false 612 | } 613 | ] 614 | } 615 | ], 616 | "controlSchemes": [ 617 | { 618 | "name": "Generic XR Controller", 619 | "bindingGroup": "Generic XR Controller", 620 | "devices": [ 621 | { 622 | "devicePath": "{LeftHand}", 623 | "isOptional": true, 624 | "isOR": false 625 | }, 626 | { 627 | "devicePath": "{RightHand}", 628 | "isOptional": true, 629 | "isOR": false 630 | }, 631 | { 632 | "devicePath": "", 633 | "isOptional": true, 634 | "isOR": false 635 | }, 636 | { 637 | "devicePath": "", 638 | "isOptional": true, 639 | "isOR": false 640 | } 641 | ] 642 | }, 643 | { 644 | "name": "Continuous Move", 645 | "bindingGroup": "Continuous Move", 646 | "devices": [ 647 | { 648 | "devicePath": "{LeftHand}", 649 | "isOptional": false, 650 | "isOR": false 651 | }, 652 | { 653 | "devicePath": "{RightHand}", 654 | "isOptional": false, 655 | "isOR": false 656 | } 657 | ] 658 | }, 659 | { 660 | "name": "Noncontinuous Move", 661 | "bindingGroup": "Noncontinuous Move", 662 | "devices": [ 663 | { 664 | "devicePath": "{LeftHand}", 665 | "isOptional": false, 666 | "isOR": false 667 | }, 668 | { 669 | "devicePath": "{RightHand}", 670 | "isOptional": false, 671 | "isOR": false 672 | } 673 | ] 674 | } 675 | ] 676 | } -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit/0.10.0-preview.7/Default Input Actions/XRI Default Input Actions.inputactions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c348712bda248c246b8c49b3db54643f 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 8404be70184654265930450def6a9037, type: 3} 11 | generateWrapperCode: 0 12 | wrapperCodePath: 13 | wrapperClassName: 14 | wrapperCodeNamespace: 15 | -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit/0.10.0-preview.7/Default Input Actions/XRI Default Left Controller.preset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!181963792 &2655988077585873504 4 | Preset: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: XRI Default Left Controller 10 | m_TargetType: 11 | m_NativeTypeID: 114 12 | m_ManagedTypePPtr: {fileID: 11500000, guid: caff514de9b15ad48ab85dcff5508221, 13 | type: 3} 14 | m_ManagedTypeFallback: 15 | m_Properties: 16 | - target: {fileID: 0} 17 | propertyPath: m_Enabled 18 | value: 1 19 | objectReference: {fileID: 0} 20 | - target: {fileID: 0} 21 | propertyPath: m_EditorHideFlags 22 | value: 0 23 | objectReference: {fileID: 0} 24 | - target: {fileID: 0} 25 | propertyPath: m_EditorClassIdentifier 26 | value: 27 | objectReference: {fileID: 0} 28 | - target: {fileID: 0} 29 | propertyPath: m_UpdateTrackingType 30 | value: 0 31 | objectReference: {fileID: 0} 32 | - target: {fileID: 0} 33 | propertyPath: m_EnableInputTracking 34 | value: 1 35 | objectReference: {fileID: 0} 36 | - target: {fileID: 0} 37 | propertyPath: m_EnableInputActions 38 | value: 1 39 | objectReference: {fileID: 0} 40 | - target: {fileID: 0} 41 | propertyPath: m_ModelPrefab 42 | value: 43 | objectReference: {fileID: 0} 44 | - target: {fileID: 0} 45 | propertyPath: m_ModelTransform 46 | value: 47 | objectReference: {fileID: 0} 48 | - target: {fileID: 0} 49 | propertyPath: m_AnimateModel 50 | value: 0 51 | objectReference: {fileID: 0} 52 | - target: {fileID: 0} 53 | propertyPath: m_ModelSelectTransition 54 | value: 55 | objectReference: {fileID: 0} 56 | - target: {fileID: 0} 57 | propertyPath: m_ModelDeSelectTransition 58 | value: 59 | objectReference: {fileID: 0} 60 | - target: {fileID: 0} 61 | propertyPath: m_AnchorControlDeadzone 62 | value: 0.75 63 | objectReference: {fileID: 0} 64 | - target: {fileID: 0} 65 | propertyPath: m_AnchorControlOffAxisDeadzone 66 | value: 0.3 67 | objectReference: {fileID: 0} 68 | - target: {fileID: 0} 69 | propertyPath: m_PositionAction.m_UseReference 70 | value: 1 71 | objectReference: {fileID: 0} 72 | - target: {fileID: 0} 73 | propertyPath: m_PositionAction.m_Action.m_Name 74 | value: Position 75 | objectReference: {fileID: 0} 76 | - target: {fileID: 0} 77 | propertyPath: m_PositionAction.m_Action.m_Type 78 | value: 0 79 | objectReference: {fileID: 0} 80 | - target: {fileID: 0} 81 | propertyPath: m_PositionAction.m_Action.m_ExpectedControlType 82 | value: 83 | objectReference: {fileID: 0} 84 | - target: {fileID: 0} 85 | propertyPath: m_PositionAction.m_Action.m_Id 86 | value: 26d2aaa4-6518-4d33-8fae-419043a723d4 87 | objectReference: {fileID: 0} 88 | - target: {fileID: 0} 89 | propertyPath: m_PositionAction.m_Action.m_Processors 90 | value: 91 | objectReference: {fileID: 0} 92 | - target: {fileID: 0} 93 | propertyPath: m_PositionAction.m_Action.m_Interactions 94 | value: 95 | objectReference: {fileID: 0} 96 | - target: {fileID: 0} 97 | propertyPath: m_PositionAction.m_Action.m_SingletonActionBindings.Array.size 98 | value: 0 99 | objectReference: {fileID: 0} 100 | - target: {fileID: 0} 101 | propertyPath: m_PositionAction.m_Reference 102 | value: 103 | objectReference: {fileID: -2024308242397127297, guid: c348712bda248c246b8c49b3db54643f, 104 | type: 3} 105 | - target: {fileID: 0} 106 | propertyPath: m_RotationAction.m_UseReference 107 | value: 1 108 | objectReference: {fileID: 0} 109 | - target: {fileID: 0} 110 | propertyPath: m_RotationAction.m_Action.m_Name 111 | value: Rotation 112 | objectReference: {fileID: 0} 113 | - target: {fileID: 0} 114 | propertyPath: m_RotationAction.m_Action.m_Type 115 | value: 0 116 | objectReference: {fileID: 0} 117 | - target: {fileID: 0} 118 | propertyPath: m_RotationAction.m_Action.m_ExpectedControlType 119 | value: 120 | objectReference: {fileID: 0} 121 | - target: {fileID: 0} 122 | propertyPath: m_RotationAction.m_Action.m_Id 123 | value: d7a15530-737b-416a-9d5d-a8b51ba6c682 124 | objectReference: {fileID: 0} 125 | - target: {fileID: 0} 126 | propertyPath: m_RotationAction.m_Action.m_Processors 127 | value: 128 | objectReference: {fileID: 0} 129 | - target: {fileID: 0} 130 | propertyPath: m_RotationAction.m_Action.m_Interactions 131 | value: 132 | objectReference: {fileID: 0} 133 | - target: {fileID: 0} 134 | propertyPath: m_RotationAction.m_Action.m_SingletonActionBindings.Array.size 135 | value: 0 136 | objectReference: {fileID: 0} 137 | - target: {fileID: 0} 138 | propertyPath: m_RotationAction.m_Reference 139 | value: 140 | objectReference: {fileID: 8248158260566104461, guid: c348712bda248c246b8c49b3db54643f, 141 | type: 3} 142 | - target: {fileID: 0} 143 | propertyPath: m_SelectAction.m_UseReference 144 | value: 1 145 | objectReference: {fileID: 0} 146 | - target: {fileID: 0} 147 | propertyPath: m_SelectAction.m_Action.m_Name 148 | value: Select 149 | objectReference: {fileID: 0} 150 | - target: {fileID: 0} 151 | propertyPath: m_SelectAction.m_Action.m_Type 152 | value: 0 153 | objectReference: {fileID: 0} 154 | - target: {fileID: 0} 155 | propertyPath: m_SelectAction.m_Action.m_ExpectedControlType 156 | value: 157 | objectReference: {fileID: 0} 158 | - target: {fileID: 0} 159 | propertyPath: m_SelectAction.m_Action.m_Id 160 | value: 05483079-4b7c-4369-9176-fb8514428e98 161 | objectReference: {fileID: 0} 162 | - target: {fileID: 0} 163 | propertyPath: m_SelectAction.m_Action.m_Processors 164 | value: 165 | objectReference: {fileID: 0} 166 | - target: {fileID: 0} 167 | propertyPath: m_SelectAction.m_Action.m_Interactions 168 | value: 169 | objectReference: {fileID: 0} 170 | - target: {fileID: 0} 171 | propertyPath: m_SelectAction.m_Action.m_SingletonActionBindings.Array.size 172 | value: 0 173 | objectReference: {fileID: 0} 174 | - target: {fileID: 0} 175 | propertyPath: m_SelectAction.m_Reference 176 | value: 177 | objectReference: {fileID: -6131295136447488360, guid: c348712bda248c246b8c49b3db54643f, 178 | type: 3} 179 | - target: {fileID: 0} 180 | propertyPath: m_ActivateAction.m_UseReference 181 | value: 1 182 | objectReference: {fileID: 0} 183 | - target: {fileID: 0} 184 | propertyPath: m_ActivateAction.m_Action.m_Name 185 | value: Activate 186 | objectReference: {fileID: 0} 187 | - target: {fileID: 0} 188 | propertyPath: m_ActivateAction.m_Action.m_Type 189 | value: 0 190 | objectReference: {fileID: 0} 191 | - target: {fileID: 0} 192 | propertyPath: m_ActivateAction.m_Action.m_ExpectedControlType 193 | value: 194 | objectReference: {fileID: 0} 195 | - target: {fileID: 0} 196 | propertyPath: m_ActivateAction.m_Action.m_Id 197 | value: 38e5c09b-96d2-40e4-ae8e-3bfb9eb16727 198 | objectReference: {fileID: 0} 199 | - target: {fileID: 0} 200 | propertyPath: m_ActivateAction.m_Action.m_Processors 201 | value: 202 | objectReference: {fileID: 0} 203 | - target: {fileID: 0} 204 | propertyPath: m_ActivateAction.m_Action.m_Interactions 205 | value: 206 | objectReference: {fileID: 0} 207 | - target: {fileID: 0} 208 | propertyPath: m_ActivateAction.m_Action.m_SingletonActionBindings.Array.size 209 | value: 0 210 | objectReference: {fileID: 0} 211 | - target: {fileID: 0} 212 | propertyPath: m_ActivateAction.m_Reference 213 | value: 214 | objectReference: {fileID: -5982496924579745919, guid: c348712bda248c246b8c49b3db54643f, 215 | type: 3} 216 | - target: {fileID: 0} 217 | propertyPath: m_UIPressAction.m_UseReference 218 | value: 1 219 | objectReference: {fileID: 0} 220 | - target: {fileID: 0} 221 | propertyPath: m_UIPressAction.m_Action.m_Name 222 | value: UI Press 223 | objectReference: {fileID: 0} 224 | - target: {fileID: 0} 225 | propertyPath: m_UIPressAction.m_Action.m_Type 226 | value: 0 227 | objectReference: {fileID: 0} 228 | - target: {fileID: 0} 229 | propertyPath: m_UIPressAction.m_Action.m_ExpectedControlType 230 | value: 231 | objectReference: {fileID: 0} 232 | - target: {fileID: 0} 233 | propertyPath: m_UIPressAction.m_Action.m_Id 234 | value: 347fe4ac-83bc-44f7-a0d2-2793a5775161 235 | objectReference: {fileID: 0} 236 | - target: {fileID: 0} 237 | propertyPath: m_UIPressAction.m_Action.m_Processors 238 | value: 239 | objectReference: {fileID: 0} 240 | - target: {fileID: 0} 241 | propertyPath: m_UIPressAction.m_Action.m_Interactions 242 | value: 243 | objectReference: {fileID: 0} 244 | - target: {fileID: 0} 245 | propertyPath: m_UIPressAction.m_Action.m_SingletonActionBindings.Array.size 246 | value: 0 247 | objectReference: {fileID: 0} 248 | - target: {fileID: 0} 249 | propertyPath: m_UIPressAction.m_Reference 250 | value: 251 | objectReference: {fileID: -6395602842196007441, guid: c348712bda248c246b8c49b3db54643f, 252 | type: 3} 253 | - target: {fileID: 0} 254 | propertyPath: m_HapticDeviceAction.m_UseReference 255 | value: 1 256 | objectReference: {fileID: 0} 257 | - target: {fileID: 0} 258 | propertyPath: m_HapticDeviceAction.m_Action.m_Name 259 | value: Haptic Device 260 | objectReference: {fileID: 0} 261 | - target: {fileID: 0} 262 | propertyPath: m_HapticDeviceAction.m_Action.m_Type 263 | value: 0 264 | objectReference: {fileID: 0} 265 | - target: {fileID: 0} 266 | propertyPath: m_HapticDeviceAction.m_Action.m_ExpectedControlType 267 | value: 268 | objectReference: {fileID: 0} 269 | - target: {fileID: 0} 270 | propertyPath: m_HapticDeviceAction.m_Action.m_Id 271 | value: 35cfed17-bcaf-4ff9-9fe0-fa1727b7619b 272 | objectReference: {fileID: 0} 273 | - target: {fileID: 0} 274 | propertyPath: m_HapticDeviceAction.m_Action.m_Processors 275 | value: 276 | objectReference: {fileID: 0} 277 | - target: {fileID: 0} 278 | propertyPath: m_HapticDeviceAction.m_Action.m_Interactions 279 | value: 280 | objectReference: {fileID: 0} 281 | - target: {fileID: 0} 282 | propertyPath: m_HapticDeviceAction.m_Action.m_SingletonActionBindings.Array.size 283 | value: 0 284 | objectReference: {fileID: 0} 285 | - target: {fileID: 0} 286 | propertyPath: m_HapticDeviceAction.m_Reference 287 | value: 288 | objectReference: {fileID: -8785819595477538065, guid: c348712bda248c246b8c49b3db54643f, 289 | type: 3} 290 | - target: {fileID: 0} 291 | propertyPath: m_RotateAnchorAction.m_UseReference 292 | value: 1 293 | objectReference: {fileID: 0} 294 | - target: {fileID: 0} 295 | propertyPath: m_RotateAnchorAction.m_Action.m_Name 296 | value: Rotate Anchor 297 | objectReference: {fileID: 0} 298 | - target: {fileID: 0} 299 | propertyPath: m_RotateAnchorAction.m_Action.m_Type 300 | value: 0 301 | objectReference: {fileID: 0} 302 | - target: {fileID: 0} 303 | propertyPath: m_RotateAnchorAction.m_Action.m_ExpectedControlType 304 | value: 305 | objectReference: {fileID: 0} 306 | - target: {fileID: 0} 307 | propertyPath: m_RotateAnchorAction.m_Action.m_Id 308 | value: 4fcd4b62-1769-4cc4-aaee-aea2fc40d24f 309 | objectReference: {fileID: 0} 310 | - target: {fileID: 0} 311 | propertyPath: m_RotateAnchorAction.m_Action.m_Processors 312 | value: 313 | objectReference: {fileID: 0} 314 | - target: {fileID: 0} 315 | propertyPath: m_RotateAnchorAction.m_Action.m_Interactions 316 | value: 317 | objectReference: {fileID: 0} 318 | - target: {fileID: 0} 319 | propertyPath: m_RotateAnchorAction.m_Action.m_SingletonActionBindings.Array.size 320 | value: 0 321 | objectReference: {fileID: 0} 322 | - target: {fileID: 0} 323 | propertyPath: m_RotateAnchorAction.m_Reference 324 | value: 325 | objectReference: {fileID: -7363382999065477798, guid: c348712bda248c246b8c49b3db54643f, 326 | type: 3} 327 | - target: {fileID: 0} 328 | propertyPath: m_TranslateAnchorAction.m_UseReference 329 | value: 1 330 | objectReference: {fileID: 0} 331 | - target: {fileID: 0} 332 | propertyPath: m_TranslateAnchorAction.m_Action.m_Name 333 | value: Translate Anchor 334 | objectReference: {fileID: 0} 335 | - target: {fileID: 0} 336 | propertyPath: m_TranslateAnchorAction.m_Action.m_Type 337 | value: 0 338 | objectReference: {fileID: 0} 339 | - target: {fileID: 0} 340 | propertyPath: m_TranslateAnchorAction.m_Action.m_ExpectedControlType 341 | value: 342 | objectReference: {fileID: 0} 343 | - target: {fileID: 0} 344 | propertyPath: m_TranslateAnchorAction.m_Action.m_Id 345 | value: 7bfe4461-8d15-4a61-9fa6-28ce950c9996 346 | objectReference: {fileID: 0} 347 | - target: {fileID: 0} 348 | propertyPath: m_TranslateAnchorAction.m_Action.m_Processors 349 | value: 350 | objectReference: {fileID: 0} 351 | - target: {fileID: 0} 352 | propertyPath: m_TranslateAnchorAction.m_Action.m_Interactions 353 | value: 354 | objectReference: {fileID: 0} 355 | - target: {fileID: 0} 356 | propertyPath: m_TranslateAnchorAction.m_Action.m_SingletonActionBindings.Array.size 357 | value: 0 358 | objectReference: {fileID: 0} 359 | - target: {fileID: 0} 360 | propertyPath: m_TranslateAnchorAction.m_Reference 361 | value: 362 | objectReference: {fileID: 7779212132400271959, guid: c348712bda248c246b8c49b3db54643f, 363 | type: 3} 364 | - target: {fileID: 0} 365 | propertyPath: m_ButtonPressPoint 366 | value: 0.5 367 | objectReference: {fileID: 0} 368 | -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit/0.10.0-preview.7/Default Input Actions/XRI Default Left Controller.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffd8268f7307a0c48a067dad4a8fe060 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit/0.10.0-preview.7/Default Input Actions/XRI Default Right Controller.preset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!181963792 &2655988077585873504 4 | Preset: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: XRI Default Right Controller 10 | m_TargetType: 11 | m_NativeTypeID: 114 12 | m_ManagedTypePPtr: {fileID: 11500000, guid: caff514de9b15ad48ab85dcff5508221, 13 | type: 3} 14 | m_ManagedTypeFallback: 15 | m_Properties: 16 | - target: {fileID: 0} 17 | propertyPath: m_Enabled 18 | value: 1 19 | objectReference: {fileID: 0} 20 | - target: {fileID: 0} 21 | propertyPath: m_EditorHideFlags 22 | value: 0 23 | objectReference: {fileID: 0} 24 | - target: {fileID: 0} 25 | propertyPath: m_EditorClassIdentifier 26 | value: 27 | objectReference: {fileID: 0} 28 | - target: {fileID: 0} 29 | propertyPath: m_UpdateTrackingType 30 | value: 0 31 | objectReference: {fileID: 0} 32 | - target: {fileID: 0} 33 | propertyPath: m_EnableInputTracking 34 | value: 1 35 | objectReference: {fileID: 0} 36 | - target: {fileID: 0} 37 | propertyPath: m_EnableInputActions 38 | value: 1 39 | objectReference: {fileID: 0} 40 | - target: {fileID: 0} 41 | propertyPath: m_ModelPrefab 42 | value: 43 | objectReference: {fileID: 0} 44 | - target: {fileID: 0} 45 | propertyPath: m_ModelTransform 46 | value: 47 | objectReference: {fileID: 0} 48 | - target: {fileID: 0} 49 | propertyPath: m_AnimateModel 50 | value: 0 51 | objectReference: {fileID: 0} 52 | - target: {fileID: 0} 53 | propertyPath: m_ModelSelectTransition 54 | value: 55 | objectReference: {fileID: 0} 56 | - target: {fileID: 0} 57 | propertyPath: m_ModelDeSelectTransition 58 | value: 59 | objectReference: {fileID: 0} 60 | - target: {fileID: 0} 61 | propertyPath: m_AnchorControlDeadzone 62 | value: 0.75 63 | objectReference: {fileID: 0} 64 | - target: {fileID: 0} 65 | propertyPath: m_AnchorControlOffAxisDeadzone 66 | value: 0.3 67 | objectReference: {fileID: 0} 68 | - target: {fileID: 0} 69 | propertyPath: m_PositionAction.m_UseReference 70 | value: 1 71 | objectReference: {fileID: 0} 72 | - target: {fileID: 0} 73 | propertyPath: m_PositionAction.m_Action.m_Name 74 | value: Position 75 | objectReference: {fileID: 0} 76 | - target: {fileID: 0} 77 | propertyPath: m_PositionAction.m_Action.m_Type 78 | value: 0 79 | objectReference: {fileID: 0} 80 | - target: {fileID: 0} 81 | propertyPath: m_PositionAction.m_Action.m_ExpectedControlType 82 | value: 83 | objectReference: {fileID: 0} 84 | - target: {fileID: 0} 85 | propertyPath: m_PositionAction.m_Action.m_Id 86 | value: 93ead265-4bff-4199-8ddf-33c028dcfee9 87 | objectReference: {fileID: 0} 88 | - target: {fileID: 0} 89 | propertyPath: m_PositionAction.m_Action.m_Processors 90 | value: 91 | objectReference: {fileID: 0} 92 | - target: {fileID: 0} 93 | propertyPath: m_PositionAction.m_Action.m_Interactions 94 | value: 95 | objectReference: {fileID: 0} 96 | - target: {fileID: 0} 97 | propertyPath: m_PositionAction.m_Action.m_SingletonActionBindings.Array.size 98 | value: 0 99 | objectReference: {fileID: 0} 100 | - target: {fileID: 0} 101 | propertyPath: m_PositionAction.m_Reference 102 | value: 103 | objectReference: {fileID: -3326005586356538449, guid: c348712bda248c246b8c49b3db54643f, 104 | type: 3} 105 | - target: {fileID: 0} 106 | propertyPath: m_RotationAction.m_UseReference 107 | value: 1 108 | objectReference: {fileID: 0} 109 | - target: {fileID: 0} 110 | propertyPath: m_RotationAction.m_Action.m_Name 111 | value: Rotation 112 | objectReference: {fileID: 0} 113 | - target: {fileID: 0} 114 | propertyPath: m_RotationAction.m_Action.m_Type 115 | value: 0 116 | objectReference: {fileID: 0} 117 | - target: {fileID: 0} 118 | propertyPath: m_RotationAction.m_Action.m_ExpectedControlType 119 | value: 120 | objectReference: {fileID: 0} 121 | - target: {fileID: 0} 122 | propertyPath: m_RotationAction.m_Action.m_Id 123 | value: cd9a8368-32d3-4e58-86a0-6fe78d199369 124 | objectReference: {fileID: 0} 125 | - target: {fileID: 0} 126 | propertyPath: m_RotationAction.m_Action.m_Processors 127 | value: 128 | objectReference: {fileID: 0} 129 | - target: {fileID: 0} 130 | propertyPath: m_RotationAction.m_Action.m_Interactions 131 | value: 132 | objectReference: {fileID: 0} 133 | - target: {fileID: 0} 134 | propertyPath: m_RotationAction.m_Action.m_SingletonActionBindings.Array.size 135 | value: 0 136 | objectReference: {fileID: 0} 137 | - target: {fileID: 0} 138 | propertyPath: m_RotationAction.m_Reference 139 | value: 140 | objectReference: {fileID: 5101698808175986029, guid: c348712bda248c246b8c49b3db54643f, 141 | type: 3} 142 | - target: {fileID: 0} 143 | propertyPath: m_SelectAction.m_UseReference 144 | value: 1 145 | objectReference: {fileID: 0} 146 | - target: {fileID: 0} 147 | propertyPath: m_SelectAction.m_Action.m_Name 148 | value: Select 149 | objectReference: {fileID: 0} 150 | - target: {fileID: 0} 151 | propertyPath: m_SelectAction.m_Action.m_Type 152 | value: 0 153 | objectReference: {fileID: 0} 154 | - target: {fileID: 0} 155 | propertyPath: m_SelectAction.m_Action.m_ExpectedControlType 156 | value: 157 | objectReference: {fileID: 0} 158 | - target: {fileID: 0} 159 | propertyPath: m_SelectAction.m_Action.m_Id 160 | value: 3207346a-8b2f-4b24-b45a-90ea1cdef7fb 161 | objectReference: {fileID: 0} 162 | - target: {fileID: 0} 163 | propertyPath: m_SelectAction.m_Action.m_Processors 164 | value: 165 | objectReference: {fileID: 0} 166 | - target: {fileID: 0} 167 | propertyPath: m_SelectAction.m_Action.m_Interactions 168 | value: 169 | objectReference: {fileID: 0} 170 | - target: {fileID: 0} 171 | propertyPath: m_SelectAction.m_Action.m_SingletonActionBindings.Array.size 172 | value: 0 173 | objectReference: {fileID: 0} 174 | - target: {fileID: 0} 175 | propertyPath: m_SelectAction.m_Reference 176 | value: 177 | objectReference: {fileID: 187161793506945269, guid: c348712bda248c246b8c49b3db54643f, 178 | type: 3} 179 | - target: {fileID: 0} 180 | propertyPath: m_ActivateAction.m_UseReference 181 | value: 1 182 | objectReference: {fileID: 0} 183 | - target: {fileID: 0} 184 | propertyPath: m_ActivateAction.m_Action.m_Name 185 | value: Activate 186 | objectReference: {fileID: 0} 187 | - target: {fileID: 0} 188 | propertyPath: m_ActivateAction.m_Action.m_Type 189 | value: 0 190 | objectReference: {fileID: 0} 191 | - target: {fileID: 0} 192 | propertyPath: m_ActivateAction.m_Action.m_ExpectedControlType 193 | value: 194 | objectReference: {fileID: 0} 195 | - target: {fileID: 0} 196 | propertyPath: m_ActivateAction.m_Action.m_Id 197 | value: ed3be3cd-637e-48d6-ae4b-dd97305eaa40 198 | objectReference: {fileID: 0} 199 | - target: {fileID: 0} 200 | propertyPath: m_ActivateAction.m_Action.m_Processors 201 | value: 202 | objectReference: {fileID: 0} 203 | - target: {fileID: 0} 204 | propertyPath: m_ActivateAction.m_Action.m_Interactions 205 | value: 206 | objectReference: {fileID: 0} 207 | - target: {fileID: 0} 208 | propertyPath: m_ActivateAction.m_Action.m_SingletonActionBindings.Array.size 209 | value: 0 210 | objectReference: {fileID: 0} 211 | - target: {fileID: 0} 212 | propertyPath: m_ActivateAction.m_Reference 213 | value: 214 | objectReference: {fileID: 83097790271614945, guid: c348712bda248c246b8c49b3db54643f, 215 | type: 3} 216 | - target: {fileID: 0} 217 | propertyPath: m_UIPressAction.m_UseReference 218 | value: 1 219 | objectReference: {fileID: 0} 220 | - target: {fileID: 0} 221 | propertyPath: m_UIPressAction.m_Action.m_Name 222 | value: UI Press 223 | objectReference: {fileID: 0} 224 | - target: {fileID: 0} 225 | propertyPath: m_UIPressAction.m_Action.m_Type 226 | value: 0 227 | objectReference: {fileID: 0} 228 | - target: {fileID: 0} 229 | propertyPath: m_UIPressAction.m_Action.m_ExpectedControlType 230 | value: 231 | objectReference: {fileID: 0} 232 | - target: {fileID: 0} 233 | propertyPath: m_UIPressAction.m_Action.m_Id 234 | value: 55ce5c5d-aad8-4ebf-9f21-899ff595a062 235 | objectReference: {fileID: 0} 236 | - target: {fileID: 0} 237 | propertyPath: m_UIPressAction.m_Action.m_Processors 238 | value: 239 | objectReference: {fileID: 0} 240 | - target: {fileID: 0} 241 | propertyPath: m_UIPressAction.m_Action.m_Interactions 242 | value: 243 | objectReference: {fileID: 0} 244 | - target: {fileID: 0} 245 | propertyPath: m_UIPressAction.m_Action.m_SingletonActionBindings.Array.size 246 | value: 0 247 | objectReference: {fileID: 0} 248 | - target: {fileID: 0} 249 | propertyPath: m_UIPressAction.m_Reference 250 | value: 251 | objectReference: {fileID: 3279264004350380116, guid: c348712bda248c246b8c49b3db54643f, 252 | type: 3} 253 | - target: {fileID: 0} 254 | propertyPath: m_HapticDeviceAction.m_UseReference 255 | value: 1 256 | objectReference: {fileID: 0} 257 | - target: {fileID: 0} 258 | propertyPath: m_HapticDeviceAction.m_Action.m_Name 259 | value: Haptic Device 260 | objectReference: {fileID: 0} 261 | - target: {fileID: 0} 262 | propertyPath: m_HapticDeviceAction.m_Action.m_Type 263 | value: 0 264 | objectReference: {fileID: 0} 265 | - target: {fileID: 0} 266 | propertyPath: m_HapticDeviceAction.m_Action.m_ExpectedControlType 267 | value: 268 | objectReference: {fileID: 0} 269 | - target: {fileID: 0} 270 | propertyPath: m_HapticDeviceAction.m_Action.m_Id 271 | value: 60f81e0e-3fab-4e26-90b6-a5ab762e2bb1 272 | objectReference: {fileID: 0} 273 | - target: {fileID: 0} 274 | propertyPath: m_HapticDeviceAction.m_Action.m_Processors 275 | value: 276 | objectReference: {fileID: 0} 277 | - target: {fileID: 0} 278 | propertyPath: m_HapticDeviceAction.m_Action.m_Interactions 279 | value: 280 | objectReference: {fileID: 0} 281 | - target: {fileID: 0} 282 | propertyPath: m_HapticDeviceAction.m_Action.m_SingletonActionBindings.Array.size 283 | value: 0 284 | objectReference: {fileID: 0} 285 | - target: {fileID: 0} 286 | propertyPath: m_HapticDeviceAction.m_Reference 287 | value: 288 | objectReference: {fileID: -8222252007134549311, guid: c348712bda248c246b8c49b3db54643f, 289 | type: 3} 290 | - target: {fileID: 0} 291 | propertyPath: m_RotateAnchorAction.m_UseReference 292 | value: 1 293 | objectReference: {fileID: 0} 294 | - target: {fileID: 0} 295 | propertyPath: m_RotateAnchorAction.m_Action.m_Name 296 | value: Rotate Anchor 297 | objectReference: {fileID: 0} 298 | - target: {fileID: 0} 299 | propertyPath: m_RotateAnchorAction.m_Action.m_Type 300 | value: 0 301 | objectReference: {fileID: 0} 302 | - target: {fileID: 0} 303 | propertyPath: m_RotateAnchorAction.m_Action.m_ExpectedControlType 304 | value: 305 | objectReference: {fileID: 0} 306 | - target: {fileID: 0} 307 | propertyPath: m_RotateAnchorAction.m_Action.m_Id 308 | value: aca8fec0-a925-428d-a6b7-25cfbd478258 309 | objectReference: {fileID: 0} 310 | - target: {fileID: 0} 311 | propertyPath: m_RotateAnchorAction.m_Action.m_Processors 312 | value: 313 | objectReference: {fileID: 0} 314 | - target: {fileID: 0} 315 | propertyPath: m_RotateAnchorAction.m_Action.m_Interactions 316 | value: 317 | objectReference: {fileID: 0} 318 | - target: {fileID: 0} 319 | propertyPath: m_RotateAnchorAction.m_Action.m_SingletonActionBindings.Array.size 320 | value: 0 321 | objectReference: {fileID: 0} 322 | - target: {fileID: 0} 323 | propertyPath: m_RotateAnchorAction.m_Reference 324 | value: 325 | objectReference: {fileID: -5913262927076077117, guid: c348712bda248c246b8c49b3db54643f, 326 | type: 3} 327 | - target: {fileID: 0} 328 | propertyPath: m_TranslateAnchorAction.m_UseReference 329 | value: 1 330 | objectReference: {fileID: 0} 331 | - target: {fileID: 0} 332 | propertyPath: m_TranslateAnchorAction.m_Action.m_Name 333 | value: Translate Anchor 334 | objectReference: {fileID: 0} 335 | - target: {fileID: 0} 336 | propertyPath: m_TranslateAnchorAction.m_Action.m_Type 337 | value: 0 338 | objectReference: {fileID: 0} 339 | - target: {fileID: 0} 340 | propertyPath: m_TranslateAnchorAction.m_Action.m_ExpectedControlType 341 | value: 342 | objectReference: {fileID: 0} 343 | - target: {fileID: 0} 344 | propertyPath: m_TranslateAnchorAction.m_Action.m_Id 345 | value: 161874b5-2545-4bb2-bea4-eeddeb4fabf6 346 | objectReference: {fileID: 0} 347 | - target: {fileID: 0} 348 | propertyPath: m_TranslateAnchorAction.m_Action.m_Processors 349 | value: 350 | objectReference: {fileID: 0} 351 | - target: {fileID: 0} 352 | propertyPath: m_TranslateAnchorAction.m_Action.m_Interactions 353 | value: 354 | objectReference: {fileID: 0} 355 | - target: {fileID: 0} 356 | propertyPath: m_TranslateAnchorAction.m_Action.m_SingletonActionBindings.Array.size 357 | value: 0 358 | objectReference: {fileID: 0} 359 | - target: {fileID: 0} 360 | propertyPath: m_TranslateAnchorAction.m_Reference 361 | value: 362 | objectReference: {fileID: 875253871413052681, guid: c348712bda248c246b8c49b3db54643f, 363 | type: 3} 364 | - target: {fileID: 0} 365 | propertyPath: m_ButtonPressPoint 366 | value: 0.5 367 | objectReference: {fileID: 0} 368 | -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit/0.10.0-preview.7/Default Input Actions/XRI Default Right Controller.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1421ad86ff3787b4dae70fe9e699a25f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit/0.10.0-preview.7/Default Input Actions/XRI Default Snap Turn.preset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!181963792 &2655988077585873504 4 | Preset: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: XRI Default Snap Turn 10 | m_TargetType: 11 | m_NativeTypeID: 114 12 | m_ManagedTypePPtr: {fileID: 11500000, guid: 2213c36610e3b1c4bbf886810ed9db12, 13 | type: 3} 14 | m_ManagedTypeFallback: 15 | m_Properties: 16 | - target: {fileID: 0} 17 | propertyPath: m_Enabled 18 | value: 1 19 | objectReference: {fileID: 0} 20 | - target: {fileID: 0} 21 | propertyPath: m_EditorHideFlags 22 | value: 0 23 | objectReference: {fileID: 0} 24 | - target: {fileID: 0} 25 | propertyPath: m_EditorClassIdentifier 26 | value: 27 | objectReference: {fileID: 0} 28 | - target: {fileID: 0} 29 | propertyPath: m_System 30 | value: 31 | objectReference: {fileID: 0} 32 | - target: {fileID: 0} 33 | propertyPath: m_TurnAmount 34 | value: 45 35 | objectReference: {fileID: 0} 36 | - target: {fileID: 0} 37 | propertyPath: m_DebounceTime 38 | value: 0.5 39 | objectReference: {fileID: 0} 40 | - target: {fileID: 0} 41 | propertyPath: m_EnableTurnLeftRight 42 | value: 1 43 | objectReference: {fileID: 0} 44 | - target: {fileID: 0} 45 | propertyPath: m_EnableTurnAround 46 | value: 1 47 | objectReference: {fileID: 0} 48 | - target: {fileID: 0} 49 | propertyPath: m_LeftHandSnapTurnAction.m_UseReference 50 | value: 1 51 | objectReference: {fileID: 0} 52 | - target: {fileID: 0} 53 | propertyPath: m_LeftHandSnapTurnAction.m_Action.m_Name 54 | value: Left Hand Snap Turn 55 | objectReference: {fileID: 0} 56 | - target: {fileID: 0} 57 | propertyPath: m_LeftHandSnapTurnAction.m_Action.m_Type 58 | value: 0 59 | objectReference: {fileID: 0} 60 | - target: {fileID: 0} 61 | propertyPath: m_LeftHandSnapTurnAction.m_Action.m_ExpectedControlType 62 | value: 63 | objectReference: {fileID: 0} 64 | - target: {fileID: 0} 65 | propertyPath: m_LeftHandSnapTurnAction.m_Action.m_Id 66 | value: a1d07c24-ca50-422a-a23f-685d9fabf63b 67 | objectReference: {fileID: 0} 68 | - target: {fileID: 0} 69 | propertyPath: m_LeftHandSnapTurnAction.m_Action.m_Processors 70 | value: 71 | objectReference: {fileID: 0} 72 | - target: {fileID: 0} 73 | propertyPath: m_LeftHandSnapTurnAction.m_Action.m_Interactions 74 | value: 75 | objectReference: {fileID: 0} 76 | - target: {fileID: 0} 77 | propertyPath: m_LeftHandSnapTurnAction.m_Action.m_SingletonActionBindings.Array.size 78 | value: 0 79 | objectReference: {fileID: 0} 80 | - target: {fileID: 0} 81 | propertyPath: m_LeftHandSnapTurnAction.m_Reference 82 | value: 83 | objectReference: {fileID: 1010738217276881514, guid: c348712bda248c246b8c49b3db54643f, 84 | type: 3} 85 | - target: {fileID: 0} 86 | propertyPath: m_RightHandSnapTurnAction.m_UseReference 87 | value: 1 88 | objectReference: {fileID: 0} 89 | - target: {fileID: 0} 90 | propertyPath: m_RightHandSnapTurnAction.m_Action.m_Name 91 | value: Right Hand Snap Turn 92 | objectReference: {fileID: 0} 93 | - target: {fileID: 0} 94 | propertyPath: m_RightHandSnapTurnAction.m_Action.m_Type 95 | value: 0 96 | objectReference: {fileID: 0} 97 | - target: {fileID: 0} 98 | propertyPath: m_RightHandSnapTurnAction.m_Action.m_ExpectedControlType 99 | value: 100 | objectReference: {fileID: 0} 101 | - target: {fileID: 0} 102 | propertyPath: m_RightHandSnapTurnAction.m_Action.m_Id 103 | value: a7b54797-6974-4f75-81d0-42b9c15ef1e0 104 | objectReference: {fileID: 0} 105 | - target: {fileID: 0} 106 | propertyPath: m_RightHandSnapTurnAction.m_Action.m_Processors 107 | value: 108 | objectReference: {fileID: 0} 109 | - target: {fileID: 0} 110 | propertyPath: m_RightHandSnapTurnAction.m_Action.m_Interactions 111 | value: 112 | objectReference: {fileID: 0} 113 | - target: {fileID: 0} 114 | propertyPath: m_RightHandSnapTurnAction.m_Action.m_SingletonActionBindings.Array.size 115 | value: 0 116 | objectReference: {fileID: 0} 117 | - target: {fileID: 0} 118 | propertyPath: m_RightHandSnapTurnAction.m_Reference 119 | value: 120 | objectReference: {fileID: -6493913391331992944, guid: c348712bda248c246b8c49b3db54643f, 121 | type: 3} 122 | -------------------------------------------------------------------------------- /Assets/Samples/XR Interaction Toolkit/0.10.0-preview.7/Default Input Actions/XRI Default Snap Turn.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18697d253d848974aa7052cba872c9f0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77b8fb7131f4c9c4384abb4929f517eb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XR/Loaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00888c1f66b3ab645b9b0205161ae449 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XR/Loaders/Open XR Loader No Pre Init.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 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: 11500000, guid: ee62ffd6c7e6f3545899783b1fbdd9d4, type: 3} 13 | m_Name: Open XR Loader No Pre Init 14 | m_EditorClassIdentifier: 15 | -------------------------------------------------------------------------------- /Assets/XR/Loaders/Open XR Loader No Pre Init.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d257c97644b30b44b01cce98ec11651 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XR/Loaders/Open XR Loader.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 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: 11500000, guid: d3552e428dc7646a88de3ed3650f87da, type: 3} 13 | m_Name: Open XR Loader 14 | m_EditorClassIdentifier: 15 | -------------------------------------------------------------------------------- /Assets/XR/Loaders/Open XR Loader.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1c32ba68f9025c4d97e30ac8eb69346 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XR/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d8a47e84193f2340af15bb58d0a7c9e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XR/Settings/Open XR Package Settings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-8112083337315501424 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 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: 11500000, guid: 274c02963f889a64e90bc2e596e21d13, type: 3} 13 | m_Name: HTCViveControllerProfile Standalone 14 | m_EditorClassIdentifier: 15 | m_enabled: 0 16 | nameUi: HTC Vive Controller Profile 17 | version: 0.0.1 18 | featureIdInternal: com.unity.openxr.feature.input.htcvive 19 | openxrExtensionStrings: 20 | company: Unity 21 | priority: 0 22 | required: 0 23 | --- !u!114 &-5059808153311048970 24 | MonoBehaviour: 25 | m_ObjectHideFlags: 0 26 | m_CorrespondingSourceObject: {fileID: 0} 27 | m_PrefabInstance: {fileID: 0} 28 | m_PrefabAsset: {fileID: 0} 29 | m_GameObject: {fileID: 0} 30 | m_Enabled: 1 31 | m_EditorHideFlags: 0 32 | m_Script: {fileID: 11500000, guid: 0d6ccd3d0ef0f1d458e69421dccbdae1, type: 3} 33 | m_Name: ValveIndexControllerProfile Standalone 34 | m_EditorClassIdentifier: 35 | m_enabled: 1 36 | nameUi: Valve Index Controller Profile 37 | version: 0.0.1 38 | featureIdInternal: com.unity.openxr.feature.input.valveindex 39 | openxrExtensionStrings: 40 | company: Unity 41 | priority: 0 42 | required: 0 43 | --- !u!114 &-4703886421734681843 44 | MonoBehaviour: 45 | m_ObjectHideFlags: 0 46 | m_CorrespondingSourceObject: {fileID: 0} 47 | m_PrefabInstance: {fileID: 0} 48 | m_PrefabAsset: {fileID: 0} 49 | m_GameObject: {fileID: 0} 50 | m_Enabled: 1 51 | m_EditorHideFlags: 0 52 | m_Script: {fileID: 11500000, guid: 486b5e28864f9a94b979b9620ce5006d, type: 3} 53 | m_Name: ConformanceAutomationFeature Standalone 54 | m_EditorClassIdentifier: 55 | m_enabled: 0 56 | nameUi: Conformance Automation 57 | version: 0.0.1 58 | featureIdInternal: com.unity.openxr.feature.conformance 59 | openxrExtensionStrings: XR_EXT_conformance_automation 60 | company: Unity 61 | priority: 0 62 | required: 0 63 | --- !u!114 &-4319795877956325190 64 | MonoBehaviour: 65 | m_ObjectHideFlags: 0 66 | m_CorrespondingSourceObject: {fileID: 0} 67 | m_PrefabInstance: {fileID: 0} 68 | m_PrefabAsset: {fileID: 0} 69 | m_GameObject: {fileID: 0} 70 | m_Enabled: 1 71 | m_EditorHideFlags: 0 72 | m_Script: {fileID: 11500000, guid: f928d0d73a35f294fbe357ca17aa3547, type: 3} 73 | m_Name: MicrosoftHandInteraction Standalone 74 | m_EditorClassIdentifier: 75 | m_enabled: 0 76 | nameUi: Microsoft Hand Interaction Profile 77 | version: 0.0.1 78 | featureIdInternal: com.unity.openxr.feature.input.handtracking 79 | openxrExtensionStrings: XR_MSFT_hand_interaction 80 | company: Unity 81 | priority: 0 82 | required: 0 83 | --- !u!114 &-4164193693832106451 84 | MonoBehaviour: 85 | m_ObjectHideFlags: 0 86 | m_CorrespondingSourceObject: {fileID: 0} 87 | m_PrefabInstance: {fileID: 0} 88 | m_PrefabAsset: {fileID: 0} 89 | m_GameObject: {fileID: 0} 90 | m_Enabled: 1 91 | m_EditorHideFlags: 0 92 | m_Script: {fileID: 11500000, guid: feeef8d85de8db242bdda70cc7ff5acd, type: 3} 93 | m_Name: OculusTouchControllerProfile Standalone 94 | m_EditorClassIdentifier: 95 | m_enabled: 0 96 | nameUi: Oculus Touch Controller Profile 97 | version: 0.0.1 98 | featureIdInternal: com.unity.openxr.feature.input.oculustouch 99 | openxrExtensionStrings: 100 | company: Unity 101 | priority: 0 102 | required: 0 103 | --- !u!114 &-671955284274697584 104 | MonoBehaviour: 105 | m_ObjectHideFlags: 0 106 | m_CorrespondingSourceObject: {fileID: 0} 107 | m_PrefabInstance: {fileID: 0} 108 | m_PrefabAsset: {fileID: 0} 109 | m_GameObject: {fileID: 0} 110 | m_Enabled: 1 111 | m_EditorHideFlags: 0 112 | m_Script: {fileID: 11500000, guid: 7de993716e042c6499d0c18eed3a773c, type: 3} 113 | m_Name: MockRuntime Standalone 114 | m_EditorClassIdentifier: 115 | m_enabled: 0 116 | nameUi: Mock Runtime 117 | version: 0.0.1 118 | featureIdInternal: com.unity.openxr.feature.mockruntime 119 | openxrExtensionStrings: XR_UNITY_null_gfx 120 | company: Unity 121 | priority: 0 122 | required: 0 123 | ignoreValidationErrors: 0 124 | --- !u!114 &11400000 125 | MonoBehaviour: 126 | m_ObjectHideFlags: 0 127 | m_CorrespondingSourceObject: {fileID: 0} 128 | m_PrefabInstance: {fileID: 0} 129 | m_PrefabAsset: {fileID: 0} 130 | m_GameObject: {fileID: 0} 131 | m_Enabled: 1 132 | m_EditorHideFlags: 0 133 | m_Script: {fileID: 11500000, guid: 9f0ebc320a151d3408ea1e9fce54d40e, type: 3} 134 | m_Name: Open XR Package Settings 135 | m_EditorClassIdentifier: 136 | Keys: 01000000 137 | Values: 138 | - {fileID: 241603724811853242} 139 | --- !u!114 &241603724811853242 140 | MonoBehaviour: 141 | m_ObjectHideFlags: 0 142 | m_CorrespondingSourceObject: {fileID: 0} 143 | m_PrefabInstance: {fileID: 0} 144 | m_PrefabAsset: {fileID: 0} 145 | m_GameObject: {fileID: 0} 146 | m_Enabled: 1 147 | m_EditorHideFlags: 0 148 | m_Script: {fileID: 11500000, guid: b5a1f07dc5afe854f9f12a4194aca3fb, type: 3} 149 | m_Name: Standalone 150 | m_EditorClassIdentifier: 151 | features: 152 | - {fileID: -4703886421734681843} 153 | - {fileID: 3751800498460017816} 154 | - {fileID: -8112083337315501424} 155 | - {fileID: 5251092941598311388} 156 | - {fileID: -4319795877956325190} 157 | - {fileID: 3678224809210632407} 158 | - {fileID: 550277269516284391} 159 | - {fileID: -671955284274697584} 160 | - {fileID: -4164193693832106451} 161 | - {fileID: -5059808153311048970} 162 | m_renderMode: 1 163 | m_depthSubmissionMode: 0 164 | --- !u!114 &550277269516284391 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: 0} 171 | m_Enabled: 1 172 | m_EditorHideFlags: 0 173 | m_Script: {fileID: 11500000, guid: 96efa89124dda0941802f28ad8249b87, type: 3} 174 | m_Name: MockDriver Standalone 175 | m_EditorClassIdentifier: 176 | m_enabled: 0 177 | nameUi: Mock Driver 178 | version: 0.0.1 179 | featureIdInternal: com.unity.openxr.feature.mockdriver 180 | openxrExtensionStrings: XR_UNITY_mock_driver 181 | company: Unity 182 | priority: 0 183 | required: 0 184 | --- !u!114 &3678224809210632407 185 | MonoBehaviour: 186 | m_ObjectHideFlags: 0 187 | m_CorrespondingSourceObject: {fileID: 0} 188 | m_PrefabInstance: {fileID: 0} 189 | m_PrefabAsset: {fileID: 0} 190 | m_GameObject: {fileID: 0} 191 | m_Enabled: 1 192 | m_EditorHideFlags: 0 193 | m_Script: {fileID: 11500000, guid: 761fdd4502cb7a84e9ec7a2b24f33f37, type: 3} 194 | m_Name: MicrosoftMotionControllerProfile Standalone 195 | m_EditorClassIdentifier: 196 | m_enabled: 0 197 | nameUi: Microsoft Motion Controller Profile 198 | version: 0.0.1 199 | featureIdInternal: com.unity.openxr.feature.input.microsoftmotioncontroller 200 | openxrExtensionStrings: 201 | company: Unity 202 | priority: 0 203 | required: 0 204 | --- !u!114 &3751800498460017816 205 | MonoBehaviour: 206 | m_ObjectHideFlags: 0 207 | m_CorrespondingSourceObject: {fileID: 0} 208 | m_PrefabInstance: {fileID: 0} 209 | m_PrefabAsset: {fileID: 0} 210 | m_GameObject: {fileID: 0} 211 | m_Enabled: 1 212 | m_EditorHideFlags: 0 213 | m_Script: {fileID: 11500000, guid: b3cf79659a011bd419c7a2a30eb74e9a, type: 3} 214 | m_Name: EyeGazeInteraction Standalone 215 | m_EditorClassIdentifier: 216 | m_enabled: 0 217 | nameUi: Eye Gaze Interaction Profile 218 | version: 0.0.1 219 | featureIdInternal: com.unity.openxr.feature.input.eyetracking 220 | openxrExtensionStrings: XR_EXT_eye_gaze_interaction 221 | company: Unity 222 | priority: 0 223 | required: 0 224 | --- !u!114 &5251092941598311388 225 | MonoBehaviour: 226 | m_ObjectHideFlags: 0 227 | m_CorrespondingSourceObject: {fileID: 0} 228 | m_PrefabInstance: {fileID: 0} 229 | m_PrefabAsset: {fileID: 0} 230 | m_GameObject: {fileID: 0} 231 | m_Enabled: 1 232 | m_EditorHideFlags: 0 233 | m_Script: {fileID: 11500000, guid: 0f6bfdbcb316ed242b30a8798c9eb853, type: 3} 234 | m_Name: KHRSimpleControllerProfile Standalone 235 | m_EditorClassIdentifier: 236 | m_enabled: 0 237 | nameUi: Khronos Simple Controller Profile 238 | version: 0.0.1 239 | featureIdInternal: com.unity.openxr.feature.input.khrsimpleprofile 240 | openxrExtensionStrings: 241 | company: Unity 242 | priority: 0 243 | required: 0 244 | -------------------------------------------------------------------------------- /Assets/XR/Settings/Open XR Package Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3993e187dc11c4241aa7fe8269595366 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XR/Settings/OpenXR Editor Settings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 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: 11500000, guid: 975057b4fdcfb8142b3080d19a5cc712, type: 3} 13 | m_Name: OpenXR Editor Settings 14 | m_EditorClassIdentifier: 15 | Keys: 16 | Values: [] 17 | -------------------------------------------------------------------------------- /Assets/XR/Settings/OpenXR Editor Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d66242edba44e14429fbec27b49f04a7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XR/XRGeneralSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-9020346738638089335 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 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: 11500000, guid: f4c3631f5e58749a59194e0cf6baf6d5, type: 3} 13 | m_Name: Standalone Providers 14 | m_EditorClassIdentifier: 15 | m_RequiresSettingsUpdate: 0 16 | m_AutomaticLoading: 0 17 | m_AutomaticRunning: 0 18 | m_Loaders: 19 | - {fileID: 11400000, guid: d1c32ba68f9025c4d97e30ac8eb69346, type: 2} 20 | --- !u!114 &-8108759156894505708 21 | MonoBehaviour: 22 | m_ObjectHideFlags: 0 23 | m_CorrespondingSourceObject: {fileID: 0} 24 | m_PrefabInstance: {fileID: 0} 25 | m_PrefabAsset: {fileID: 0} 26 | m_GameObject: {fileID: 0} 27 | m_Enabled: 1 28 | m_EditorHideFlags: 0 29 | m_Script: {fileID: 11500000, guid: d236b7d11115f2143951f1e14045df39, type: 3} 30 | m_Name: Standalone Settings 31 | m_EditorClassIdentifier: 32 | m_LoaderManagerInstance: {fileID: -9020346738638089335} 33 | m_InitManagerOnStart: 1 34 | --- !u!114 &11400000 35 | MonoBehaviour: 36 | m_ObjectHideFlags: 0 37 | m_CorrespondingSourceObject: {fileID: 0} 38 | m_PrefabInstance: {fileID: 0} 39 | m_PrefabAsset: {fileID: 0} 40 | m_GameObject: {fileID: 0} 41 | m_Enabled: 1 42 | m_EditorHideFlags: 0 43 | m_Script: {fileID: 11500000, guid: d2dc886499c26824283350fa532d087d, type: 3} 44 | m_Name: XRGeneralSettings 45 | m_EditorClassIdentifier: 46 | Keys: 01000000 47 | Values: 48 | - {fileID: -8108759156894505708} 49 | -------------------------------------------------------------------------------- /Assets/XR/XRGeneralSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfdd9d8113d9bb340be1174eec2a0c30 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_OpenXR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9de864307b5e974fbc07f1f6ebfa081 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c09eb35009a76864f90de791fa0a644f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Materials/Grey.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_CorrespondingSourceObject: {fileID: 0} 8 | m_PrefabInstance: {fileID: 0} 9 | m_PrefabAsset: {fileID: 0} 10 | m_Name: Grey 11 | m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} 12 | m_ShaderKeywords: 13 | m_LightmapFlags: 4 14 | m_EnableInstancingVariants: 0 15 | m_DoubleSidedGI: 0 16 | m_CustomRenderQueue: -1 17 | stringTagMap: {} 18 | disabledShaderPasses: [] 19 | m_SavedProperties: 20 | serializedVersion: 3 21 | m_TexEnvs: 22 | - _BaseMap: 23 | m_Texture: {fileID: 2800000, guid: ac499f58966f5db4191b33ea3ba5b152, type: 3} 24 | m_Scale: {x: 2, y: 2} 25 | m_Offset: {x: 0, y: 0} 26 | - _BumpMap: 27 | m_Texture: {fileID: 0} 28 | m_Scale: {x: 1, y: 1} 29 | m_Offset: {x: 0, y: 0} 30 | - _DetailAlbedoMap: 31 | m_Texture: {fileID: 0} 32 | m_Scale: {x: 1, y: 1} 33 | m_Offset: {x: 0, y: 0} 34 | - _DetailMask: 35 | m_Texture: {fileID: 0} 36 | m_Scale: {x: 1, y: 1} 37 | m_Offset: {x: 0, y: 0} 38 | - _DetailNormalMap: 39 | m_Texture: {fileID: 0} 40 | m_Scale: {x: 1, y: 1} 41 | m_Offset: {x: 0, y: 0} 42 | - _EmissionMap: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 2, y: 2} 45 | m_Offset: {x: 0, y: 0} 46 | - _MainTex: 47 | m_Texture: {fileID: 0} 48 | m_Scale: {x: 2, y: 2} 49 | m_Offset: {x: 0, y: 0} 50 | - _MetallicGlossMap: 51 | m_Texture: {fileID: 0} 52 | m_Scale: {x: 1, y: 1} 53 | m_Offset: {x: 0, y: 0} 54 | - _OcclusionMap: 55 | m_Texture: {fileID: 0} 56 | m_Scale: {x: 1, y: 1} 57 | m_Offset: {x: 0, y: 0} 58 | - _ParallaxMap: 59 | m_Texture: {fileID: 0} 60 | m_Scale: {x: 1, y: 1} 61 | m_Offset: {x: 0, y: 0} 62 | - _SpecGlossMap: 63 | m_Texture: {fileID: 0} 64 | m_Scale: {x: 1, y: 1} 65 | m_Offset: {x: 0, y: 0} 66 | m_Floats: 67 | - _AlphaClip: 0 68 | - _Blend: 0 69 | - _BumpScale: 1 70 | - _Cull: 2 71 | - _Cutoff: 0.5 72 | - _DetailNormalMapScale: 1 73 | - _DstBlend: 0 74 | - _EnvironmentReflections: 1 75 | - _GlossMapScale: 1 76 | - _Glossiness: 0 77 | - _GlossyReflections: 1 78 | - _Metallic: 0 79 | - _Mode: 0 80 | - _OcclusionStrength: 1 81 | - _Parallax: 0.02 82 | - _QueueOffset: 0 83 | - _ReceiveShadows: 1 84 | - _Smoothness: 0 85 | - _SmoothnessTextureChannel: 0 86 | - _SpecularHighlights: 1 87 | - _SrcBlend: 1 88 | - _Surface: 0 89 | - _UVSec: 0 90 | - _WorkflowMode: 1 91 | - _ZWrite: 1 92 | m_Colors: 93 | - _BaseColor: {r: 1, g: 1, b: 1, a: 1} 94 | - _Color: {r: 0.29411766, g: 0.29411766, b: 0.29411766, a: 1} 95 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 96 | - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} 97 | --- !u!114 &5991866090903555128 98 | MonoBehaviour: 99 | m_ObjectHideFlags: 11 100 | m_CorrespondingSourceObject: {fileID: 0} 101 | m_PrefabInstance: {fileID: 0} 102 | m_PrefabAsset: {fileID: 0} 103 | m_GameObject: {fileID: 0} 104 | m_Enabled: 1 105 | m_EditorHideFlags: 0 106 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 107 | m_Name: 108 | m_EditorClassIdentifier: 109 | version: 1 110 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Materials/Grey.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3a0ba261b296284f83f73d03b7909df 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Materials/Pink.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_CorrespondingSourceObject: {fileID: 0} 8 | m_PrefabInstance: {fileID: 0} 9 | m_PrefabAsset: {fileID: 0} 10 | m_Name: Pink 11 | m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} 12 | m_ShaderKeywords: 13 | m_LightmapFlags: 4 14 | m_EnableInstancingVariants: 0 15 | m_DoubleSidedGI: 0 16 | m_CustomRenderQueue: -1 17 | stringTagMap: {} 18 | disabledShaderPasses: [] 19 | m_SavedProperties: 20 | serializedVersion: 3 21 | m_TexEnvs: 22 | - _BaseMap: 23 | m_Texture: {fileID: 2800000, guid: ac499f58966f5db4191b33ea3ba5b152, type: 3} 24 | m_Scale: {x: 2, y: 2} 25 | m_Offset: {x: 0, y: 0} 26 | - _BumpMap: 27 | m_Texture: {fileID: 0} 28 | m_Scale: {x: 1, y: 1} 29 | m_Offset: {x: 0, y: 0} 30 | - _DetailAlbedoMap: 31 | m_Texture: {fileID: 0} 32 | m_Scale: {x: 1, y: 1} 33 | m_Offset: {x: 0, y: 0} 34 | - _DetailMask: 35 | m_Texture: {fileID: 0} 36 | m_Scale: {x: 1, y: 1} 37 | m_Offset: {x: 0, y: 0} 38 | - _DetailNormalMap: 39 | m_Texture: {fileID: 0} 40 | m_Scale: {x: 1, y: 1} 41 | m_Offset: {x: 0, y: 0} 42 | - _EmissionMap: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 2, y: 2} 45 | m_Offset: {x: 0, y: 0} 46 | - _MainTex: 47 | m_Texture: {fileID: 0} 48 | m_Scale: {x: 2, y: 2} 49 | m_Offset: {x: 0, y: 0} 50 | - _MetallicGlossMap: 51 | m_Texture: {fileID: 0} 52 | m_Scale: {x: 1, y: 1} 53 | m_Offset: {x: 0, y: 0} 54 | - _OcclusionMap: 55 | m_Texture: {fileID: 0} 56 | m_Scale: {x: 1, y: 1} 57 | m_Offset: {x: 0, y: 0} 58 | - _ParallaxMap: 59 | m_Texture: {fileID: 0} 60 | m_Scale: {x: 1, y: 1} 61 | m_Offset: {x: 0, y: 0} 62 | - _SpecGlossMap: 63 | m_Texture: {fileID: 0} 64 | m_Scale: {x: 1, y: 1} 65 | m_Offset: {x: 0, y: 0} 66 | m_Floats: 67 | - _AlphaClip: 0 68 | - _Blend: 0 69 | - _BumpScale: 1 70 | - _Cull: 2 71 | - _Cutoff: 0.5 72 | - _DetailNormalMapScale: 1 73 | - _DstBlend: 0 74 | - _EnvironmentReflections: 1 75 | - _GlossMapScale: 1 76 | - _Glossiness: 0 77 | - _GlossyReflections: 1 78 | - _Metallic: 0 79 | - _Mode: 0 80 | - _OcclusionStrength: 1 81 | - _Parallax: 0.02 82 | - _QueueOffset: 0 83 | - _ReceiveShadows: 1 84 | - _Smoothness: 0 85 | - _SmoothnessTextureChannel: 0 86 | - _SpecularHighlights: 1 87 | - _SrcBlend: 1 88 | - _Surface: 0 89 | - _UVSec: 0 90 | - _WorkflowMode: 1 91 | - _ZWrite: 1 92 | m_Colors: 93 | - _BaseColor: {r: 1, g: 1, b: 1, a: 1} 94 | - _Color: {r: 0.9019608, g: 0.3372549, b: 0.47843137, a: 1} 95 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 96 | - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} 97 | --- !u!114 &5991866090903555128 98 | MonoBehaviour: 99 | m_ObjectHideFlags: 11 100 | m_CorrespondingSourceObject: {fileID: 0} 101 | m_PrefabInstance: {fileID: 0} 102 | m_PrefabAsset: {fileID: 0} 103 | m_GameObject: {fileID: 0} 104 | m_Enabled: 1 105 | m_EditorHideFlags: 0 106 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 107 | m_Name: 108 | m_EditorClassIdentifier: 109 | version: 1 110 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Materials/Pink.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40e6c80bc0db5044484bc0d6a5e315fa 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Materials/PinkTexture.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_CorrespondingSourceObject: {fileID: 0} 8 | m_PrefabInstance: {fileID: 0} 9 | m_PrefabAsset: {fileID: 0} 10 | m_Name: PinkTexture 11 | m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} 12 | m_ShaderKeywords: 13 | m_LightmapFlags: 4 14 | m_EnableInstancingVariants: 0 15 | m_DoubleSidedGI: 0 16 | m_CustomRenderQueue: -1 17 | stringTagMap: {} 18 | disabledShaderPasses: [] 19 | m_SavedProperties: 20 | serializedVersion: 3 21 | m_TexEnvs: 22 | - _BaseMap: 23 | m_Texture: {fileID: 2800000, guid: ac499f58966f5db4191b33ea3ba5b152, type: 3} 24 | m_Scale: {x: 2, y: 2} 25 | m_Offset: {x: 0, y: 0} 26 | - _BumpMap: 27 | m_Texture: {fileID: 0} 28 | m_Scale: {x: 1, y: 1} 29 | m_Offset: {x: 0, y: 0} 30 | - _DetailAlbedoMap: 31 | m_Texture: {fileID: 0} 32 | m_Scale: {x: 1, y: 1} 33 | m_Offset: {x: 0, y: 0} 34 | - _DetailMask: 35 | m_Texture: {fileID: 0} 36 | m_Scale: {x: 1, y: 1} 37 | m_Offset: {x: 0, y: 0} 38 | - _DetailNormalMap: 39 | m_Texture: {fileID: 0} 40 | m_Scale: {x: 1, y: 1} 41 | m_Offset: {x: 0, y: 0} 42 | - _EmissionMap: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 2, y: 2} 45 | m_Offset: {x: 0, y: 0} 46 | - _MainTex: 47 | m_Texture: {fileID: 2800000, guid: 390eb0cf3c536a043b4abeee23fa87c9, type: 3} 48 | m_Scale: {x: 2, y: 2} 49 | m_Offset: {x: 0, y: 0} 50 | - _MetallicGlossMap: 51 | m_Texture: {fileID: 0} 52 | m_Scale: {x: 1, y: 1} 53 | m_Offset: {x: 0, y: 0} 54 | - _OcclusionMap: 55 | m_Texture: {fileID: 0} 56 | m_Scale: {x: 1, y: 1} 57 | m_Offset: {x: 0, y: 0} 58 | - _ParallaxMap: 59 | m_Texture: {fileID: 0} 60 | m_Scale: {x: 1, y: 1} 61 | m_Offset: {x: 0, y: 0} 62 | - _SpecGlossMap: 63 | m_Texture: {fileID: 0} 64 | m_Scale: {x: 1, y: 1} 65 | m_Offset: {x: 0, y: 0} 66 | m_Floats: 67 | - _AlphaClip: 0 68 | - _Blend: 0 69 | - _BumpScale: 1 70 | - _Cull: 2 71 | - _Cutoff: 0.5 72 | - _DetailNormalMapScale: 1 73 | - _DstBlend: 0 74 | - _EnvironmentReflections: 1 75 | - _GlossMapScale: 1 76 | - _Glossiness: 0 77 | - _GlossyReflections: 1 78 | - _Metallic: 0 79 | - _Mode: 0 80 | - _OcclusionStrength: 1 81 | - _Parallax: 0.02 82 | - _QueueOffset: 0 83 | - _ReceiveShadows: 1 84 | - _Smoothness: 0 85 | - _SmoothnessTextureChannel: 0 86 | - _SpecularHighlights: 1 87 | - _SrcBlend: 1 88 | - _Surface: 0 89 | - _UVSec: 0 90 | - _WorkflowMode: 1 91 | - _ZWrite: 1 92 | m_Colors: 93 | - _BaseColor: {r: 1, g: 1, b: 1, a: 1} 94 | - _Color: {r: 1, g: 1, b: 1, a: 1} 95 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 96 | - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} 97 | --- !u!114 &5991866090903555128 98 | MonoBehaviour: 99 | m_ObjectHideFlags: 11 100 | m_CorrespondingSourceObject: {fileID: 0} 101 | m_PrefabInstance: {fileID: 0} 102 | m_PrefabAsset: {fileID: 0} 103 | m_GameObject: {fileID: 0} 104 | m_Enabled: 1 105 | m_EditorHideFlags: 0 106 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 107 | m_Name: 108 | m_EditorClassIdentifier: 109 | version: 1 110 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Materials/PinkTexture.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdc51a4b4c936f545afa4deee0e45a64 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Materials/White.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_CorrespondingSourceObject: {fileID: 0} 8 | m_PrefabInstance: {fileID: 0} 9 | m_PrefabAsset: {fileID: 0} 10 | m_Name: White 11 | m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} 12 | m_ShaderKeywords: 13 | m_LightmapFlags: 4 14 | m_EnableInstancingVariants: 0 15 | m_DoubleSidedGI: 0 16 | m_CustomRenderQueue: -1 17 | stringTagMap: {} 18 | disabledShaderPasses: [] 19 | m_SavedProperties: 20 | serializedVersion: 3 21 | m_TexEnvs: 22 | - _BaseMap: 23 | m_Texture: {fileID: 2800000, guid: ac499f58966f5db4191b33ea3ba5b152, type: 3} 24 | m_Scale: {x: 2, y: 2} 25 | m_Offset: {x: 0, y: 0} 26 | - _BumpMap: 27 | m_Texture: {fileID: 0} 28 | m_Scale: {x: 1, y: 1} 29 | m_Offset: {x: 0, y: 0} 30 | - _DetailAlbedoMap: 31 | m_Texture: {fileID: 0} 32 | m_Scale: {x: 1, y: 1} 33 | m_Offset: {x: 0, y: 0} 34 | - _DetailMask: 35 | m_Texture: {fileID: 0} 36 | m_Scale: {x: 1, y: 1} 37 | m_Offset: {x: 0, y: 0} 38 | - _DetailNormalMap: 39 | m_Texture: {fileID: 0} 40 | m_Scale: {x: 1, y: 1} 41 | m_Offset: {x: 0, y: 0} 42 | - _EmissionMap: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 2, y: 2} 45 | m_Offset: {x: 0, y: 0} 46 | - _MainTex: 47 | m_Texture: {fileID: 0} 48 | m_Scale: {x: 2, y: 2} 49 | m_Offset: {x: 0, y: 0} 50 | - _MetallicGlossMap: 51 | m_Texture: {fileID: 0} 52 | m_Scale: {x: 1, y: 1} 53 | m_Offset: {x: 0, y: 0} 54 | - _OcclusionMap: 55 | m_Texture: {fileID: 0} 56 | m_Scale: {x: 1, y: 1} 57 | m_Offset: {x: 0, y: 0} 58 | - _ParallaxMap: 59 | m_Texture: {fileID: 0} 60 | m_Scale: {x: 1, y: 1} 61 | m_Offset: {x: 0, y: 0} 62 | - _SpecGlossMap: 63 | m_Texture: {fileID: 0} 64 | m_Scale: {x: 1, y: 1} 65 | m_Offset: {x: 0, y: 0} 66 | m_Floats: 67 | - _AlphaClip: 0 68 | - _Blend: 0 69 | - _BumpScale: 1 70 | - _Cull: 2 71 | - _Cutoff: 0.5 72 | - _DetailNormalMapScale: 1 73 | - _DstBlend: 0 74 | - _EnvironmentReflections: 1 75 | - _GlossMapScale: 1 76 | - _Glossiness: 0 77 | - _GlossyReflections: 1 78 | - _Metallic: 0 79 | - _Mode: 0 80 | - _OcclusionStrength: 1 81 | - _Parallax: 0.02 82 | - _QueueOffset: 0 83 | - _ReceiveShadows: 1 84 | - _Smoothness: 0 85 | - _SmoothnessTextureChannel: 0 86 | - _SpecularHighlights: 1 87 | - _SrcBlend: 1 88 | - _Surface: 0 89 | - _UVSec: 0 90 | - _WorkflowMode: 1 91 | - _ZWrite: 1 92 | m_Colors: 93 | - _BaseColor: {r: 1, g: 1, b: 1, a: 1} 94 | - _Color: {r: 1, g: 1, b: 1, a: 1} 95 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 96 | - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} 97 | --- !u!114 &5991866090903555128 98 | MonoBehaviour: 99 | m_ObjectHideFlags: 11 100 | m_CorrespondingSourceObject: {fileID: 0} 101 | m_PrefabInstance: {fileID: 0} 102 | m_PrefabAsset: {fileID: 0} 103 | m_GameObject: {fileID: 0} 104 | m_Enabled: 1 105 | m_EditorHideFlags: 0 106 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 107 | m_Name: 108 | m_EditorClassIdentifier: 109 | version: 1 110 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Materials/White.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e61b04bcca72f1419dc72a2d801a51d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25d95ee998fbbd94f972376559d51c16 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Prefabs/Hand.prefab: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1 &7647885492147904593 4 | GameObject: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | serializedVersion: 6 10 | m_Component: 11 | - component: {fileID: 7755134024756809332} 12 | - component: {fileID: 7208875777995186923} 13 | - component: {fileID: 9003310533391159742} 14 | m_Layer: 0 15 | m_Name: Hand 16 | m_TagString: Untagged 17 | m_Icon: {fileID: 0} 18 | m_NavMeshLayer: 0 19 | m_StaticEditorFlags: 0 20 | m_IsActive: 1 21 | --- !u!4 &7755134024756809332 22 | Transform: 23 | m_ObjectHideFlags: 0 24 | m_CorrespondingSourceObject: {fileID: 0} 25 | m_PrefabInstance: {fileID: 0} 26 | m_PrefabAsset: {fileID: 0} 27 | m_GameObject: {fileID: 7647885492147904593} 28 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 29 | m_LocalPosition: {x: 0, y: 1.25, z: 0.5} 30 | m_LocalScale: {x: 1, y: 1, z: 1} 31 | m_Children: [] 32 | m_Father: {fileID: 0} 33 | m_RootOrder: 0 34 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 35 | --- !u!33 &7208875777995186923 36 | MeshFilter: 37 | m_ObjectHideFlags: 0 38 | m_CorrespondingSourceObject: {fileID: 0} 39 | m_PrefabInstance: {fileID: 0} 40 | m_PrefabAsset: {fileID: 0} 41 | m_GameObject: {fileID: 7647885492147904593} 42 | m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} 43 | --- !u!23 &9003310533391159742 44 | MeshRenderer: 45 | m_ObjectHideFlags: 0 46 | m_CorrespondingSourceObject: {fileID: 0} 47 | m_PrefabInstance: {fileID: 0} 48 | m_PrefabAsset: {fileID: 0} 49 | m_GameObject: {fileID: 7647885492147904593} 50 | m_Enabled: 1 51 | m_CastShadows: 1 52 | m_ReceiveShadows: 1 53 | m_DynamicOccludee: 1 54 | m_MotionVectors: 1 55 | m_LightProbeUsage: 1 56 | m_ReflectionProbeUsage: 1 57 | m_RayTracingMode: 2 58 | m_RayTraceProcedural: 0 59 | m_RenderingLayerMask: 1 60 | m_RendererPriority: 0 61 | m_Materials: 62 | - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} 63 | m_StaticBatchInfo: 64 | firstSubMesh: 0 65 | subMeshCount: 0 66 | m_StaticBatchRoot: {fileID: 0} 67 | m_ProbeAnchor: {fileID: 0} 68 | m_LightProbeVolumeOverride: {fileID: 0} 69 | m_ScaleInLightmap: 1 70 | m_ReceiveGI: 1 71 | m_PreserveUVs: 0 72 | m_IgnoreNormalsForChartDetection: 0 73 | m_ImportantGI: 0 74 | m_StitchLightmapSeams: 1 75 | m_SelectedEditorRenderState: 3 76 | m_MinimumChartSize: 4 77 | m_AutoUVMaxDistance: 0.5 78 | m_AutoUVMaxAngle: 89 79 | m_LightmapParameters: {fileID: 0} 80 | m_SortingLayerID: 0 81 | m_SortingLayer: 0 82 | m_SortingOrder: 0 83 | m_AdditionalVertexStreams: {fileID: 0} 84 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Prefabs/Hand.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc7eb26fde768754681070d8c0c93cd9 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Prefabs/InputExample.prefab: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1 &5891256871881683910 4 | GameObject: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | serializedVersion: 6 10 | m_Component: 11 | - component: {fileID: 5891256871881683912} 12 | - component: {fileID: 5891256871881683911} 13 | m_Layer: 0 14 | m_Name: InputExample 15 | m_TagString: Untagged 16 | m_Icon: {fileID: 0} 17 | m_NavMeshLayer: 0 18 | m_StaticEditorFlags: 0 19 | m_IsActive: 1 20 | --- !u!4 &5891256871881683912 21 | Transform: 22 | m_ObjectHideFlags: 0 23 | m_CorrespondingSourceObject: {fileID: 0} 24 | m_PrefabInstance: {fileID: 0} 25 | m_PrefabAsset: {fileID: 0} 26 | m_GameObject: {fileID: 5891256871881683910} 27 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 28 | m_LocalPosition: {x: 0, y: 0, z: 0} 29 | m_LocalScale: {x: 1, y: 1, z: 1} 30 | m_Children: [] 31 | m_Father: {fileID: 0} 32 | m_RootOrder: 0 33 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 34 | --- !u!114 &5891256871881683911 35 | MonoBehaviour: 36 | m_ObjectHideFlags: 0 37 | m_CorrespondingSourceObject: {fileID: 0} 38 | m_PrefabInstance: {fileID: 0} 39 | m_PrefabAsset: {fileID: 0} 40 | m_GameObject: {fileID: 5891256871881683910} 41 | m_Enabled: 1 42 | m_EditorHideFlags: 0 43 | m_Script: {fileID: 11500000, guid: 161a19c1fe6248d4983334d018bea061, type: 3} 44 | m_Name: 45 | m_EditorClassIdentifier: 46 | testReference: {fileID: 83097790271614945, guid: c348712bda248c246b8c49b3db54643f, 47 | type: 3} 48 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Prefabs/InputExample.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6e5ab1d76c5f544080da56936e547c7 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Prefabs/InteractableExample.prefab: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1 &8717040989158830671 4 | GameObject: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | serializedVersion: 6 10 | m_Component: 11 | - component: {fileID: 1670247575113446658} 12 | - component: {fileID: 348837856253035606} 13 | - component: {fileID: 8893495806212295793} 14 | - component: {fileID: 7951639971589005041} 15 | m_Layer: 0 16 | m_Name: InteractableExample 17 | m_TagString: Untagged 18 | m_Icon: {fileID: 0} 19 | m_NavMeshLayer: 0 20 | m_StaticEditorFlags: 0 21 | m_IsActive: 1 22 | --- !u!4 &1670247575113446658 23 | Transform: 24 | m_ObjectHideFlags: 0 25 | m_CorrespondingSourceObject: {fileID: 0} 26 | m_PrefabInstance: {fileID: 0} 27 | m_PrefabAsset: {fileID: 0} 28 | m_GameObject: {fileID: 8717040989158830671} 29 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 30 | m_LocalPosition: {x: -0.14011478, y: 0.9739976, z: 0.997972} 31 | m_LocalScale: {x: 1, y: 1, z: 1} 32 | m_Children: 33 | - {fileID: 4157641717375358581} 34 | m_Father: {fileID: 0} 35 | m_RootOrder: 0 36 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 37 | --- !u!135 &348837856253035606 38 | SphereCollider: 39 | m_ObjectHideFlags: 0 40 | m_CorrespondingSourceObject: {fileID: 0} 41 | m_PrefabInstance: {fileID: 0} 42 | m_PrefabAsset: {fileID: 0} 43 | m_GameObject: {fileID: 8717040989158830671} 44 | m_Material: {fileID: 0} 45 | m_IsTrigger: 0 46 | m_Enabled: 1 47 | serializedVersion: 2 48 | m_Radius: 0.075 49 | m_Center: {x: 0, y: 0, z: 0} 50 | --- !u!54 &8893495806212295793 51 | Rigidbody: 52 | m_ObjectHideFlags: 0 53 | m_CorrespondingSourceObject: {fileID: 0} 54 | m_PrefabInstance: {fileID: 0} 55 | m_PrefabAsset: {fileID: 0} 56 | m_GameObject: {fileID: 8717040989158830671} 57 | serializedVersion: 2 58 | m_Mass: 1 59 | m_Drag: 0 60 | m_AngularDrag: 0.05 61 | m_UseGravity: 1 62 | m_IsKinematic: 0 63 | m_Interpolate: 0 64 | m_Constraints: 0 65 | m_CollisionDetection: 0 66 | --- !u!114 &7951639971589005041 67 | MonoBehaviour: 68 | m_ObjectHideFlags: 0 69 | m_CorrespondingSourceObject: {fileID: 0} 70 | m_PrefabInstance: {fileID: 0} 71 | m_PrefabAsset: {fileID: 0} 72 | m_GameObject: {fileID: 8717040989158830671} 73 | m_Enabled: 1 74 | m_EditorHideFlags: 0 75 | m_Script: {fileID: 11500000, guid: 3c5696d2a1dd4a84d9350f650cd00fd8, type: 3} 76 | m_Name: 77 | m_EditorClassIdentifier: 78 | m_InteractionManager: {fileID: 0} 79 | m_Colliders: [] 80 | m_InteractionLayerMask: 81 | serializedVersion: 2 82 | m_Bits: 4294967295 83 | m_OnFirstHoverEntered: 84 | m_PersistentCalls: 85 | m_Calls: [] 86 | m_OnHoverEntered: 87 | m_PersistentCalls: 88 | m_Calls: [] 89 | m_OnHoverExited: 90 | m_PersistentCalls: 91 | m_Calls: [] 92 | m_OnLastHoverExited: 93 | m_PersistentCalls: 94 | m_Calls: [] 95 | m_OnSelectEntered: 96 | m_PersistentCalls: 97 | m_Calls: [] 98 | m_OnSelectExited: 99 | m_PersistentCalls: 100 | m_Calls: [] 101 | m_OnSelectCanceled: 102 | m_PersistentCalls: 103 | m_Calls: [] 104 | m_OnActivate: 105 | m_PersistentCalls: 106 | m_Calls: [] 107 | m_OnDeactivate: 108 | m_PersistentCalls: 109 | m_Calls: [] 110 | m_CustomReticle: {fileID: 0} 111 | m_AttachTransform: {fileID: 0} 112 | m_AttachEaseInTime: 0.5 113 | m_MovementType: 1 114 | m_TrackPosition: 1 115 | m_SmoothPosition: 0 116 | m_SmoothPositionAmount: 5 117 | m_TightenPosition: 0.5 118 | m_TrackRotation: 1 119 | m_SmoothRotation: 0 120 | m_SmoothRotationAmount: 5 121 | m_TightenRotation: 0.5 122 | m_ThrowOnDetach: 1 123 | m_ThrowSmoothingDuration: 0.25 124 | m_ThrowSmoothingCurve: 125 | serializedVersion: 2 126 | m_Curve: 127 | - serializedVersion: 3 128 | time: 1 129 | value: 1 130 | inSlope: 0 131 | outSlope: 0 132 | tangentMode: 0 133 | weightedMode: 0 134 | inWeight: 0 135 | outWeight: 0 136 | m_PreInfinity: 2 137 | m_PostInfinity: 2 138 | m_RotationOrder: 4 139 | m_ThrowVelocityScale: 1.5 140 | m_ThrowAngularVelocityScale: 1 141 | m_GravityOnDetach: 0 142 | m_RetainTransformParent: 1 143 | gradient: 144 | serializedVersion: 2 145 | key0: {r: 1, g: 1, b: 1, a: 1} 146 | key1: {r: 0.9019608, g: 0.3372549, b: 0.47843137, a: 1} 147 | key2: {r: 1, g: 1, b: 1, a: 0} 148 | key3: {r: 0, g: 0, b: 0, a: 0} 149 | key4: {r: 0, g: 0, b: 0, a: 0} 150 | key5: {r: 0, g: 0, b: 0, a: 0} 151 | key6: {r: 0, g: 0, b: 0, a: 0} 152 | key7: {r: 0, g: 0, b: 0, a: 0} 153 | ctime0: 0 154 | ctime1: 65535 155 | ctime2: 65535 156 | ctime3: 0 157 | ctime4: 0 158 | ctime5: 0 159 | ctime6: 0 160 | ctime7: 0 161 | atime0: 0 162 | atime1: 65535 163 | atime2: 0 164 | atime3: 0 165 | atime4: 0 166 | atime5: 0 167 | atime6: 0 168 | atime7: 0 169 | m_Mode: 0 170 | m_NumColorKeys: 2 171 | m_NumAlphaKeys: 2 172 | --- !u!1 &9056518808503934226 173 | GameObject: 174 | m_ObjectHideFlags: 0 175 | m_CorrespondingSourceObject: {fileID: 0} 176 | m_PrefabInstance: {fileID: 0} 177 | m_PrefabAsset: {fileID: 0} 178 | serializedVersion: 6 179 | m_Component: 180 | - component: {fileID: 4157641717375358581} 181 | - component: {fileID: 2852199225484159032} 182 | - component: {fileID: 5869418264746138613} 183 | m_Layer: 0 184 | m_Name: Mesh 185 | m_TagString: Untagged 186 | m_Icon: {fileID: 0} 187 | m_NavMeshLayer: 0 188 | m_StaticEditorFlags: 0 189 | m_IsActive: 1 190 | --- !u!4 &4157641717375358581 191 | Transform: 192 | m_ObjectHideFlags: 0 193 | m_CorrespondingSourceObject: {fileID: 0} 194 | m_PrefabInstance: {fileID: 0} 195 | m_PrefabAsset: {fileID: 0} 196 | m_GameObject: {fileID: 9056518808503934226} 197 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 198 | m_LocalPosition: {x: 0, y: 0, z: 0} 199 | m_LocalScale: {x: 0.15, y: 0.15, z: 0.15} 200 | m_Children: [] 201 | m_Father: {fileID: 1670247575113446658} 202 | m_RootOrder: 0 203 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 204 | --- !u!33 &2852199225484159032 205 | MeshFilter: 206 | m_ObjectHideFlags: 0 207 | m_CorrespondingSourceObject: {fileID: 0} 208 | m_PrefabInstance: {fileID: 0} 209 | m_PrefabAsset: {fileID: 0} 210 | m_GameObject: {fileID: 9056518808503934226} 211 | m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} 212 | --- !u!23 &5869418264746138613 213 | MeshRenderer: 214 | m_ObjectHideFlags: 0 215 | m_CorrespondingSourceObject: {fileID: 0} 216 | m_PrefabInstance: {fileID: 0} 217 | m_PrefabAsset: {fileID: 0} 218 | m_GameObject: {fileID: 9056518808503934226} 219 | m_Enabled: 1 220 | m_CastShadows: 1 221 | m_ReceiveShadows: 1 222 | m_DynamicOccludee: 1 223 | m_MotionVectors: 1 224 | m_LightProbeUsage: 1 225 | m_ReflectionProbeUsage: 1 226 | m_RayTracingMode: 2 227 | m_RayTraceProcedural: 0 228 | m_RenderingLayerMask: 1 229 | m_RendererPriority: 0 230 | m_Materials: 231 | - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} 232 | m_StaticBatchInfo: 233 | firstSubMesh: 0 234 | subMeshCount: 0 235 | m_StaticBatchRoot: {fileID: 0} 236 | m_ProbeAnchor: {fileID: 0} 237 | m_LightProbeVolumeOverride: {fileID: 0} 238 | m_ScaleInLightmap: 1 239 | m_ReceiveGI: 1 240 | m_PreserveUVs: 0 241 | m_IgnoreNormalsForChartDetection: 0 242 | m_ImportantGI: 0 243 | m_StitchLightmapSeams: 1 244 | m_SelectedEditorRenderState: 3 245 | m_MinimumChartSize: 4 246 | m_AutoUVMaxDistance: 0.5 247 | m_AutoUVMaxAngle: 89 248 | m_LightmapParameters: {fileID: 0} 249 | m_SortingLayerID: 0 250 | m_SortingLayer: 0 251 | m_SortingOrder: 0 252 | m_AdditionalVertexStreams: {fileID: 0} 253 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Prefabs/InteractableExample.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f69be5dc756f9024b897f8a970211d36 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 668264fd6acbfac439573bafc7c0fe41 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Scenes/Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fc0d4010bbf28b4594072e72b8655ab 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Scenes/MainSceneSettings.lighting: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!850595691 &4890085278179872738 4 | LightingSettings: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: MainSceneSettings 10 | serializedVersion: 2 11 | m_GIWorkflowMode: 1 12 | m_EnableBakedLightmaps: 1 13 | m_EnableRealtimeLightmaps: 0 14 | m_RealtimeEnvironmentLighting: 1 15 | m_BounceScale: 1 16 | m_AlbedoBoost: 1 17 | m_IndirectOutputScale: 1 18 | m_UsingShadowmask: 1 19 | m_BakeBackend: 1 20 | m_LightmapMaxSize: 1024 21 | m_BakeResolution: 40 22 | m_Padding: 2 23 | m_TextureCompression: 1 24 | m_AO: 0 25 | m_AOMaxDistance: 1 26 | m_CompAOExponent: 1 27 | m_CompAOExponentDirect: 0 28 | m_ExtractAO: 0 29 | m_MixedBakeMode: 2 30 | m_LightmapsBakeMode: 1 31 | m_FilterMode: 1 32 | m_LightmapParameters: {fileID: 0} 33 | m_ExportTrainingData: 0 34 | m_TrainingDataDestination: TrainingData 35 | m_RealtimeResolution: 2 36 | m_ForceWhiteAlbedo: 0 37 | m_ForceUpdates: 0 38 | m_FinalGather: 0 39 | m_FinalGatherRayCount: 256 40 | m_FinalGatherFiltering: 1 41 | m_PVRCulling: 1 42 | m_PVRSampling: 1 43 | m_PVRDirectSampleCount: 32 44 | m_PVRSampleCount: 500 45 | m_PVREnvironmentSampleCount: 500 46 | m_PVREnvironmentReferencePointCount: 2048 47 | m_LightProbeSampleCountMultiplier: 4 48 | m_PVRBounces: 2 49 | m_PVRRussianRouletteStartBounce: 2 50 | m_PVREnvironmentMIS: 0 51 | m_PVRFilteringMode: 2 52 | m_PVRDenoiserTypeDirect: 0 53 | m_PVRDenoiserTypeIndirect: 0 54 | m_PVRDenoiserTypeAO: 0 55 | m_PVRFilterTypeDirect: 0 56 | m_PVRFilterTypeIndirect: 0 57 | m_PVRFilterTypeAO: 0 58 | m_PVRFilteringGaussRadiusDirect: 1 59 | m_PVRFilteringGaussRadiusIndirect: 5 60 | m_PVRFilteringGaussRadiusAO: 2 61 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 62 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 63 | m_PVRFilteringAtrousPositionSigmaAO: 1 64 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Scenes/MainSceneSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf752ea8e5e5fe245a839f5af43d533c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 350179e737f22604cb3ee3d350cec47b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Scripts/AssetInputExample.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.InputSystem; 3 | 4 | public class AssetInputExample : MonoBehaviour 5 | { 6 | public bool printStuff = true; 7 | public InputActionReference testReference = null; 8 | 9 | private void Start() 10 | { 11 | testReference.action.started += DoPressedThing; 12 | testReference.action.performed += DoChangeThing; 13 | testReference.action.canceled += DoReleasedThing; 14 | } 15 | 16 | private void OnEnable() 17 | { 18 | testReference.asset.Enable(); 19 | } 20 | 21 | private void OnDisable() 22 | { 23 | testReference.asset.Disable(); 24 | } 25 | 26 | private void OnDestroy() 27 | { 28 | testReference.action.started -= DoPressedThing; 29 | testReference.action.performed -= DoChangeThing; 30 | testReference.action.canceled -= DoReleasedThing; 31 | } 32 | 33 | private void DoPressedThing(InputAction.CallbackContext context) 34 | { 35 | if (printStuff) 36 | print("Pressed"); 37 | } 38 | 39 | private void DoChangeThing(InputAction.CallbackContext context) 40 | { 41 | if (printStuff) 42 | print(context.ReadValue()); 43 | } 44 | 45 | private void DoReleasedThing(InputAction.CallbackContext context) 46 | { 47 | if (printStuff) 48 | print("Released"); 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Scripts/AssetInputExample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 161a19c1fe6248d4983334d018bea061 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Scripts/InteractableExample.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.InputSystem; 3 | using UnityEngine.XR.Interaction.Toolkit; 4 | 5 | public class InteractableExample : XRGrabInteractable 6 | { 7 | // Variables 8 | 9 | protected override void Awake() 10 | { 11 | base.Awake(); 12 | } 13 | 14 | public override void ProcessInteractable(XRInteractionUpdateOrder.UpdatePhase updatePhase) 15 | { 16 | base.ProcessInteractable(updatePhase); 17 | 18 | // If the object is held 19 | 20 | // During Update 21 | } 22 | 23 | private void UpdateMesh() 24 | { 25 | // We need to make sure we are using an action-based controller 26 | 27 | // Now that we know we have the right controller, get the value of the activate (trigger-pull) 28 | 29 | // Apply that value to the object 30 | } 31 | 32 | private bool IsControllerActionBased(out ActionBasedController controller) 33 | { 34 | controller = null; 35 | 36 | // Needs to at least by a Base Controller Interactor 37 | 38 | // Make sure that Controller is Action-Based 39 | 40 | // Return a bool so we don't need this null-check else where 41 | return false; 42 | } 43 | 44 | private float GetActionValue(InputActionProperty inputAction) 45 | { 46 | // Read the float value, this can be a more advanced function with generics 47 | return 0.0f; 48 | } 49 | 50 | private void ApplyGradient(float value) 51 | { 52 | 53 | } 54 | 55 | private void ApplyScale(float value) 56 | { 57 | 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Scripts/InteractableExample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c5696d2a1dd4a84d9350f650cd00fd8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 962e1c5274ee1b848b9fcbb464ec8cf0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_OpenXR/Textures/Pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRwithAndrew/XR-OpenXR/df2eb04a081fff6a16f3b15c75dbb5ad60d9bdac/Assets/_OpenXR/Textures/Pink.png -------------------------------------------------------------------------------- /Assets/_OpenXR/Textures/Pink.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 390eb0cf3c536a043b4abeee23fa87c9 3 | TextureImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 11 7 | mipmaps: 8 | mipMapMode: 0 9 | enableMipMap: 1 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 | isReadable: 0 24 | streamingMipmaps: 0 25 | streamingMipmapsPriority: 0 26 | grayScaleToAlpha: 0 27 | generateCubemap: 6 28 | cubemapConvolution: 0 29 | seamlessCubemap: 0 30 | textureFormat: 1 31 | maxTextureSize: 2048 32 | textureSettings: 33 | serializedVersion: 2 34 | filterMode: -1 35 | aniso: -1 36 | mipBias: -100 37 | wrapU: -1 38 | wrapV: -1 39 | wrapW: -1 40 | nPOTScale: 1 41 | lightmap: 0 42 | compressionQuality: 50 43 | spriteMode: 0 44 | spriteExtrude: 1 45 | spriteMeshType: 1 46 | alignment: 0 47 | spritePivot: {x: 0.5, y: 0.5} 48 | spritePixelsToUnits: 100 49 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 50 | spriteGenerateFallbackPhysicsShape: 1 51 | alphaUsage: 1 52 | alphaIsTransparency: 0 53 | spriteTessellationDetail: -1 54 | textureType: 0 55 | textureShape: 1 56 | singleChannelComponent: 0 57 | maxTextureSizeSet: 0 58 | compressionQualitySet: 0 59 | textureFormatSet: 0 60 | applyGammaDecoding: 0 61 | platformSettings: 62 | - serializedVersion: 3 63 | buildTarget: DefaultTexturePlatform 64 | maxTextureSize: 2048 65 | resizeAlgorithm: 0 66 | textureFormat: -1 67 | textureCompression: 1 68 | compressionQuality: 50 69 | crunchedCompression: 0 70 | allowsAlphaSplitting: 0 71 | overridden: 0 72 | androidETC2FallbackOverride: 0 73 | forceMaximumCompressionQuality_BC6H_BC7: 0 74 | spriteSheet: 75 | serializedVersion: 2 76 | sprites: [] 77 | outline: [] 78 | physicsShape: [] 79 | bones: [] 80 | spriteID: 81 | internalID: 0 82 | vertices: [] 83 | indices: 84 | edges: [] 85 | weights: [] 86 | secondaryTextures: [] 87 | spritePackingTag: 88 | pSDRemoveMatte: 0 89 | pSDShowRemoveMatteOption: 0 90 | userData: 91 | assetBundleName: 92 | assetBundleVariant: 93 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.collab-proxy": "1.3.9", 4 | "com.unity.ide.rider": "2.0.7", 5 | "com.unity.ide.visualstudio": "2.0.5", 6 | "com.unity.ide.vscode": "1.2.3", 7 | "com.unity.test-framework": "1.1.19", 8 | "com.unity.textmeshpro": "3.0.1", 9 | "com.unity.timeline": "1.2.17", 10 | "com.unity.ugui": "1.0.0", 11 | "com.unity.xr.interaction.toolkit": "0.10.0-preview.7", 12 | "com.unity.xr.management": "3.2.17", 13 | "com.unity.xr.openxr": "0.1.1-preview.1", 14 | "com.unity.modules.ai": "1.0.0", 15 | "com.unity.modules.androidjni": "1.0.0", 16 | "com.unity.modules.animation": "1.0.0", 17 | "com.unity.modules.assetbundle": "1.0.0", 18 | "com.unity.modules.audio": "1.0.0", 19 | "com.unity.modules.cloth": "1.0.0", 20 | "com.unity.modules.director": "1.0.0", 21 | "com.unity.modules.imageconversion": "1.0.0", 22 | "com.unity.modules.imgui": "1.0.0", 23 | "com.unity.modules.jsonserialize": "1.0.0", 24 | "com.unity.modules.particlesystem": "1.0.0", 25 | "com.unity.modules.physics": "1.0.0", 26 | "com.unity.modules.physics2d": "1.0.0", 27 | "com.unity.modules.screencapture": "1.0.0", 28 | "com.unity.modules.terrain": "1.0.0", 29 | "com.unity.modules.terrainphysics": "1.0.0", 30 | "com.unity.modules.tilemap": "1.0.0", 31 | "com.unity.modules.ui": "1.0.0", 32 | "com.unity.modules.uielements": "1.0.0", 33 | "com.unity.modules.umbra": "1.0.0", 34 | "com.unity.modules.unityanalytics": "1.0.0", 35 | "com.unity.modules.unitywebrequest": "1.0.0", 36 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 37 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 38 | "com.unity.modules.unitywebrequesttexture": "1.0.0", 39 | "com.unity.modules.unitywebrequestwww": "1.0.0", 40 | "com.unity.modules.vehicles": "1.0.0", 41 | "com.unity.modules.video": "1.0.0", 42 | "com.unity.modules.vr": "1.0.0", 43 | "com.unity.modules.wind": "1.0.0", 44 | "com.unity.modules.xr": "1.0.0" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.collab-proxy": { 4 | "version": "1.3.9", 5 | "depth": 0, 6 | "source": "registry", 7 | "dependencies": {}, 8 | "url": "https://packages.unity.com" 9 | }, 10 | "com.unity.ext.nunit": { 11 | "version": "1.0.5", 12 | "depth": 1, 13 | "source": "registry", 14 | "dependencies": {}, 15 | "url": "https://packages.unity.com" 16 | }, 17 | "com.unity.ide.rider": { 18 | "version": "2.0.7", 19 | "depth": 0, 20 | "source": "registry", 21 | "dependencies": { 22 | "com.unity.test-framework": "1.1.1" 23 | }, 24 | "url": "https://packages.unity.com" 25 | }, 26 | "com.unity.ide.visualstudio": { 27 | "version": "2.0.5", 28 | "depth": 0, 29 | "source": "registry", 30 | "dependencies": {}, 31 | "url": "https://packages.unity.com" 32 | }, 33 | "com.unity.ide.vscode": { 34 | "version": "1.2.3", 35 | "depth": 0, 36 | "source": "registry", 37 | "dependencies": {}, 38 | "url": "https://packages.unity.com" 39 | }, 40 | "com.unity.inputsystem": { 41 | "version": "1.1.0-preview.1", 42 | "depth": 1, 43 | "source": "registry", 44 | "dependencies": {}, 45 | "url": "https://packages.unity.com" 46 | }, 47 | "com.unity.subsystemregistration": { 48 | "version": "1.0.6", 49 | "depth": 1, 50 | "source": "registry", 51 | "dependencies": {}, 52 | "url": "https://packages.unity.com" 53 | }, 54 | "com.unity.test-framework": { 55 | "version": "1.1.19", 56 | "depth": 0, 57 | "source": "registry", 58 | "dependencies": { 59 | "com.unity.ext.nunit": "1.0.5", 60 | "com.unity.modules.imgui": "1.0.0", 61 | "com.unity.modules.jsonserialize": "1.0.0" 62 | }, 63 | "url": "https://packages.unity.com" 64 | }, 65 | "com.unity.textmeshpro": { 66 | "version": "3.0.1", 67 | "depth": 0, 68 | "source": "registry", 69 | "dependencies": { 70 | "com.unity.ugui": "1.0.0" 71 | }, 72 | "url": "https://packages.unity.com" 73 | }, 74 | "com.unity.timeline": { 75 | "version": "1.2.17", 76 | "depth": 0, 77 | "source": "registry", 78 | "dependencies": {}, 79 | "url": "https://packages.unity.com" 80 | }, 81 | "com.unity.ugui": { 82 | "version": "1.0.0", 83 | "depth": 0, 84 | "source": "builtin", 85 | "dependencies": { 86 | "com.unity.modules.ui": "1.0.0", 87 | "com.unity.modules.imgui": "1.0.0" 88 | } 89 | }, 90 | "com.unity.xr.interaction.toolkit": { 91 | "version": "0.10.0-preview.7", 92 | "depth": 0, 93 | "source": "registry", 94 | "dependencies": { 95 | "com.unity.inputsystem": "1.0.0", 96 | "com.unity.ugui": "1.0.0", 97 | "com.unity.xr.legacyinputhelpers": "2.1.4" 98 | }, 99 | "url": "https://packages.unity.com" 100 | }, 101 | "com.unity.xr.legacyinputhelpers": { 102 | "version": "2.1.7", 103 | "depth": 2, 104 | "source": "registry", 105 | "dependencies": { 106 | "com.unity.modules.vr": "1.0.0", 107 | "com.unity.modules.xr": "1.0.0" 108 | }, 109 | "url": "https://packages.unity.com" 110 | }, 111 | "com.unity.xr.management": { 112 | "version": "4.0.0-pre.2", 113 | "depth": 1, 114 | "source": "registry", 115 | "dependencies": { 116 | "com.unity.modules.subsystems": "1.0.0", 117 | "com.unity.modules.vr": "1.0.0", 118 | "com.unity.modules.xr": "1.0.0", 119 | "com.unity.xr.legacyinputhelpers": "2.1.7", 120 | "com.unity.subsystemregistration": "1.0.6" 121 | }, 122 | "url": "https://packages.unity.com" 123 | }, 124 | "com.unity.xr.openxr": { 125 | "version": "0.1.1-preview.1", 126 | "depth": 0, 127 | "source": "registry", 128 | "dependencies": { 129 | "com.unity.xr.management": "4.0.0-pre.2", 130 | "com.unity.xr.legacyinputhelpers": "2.1.2", 131 | "com.unity.inputsystem": "1.1.0-preview.1" 132 | }, 133 | "url": "https://packages.unity.com" 134 | }, 135 | "com.unity.modules.ai": { 136 | "version": "1.0.0", 137 | "depth": 0, 138 | "source": "builtin", 139 | "dependencies": {} 140 | }, 141 | "com.unity.modules.androidjni": { 142 | "version": "1.0.0", 143 | "depth": 0, 144 | "source": "builtin", 145 | "dependencies": {} 146 | }, 147 | "com.unity.modules.animation": { 148 | "version": "1.0.0", 149 | "depth": 0, 150 | "source": "builtin", 151 | "dependencies": {} 152 | }, 153 | "com.unity.modules.assetbundle": { 154 | "version": "1.0.0", 155 | "depth": 0, 156 | "source": "builtin", 157 | "dependencies": {} 158 | }, 159 | "com.unity.modules.audio": { 160 | "version": "1.0.0", 161 | "depth": 0, 162 | "source": "builtin", 163 | "dependencies": {} 164 | }, 165 | "com.unity.modules.cloth": { 166 | "version": "1.0.0", 167 | "depth": 0, 168 | "source": "builtin", 169 | "dependencies": { 170 | "com.unity.modules.physics": "1.0.0" 171 | } 172 | }, 173 | "com.unity.modules.director": { 174 | "version": "1.0.0", 175 | "depth": 0, 176 | "source": "builtin", 177 | "dependencies": { 178 | "com.unity.modules.audio": "1.0.0", 179 | "com.unity.modules.animation": "1.0.0" 180 | } 181 | }, 182 | "com.unity.modules.imageconversion": { 183 | "version": "1.0.0", 184 | "depth": 0, 185 | "source": "builtin", 186 | "dependencies": {} 187 | }, 188 | "com.unity.modules.imgui": { 189 | "version": "1.0.0", 190 | "depth": 0, 191 | "source": "builtin", 192 | "dependencies": {} 193 | }, 194 | "com.unity.modules.jsonserialize": { 195 | "version": "1.0.0", 196 | "depth": 0, 197 | "source": "builtin", 198 | "dependencies": {} 199 | }, 200 | "com.unity.modules.particlesystem": { 201 | "version": "1.0.0", 202 | "depth": 0, 203 | "source": "builtin", 204 | "dependencies": {} 205 | }, 206 | "com.unity.modules.physics": { 207 | "version": "1.0.0", 208 | "depth": 0, 209 | "source": "builtin", 210 | "dependencies": {} 211 | }, 212 | "com.unity.modules.physics2d": { 213 | "version": "1.0.0", 214 | "depth": 0, 215 | "source": "builtin", 216 | "dependencies": {} 217 | }, 218 | "com.unity.modules.screencapture": { 219 | "version": "1.0.0", 220 | "depth": 0, 221 | "source": "builtin", 222 | "dependencies": { 223 | "com.unity.modules.imageconversion": "1.0.0" 224 | } 225 | }, 226 | "com.unity.modules.subsystems": { 227 | "version": "1.0.0", 228 | "depth": 1, 229 | "source": "builtin", 230 | "dependencies": { 231 | "com.unity.modules.jsonserialize": "1.0.0" 232 | } 233 | }, 234 | "com.unity.modules.terrain": { 235 | "version": "1.0.0", 236 | "depth": 0, 237 | "source": "builtin", 238 | "dependencies": {} 239 | }, 240 | "com.unity.modules.terrainphysics": { 241 | "version": "1.0.0", 242 | "depth": 0, 243 | "source": "builtin", 244 | "dependencies": { 245 | "com.unity.modules.physics": "1.0.0", 246 | "com.unity.modules.terrain": "1.0.0" 247 | } 248 | }, 249 | "com.unity.modules.tilemap": { 250 | "version": "1.0.0", 251 | "depth": 0, 252 | "source": "builtin", 253 | "dependencies": { 254 | "com.unity.modules.physics2d": "1.0.0" 255 | } 256 | }, 257 | "com.unity.modules.ui": { 258 | "version": "1.0.0", 259 | "depth": 0, 260 | "source": "builtin", 261 | "dependencies": {} 262 | }, 263 | "com.unity.modules.uielements": { 264 | "version": "1.0.0", 265 | "depth": 0, 266 | "source": "builtin", 267 | "dependencies": { 268 | "com.unity.modules.ui": "1.0.0", 269 | "com.unity.modules.imgui": "1.0.0", 270 | "com.unity.modules.jsonserialize": "1.0.0", 271 | "com.unity.modules.uielementsnative": "1.0.0" 272 | } 273 | }, 274 | "com.unity.modules.uielementsnative": { 275 | "version": "1.0.0", 276 | "depth": 1, 277 | "source": "builtin", 278 | "dependencies": { 279 | "com.unity.modules.ui": "1.0.0", 280 | "com.unity.modules.imgui": "1.0.0", 281 | "com.unity.modules.jsonserialize": "1.0.0" 282 | } 283 | }, 284 | "com.unity.modules.umbra": { 285 | "version": "1.0.0", 286 | "depth": 0, 287 | "source": "builtin", 288 | "dependencies": {} 289 | }, 290 | "com.unity.modules.unityanalytics": { 291 | "version": "1.0.0", 292 | "depth": 0, 293 | "source": "builtin", 294 | "dependencies": { 295 | "com.unity.modules.unitywebrequest": "1.0.0", 296 | "com.unity.modules.jsonserialize": "1.0.0" 297 | } 298 | }, 299 | "com.unity.modules.unitywebrequest": { 300 | "version": "1.0.0", 301 | "depth": 0, 302 | "source": "builtin", 303 | "dependencies": {} 304 | }, 305 | "com.unity.modules.unitywebrequestassetbundle": { 306 | "version": "1.0.0", 307 | "depth": 0, 308 | "source": "builtin", 309 | "dependencies": { 310 | "com.unity.modules.assetbundle": "1.0.0", 311 | "com.unity.modules.unitywebrequest": "1.0.0" 312 | } 313 | }, 314 | "com.unity.modules.unitywebrequestaudio": { 315 | "version": "1.0.0", 316 | "depth": 0, 317 | "source": "builtin", 318 | "dependencies": { 319 | "com.unity.modules.unitywebrequest": "1.0.0", 320 | "com.unity.modules.audio": "1.0.0" 321 | } 322 | }, 323 | "com.unity.modules.unitywebrequesttexture": { 324 | "version": "1.0.0", 325 | "depth": 0, 326 | "source": "builtin", 327 | "dependencies": { 328 | "com.unity.modules.unitywebrequest": "1.0.0", 329 | "com.unity.modules.imageconversion": "1.0.0" 330 | } 331 | }, 332 | "com.unity.modules.unitywebrequestwww": { 333 | "version": "1.0.0", 334 | "depth": 0, 335 | "source": "builtin", 336 | "dependencies": { 337 | "com.unity.modules.unitywebrequest": "1.0.0", 338 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 339 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 340 | "com.unity.modules.audio": "1.0.0", 341 | "com.unity.modules.assetbundle": "1.0.0", 342 | "com.unity.modules.imageconversion": "1.0.0" 343 | } 344 | }, 345 | "com.unity.modules.vehicles": { 346 | "version": "1.0.0", 347 | "depth": 0, 348 | "source": "builtin", 349 | "dependencies": { 350 | "com.unity.modules.physics": "1.0.0" 351 | } 352 | }, 353 | "com.unity.modules.video": { 354 | "version": "1.0.0", 355 | "depth": 0, 356 | "source": "builtin", 357 | "dependencies": { 358 | "com.unity.modules.audio": "1.0.0", 359 | "com.unity.modules.ui": "1.0.0", 360 | "com.unity.modules.unitywebrequest": "1.0.0" 361 | } 362 | }, 363 | "com.unity.modules.vr": { 364 | "version": "1.0.0", 365 | "depth": 0, 366 | "source": "builtin", 367 | "dependencies": { 368 | "com.unity.modules.jsonserialize": "1.0.0", 369 | "com.unity.modules.physics": "1.0.0", 370 | "com.unity.modules.xr": "1.0.0" 371 | } 372 | }, 373 | "com.unity.modules.wind": { 374 | "version": "1.0.0", 375 | "depth": 0, 376 | "source": "builtin", 377 | "dependencies": {} 378 | }, 379 | "com.unity.modules.xr": { 380 | "version": "1.0.0", 381 | "depth": 0, 382 | "source": "builtin", 383 | "dependencies": { 384 | "com.unity.modules.physics": "1.0.0", 385 | "com.unity.modules.jsonserialize": "1.0.0", 386 | "com.unity.modules.subsystems": "1.0.0" 387 | } 388 | } 389 | } 390 | } 391 | -------------------------------------------------------------------------------- /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/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 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/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 | com.unity.xr.management.loader_settings: {fileID: 11400000, guid: cfdd9d8113d9bb340be1174eec2a0c30, 10 | type: 2} 11 | com.unity.xr.openxr.settings4: {fileID: 11400000, guid: 3993e187dc11c4241aa7fe8269595366, 12 | type: 2} 13 | -------------------------------------------------------------------------------- /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: 9 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_AssetPipelineMode: 1 31 | m_CacheServerMode: 0 32 | m_CacheServerEndpoint: 33 | m_CacheServerNamespacePrefix: default 34 | m_CacheServerEnableDownload: 1 35 | m_CacheServerEnableUpload: 1 36 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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/PackageManagerSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_EnablePreviewPackages: 1 16 | m_EnablePackageDependencies: 0 17 | m_AdvancedSettingsExpanded: 1 18 | m_ScopedRegistriesSettingsExpanded: 1 19 | oneTimeWarningShown: 1 20 | m_Registries: 21 | - m_Id: main 22 | m_Name: 23 | m_Url: https://packages.unity.com 24 | m_Scopes: [] 25 | m_IsDefault: 1 26 | m_Capabilities: 7 27 | m_UserSelectedRegistryName: 28 | m_UserAddingNewScopedRegistry: 0 29 | m_RegistryInfoDraft: 30 | m_ErrorMessage: 31 | m_Original: 32 | m_Id: 33 | m_Name: 34 | m_Url: 35 | m_Scopes: [] 36 | m_IsDefault: 0 37 | m_Capabilities: 0 38 | m_Modified: 0 39 | m_Name: 40 | m_Url: 41 | m_Scopes: 42 | - 43 | m_SelectedScopeIndex: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_Gravity: {x: 0, y: -9.81} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_VelocityIterations: 8 10 | m_PositionIterations: 3 11 | m_VelocityThreshold: 1 12 | m_MaxLinearCorrection: 0.2 13 | m_MaxAngularCorrection: 8 14 | m_MaxTranslationSpeed: 100 15 | m_MaxRotationSpeed: 360 16 | m_BaumgarteScale: 0.2 17 | m_BaumgarteTimeOfImpactScale: 0.75 18 | m_TimeToSleep: 0.5 19 | m_LinearSleepTolerance: 0.01 20 | m_AngularSleepTolerance: 2 21 | m_DefaultContactOffset: 0.01 22 | m_JobOptions: 23 | serializedVersion: 2 24 | useMultithreading: 0 25 | useConsistencySorting: 0 26 | m_InterpolationPosesPerJob: 100 27 | m_NewContactsPerJob: 30 28 | m_CollideContactsPerJob: 100 29 | m_ClearFlagsPerJob: 200 30 | m_ClearBodyForcesPerJob: 200 31 | m_SyncDiscreteFixturesPerJob: 50 32 | m_SyncContinuousFixturesPerJob: 50 33 | m_FindNearestContactsPerJob: 100 34 | m_UpdateTriggerContactsPerJob: 100 35 | m_IslandSolverCostThreshold: 100 36 | m_IslandSolverBodyCostScale: 1 37 | m_IslandSolverContactCostScale: 10 38 | m_IslandSolverJointCostScale: 10 39 | m_IslandSolverBodiesPerJob: 50 40 | m_IslandSolverContactsPerJob: 50 41 | m_AutoSimulation: 1 42 | m_QueriesHitTriggers: 1 43 | m_QueriesStartInColliders: 1 44 | m_CallbacksOnDisable: 1 45 | m_ReuseCollisionCallbacks: 1 46 | m_AutoSyncTransforms: 0 47 | m_AlwaysShowColliders: 0 48 | m_ShowColliderSleep: 1 49 | m_ShowColliderContacts: 0 50 | m_ShowColliderAABB: 0 51 | m_ContactArrowScale: 0.2 52 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 53 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 54 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 55 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 56 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 57 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: 8 | - first: 9 | m_NativeTypeID: 114 10 | m_ManagedTypePPtr: {fileID: 11500000, guid: caff514de9b15ad48ab85dcff5508221, 11 | type: 3} 12 | m_ManagedTypeFallback: 13 | second: 14 | - m_Preset: {fileID: 2655988077585873504, guid: ffd8268f7307a0c48a067dad4a8fe060, 15 | type: 2} 16 | m_Filter: Left 17 | m_Disabled: 0 18 | - m_Preset: {fileID: 2655988077585873504, guid: 1421ad86ff3787b4dae70fe9e699a25f, 19 | type: 2} 20 | m_Filter: Right 21 | m_Disabled: 0 22 | -------------------------------------------------------------------------------- /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: 22 7 | productGUID: 35c571503ee56b84380d2e78a8016575 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: OpenXR_Unity 17 | defaultCursor: {fileID: 0} 18 | cursorHotspot: {x: 0, y: 0} 19 | m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} 20 | m_ShowUnitySplashScreen: 1 21 | m_ShowUnitySplashLogo: 1 22 | m_SplashScreenOverlayOpacity: 1 23 | m_SplashScreenAnimation: 1 24 | m_SplashScreenLogoStyle: 1 25 | m_SplashScreenDrawMode: 0 26 | m_SplashScreenBackgroundAnimationZoom: 1 27 | m_SplashScreenLogoAnimationZoom: 1 28 | m_SplashScreenBackgroundLandscapeAspect: 1 29 | m_SplashScreenBackgroundPortraitAspect: 1 30 | m_SplashScreenBackgroundLandscapeUvs: 31 | serializedVersion: 2 32 | x: 0 33 | y: 0 34 | width: 1 35 | height: 1 36 | m_SplashScreenBackgroundPortraitUvs: 37 | serializedVersion: 2 38 | x: 0 39 | y: 0 40 | width: 1 41 | height: 1 42 | m_SplashScreenLogos: [] 43 | m_VirtualRealitySplashScreen: {fileID: 0} 44 | m_HolographicTrackingLossScreen: {fileID: 0} 45 | defaultScreenWidth: 1024 46 | defaultScreenHeight: 768 47 | defaultScreenWidthWeb: 960 48 | defaultScreenHeightWeb: 600 49 | m_StereoRenderingPath: 0 50 | m_ActiveColorSpace: 1 51 | m_MTRendering: 1 52 | mipStripping: 0 53 | numberOfMipsStripped: 0 54 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 55 | iosShowActivityIndicatorOnLoading: -1 56 | androidShowActivityIndicatorOnLoading: -1 57 | iosUseCustomAppBackgroundBehavior: 0 58 | iosAllowHTTPDownload: 1 59 | allowedAutorotateToPortrait: 1 60 | allowedAutorotateToPortraitUpsideDown: 1 61 | allowedAutorotateToLandscapeRight: 1 62 | allowedAutorotateToLandscapeLeft: 1 63 | useOSAutorotation: 1 64 | use32BitDisplayBuffer: 1 65 | preserveFramebufferAlpha: 0 66 | disableDepthAndStencilBuffers: 0 67 | androidStartInFullscreen: 1 68 | androidRenderOutsideSafeArea: 1 69 | androidUseSwappy: 0 70 | androidBlitType: 0 71 | defaultIsNativeResolution: 1 72 | macRetinaSupport: 1 73 | runInBackground: 1 74 | captureSingleScreen: 0 75 | muteOtherAudioSources: 0 76 | Prepare IOS For Recording: 0 77 | Force IOS Speakers When Recording: 0 78 | deferSystemGesturesMode: 0 79 | hideHomeButton: 0 80 | submitAnalytics: 1 81 | usePlayerLog: 1 82 | bakeCollisionMeshes: 0 83 | forceSingleInstance: 0 84 | useFlipModelSwapchain: 1 85 | resizableWindow: 0 86 | useMacAppStoreValidation: 0 87 | macAppStoreCategory: public.app-category.games 88 | gpuSkinning: 1 89 | xboxPIXTextureCapture: 0 90 | xboxEnableAvatar: 0 91 | xboxEnableKinect: 0 92 | xboxEnableKinectAutoTracking: 0 93 | xboxEnableFitness: 0 94 | visibleInBackground: 1 95 | allowFullscreenSwitch: 1 96 | fullscreenMode: 1 97 | xboxSpeechDB: 0 98 | xboxEnableHeadOrientation: 0 99 | xboxEnableGuest: 0 100 | xboxEnablePIXSampling: 0 101 | metalFramebufferOnly: 0 102 | xboxOneResolution: 0 103 | xboxOneSResolution: 0 104 | xboxOneXResolution: 3 105 | xboxOneMonoLoggingLevel: 0 106 | xboxOneLoggingLevel: 1 107 | xboxOneDisableEsram: 0 108 | xboxOneEnableTypeOptimization: 0 109 | xboxOnePresentImmediateThreshold: 0 110 | switchQueueCommandMemory: 0 111 | switchQueueControlMemory: 16384 112 | switchQueueComputeMemory: 262144 113 | switchNVNShaderPoolsGranularity: 33554432 114 | switchNVNDefaultPoolsGranularity: 16777216 115 | switchNVNOtherPoolsGranularity: 16777216 116 | switchNVNMaxPublicTextureIDCount: 0 117 | switchNVNMaxPublicSamplerIDCount: 0 118 | stadiaPresentMode: 0 119 | stadiaTargetFramerate: 0 120 | vulkanNumSwapchainBuffers: 3 121 | vulkanEnableSetSRGBWrite: 0 122 | vulkanEnablePreTransform: 0 123 | vulkanEnableLateAcquireNextImage: 0 124 | m_SupportedAspectRatios: 125 | 4:3: 1 126 | 5:4: 1 127 | 16:10: 1 128 | 16:9: 1 129 | Others: 1 130 | bundleVersion: 0.1 131 | preloadedAssets: 132 | - {fileID: 241603724811853242, guid: 3993e187dc11c4241aa7fe8269595366, type: 2} 133 | metroInputSource: 0 134 | wsaTransparentSwapchain: 0 135 | m_HolographicPauseOnTrackingLoss: 1 136 | xboxOneDisableKinectGpuReservation: 1 137 | xboxOneEnable7thCore: 1 138 | vrSettings: 139 | enable360StereoCapture: 0 140 | isWsaHolographicRemotingEnabled: 0 141 | enableFrameTimingStats: 0 142 | useHDRDisplay: 0 143 | D3DHDRBitDepth: 0 144 | m_ColorGamuts: 00000000 145 | targetPixelDensity: 30 146 | resolutionScalingMode: 0 147 | androidSupportedAspectRatio: 1 148 | androidMaxAspectRatio: 2.1 149 | applicationIdentifier: 150 | Standalone: com.DefaultCompany.OpenXRUnity 151 | buildNumber: 152 | Standalone: 0 153 | iPhone: 0 154 | tvOS: 0 155 | overrideDefaultApplicationIdentifier: 0 156 | AndroidBundleVersionCode: 1 157 | AndroidMinSdkVersion: 19 158 | AndroidTargetSdkVersion: 0 159 | AndroidPreferredInstallLocation: 1 160 | aotOptions: 161 | stripEngineCode: 1 162 | iPhoneStrippingLevel: 0 163 | iPhoneScriptCallOptimization: 0 164 | ForceInternetPermission: 0 165 | ForceSDCardPermission: 0 166 | CreateWallpaper: 0 167 | APKExpansionFiles: 0 168 | keepLoadedShadersAlive: 0 169 | StripUnusedMeshComponents: 1 170 | VertexChannelCompressionMask: 4054 171 | iPhoneSdkVersion: 988 172 | iOSTargetOSVersionString: 11.0 173 | tvOSSdkVersion: 0 174 | tvOSRequireExtendedGameController: 0 175 | tvOSTargetOSVersionString: 11.0 176 | uIPrerenderedIcon: 0 177 | uIRequiresPersistentWiFi: 0 178 | uIRequiresFullScreen: 1 179 | uIStatusBarHidden: 1 180 | uIExitOnSuspend: 0 181 | uIStatusBarStyle: 0 182 | appleTVSplashScreen: {fileID: 0} 183 | appleTVSplashScreen2x: {fileID: 0} 184 | tvOSSmallIconLayers: [] 185 | tvOSSmallIconLayers2x: [] 186 | tvOSLargeIconLayers: [] 187 | tvOSLargeIconLayers2x: [] 188 | tvOSTopShelfImageLayers: [] 189 | tvOSTopShelfImageLayers2x: [] 190 | tvOSTopShelfImageWideLayers: [] 191 | tvOSTopShelfImageWideLayers2x: [] 192 | iOSLaunchScreenType: 0 193 | iOSLaunchScreenPortrait: {fileID: 0} 194 | iOSLaunchScreenLandscape: {fileID: 0} 195 | iOSLaunchScreenBackgroundColor: 196 | serializedVersion: 2 197 | rgba: 0 198 | iOSLaunchScreenFillPct: 100 199 | iOSLaunchScreenSize: 100 200 | iOSLaunchScreenCustomXibPath: 201 | iOSLaunchScreeniPadType: 0 202 | iOSLaunchScreeniPadImage: {fileID: 0} 203 | iOSLaunchScreeniPadBackgroundColor: 204 | serializedVersion: 2 205 | rgba: 0 206 | iOSLaunchScreeniPadFillPct: 100 207 | iOSLaunchScreeniPadSize: 100 208 | iOSLaunchScreeniPadCustomXibPath: 209 | iOSLaunchScreenCustomStoryboardPath: 210 | iOSLaunchScreeniPadCustomStoryboardPath: 211 | iOSDeviceRequirements: [] 212 | iOSURLSchemes: [] 213 | iOSBackgroundModes: 0 214 | iOSMetalForceHardShadows: 0 215 | metalEditorSupport: 1 216 | metalAPIValidation: 1 217 | iOSRenderExtraFrameOnPause: 0 218 | iosCopyPluginsCodeInsteadOfSymlink: 0 219 | appleDeveloperTeamID: 220 | iOSManualSigningProvisioningProfileID: 221 | tvOSManualSigningProvisioningProfileID: 222 | iOSManualSigningProvisioningProfileType: 0 223 | tvOSManualSigningProvisioningProfileType: 0 224 | appleEnableAutomaticSigning: 0 225 | iOSRequireARKit: 0 226 | iOSAutomaticallyDetectAndAddCapabilities: 1 227 | appleEnableProMotion: 0 228 | shaderPrecisionModel: 0 229 | clonedFromGUID: c0afd0d1d80e3634a9dac47e8a0426ea 230 | templatePackageId: com.unity.template.3d@4.2.8 231 | templateDefaultScene: Assets/Scenes/SampleScene.unity 232 | useCustomMainManifest: 0 233 | useCustomLauncherManifest: 0 234 | useCustomMainGradleTemplate: 0 235 | useCustomLauncherGradleManifest: 0 236 | useCustomBaseGradleTemplate: 0 237 | useCustomGradlePropertiesTemplate: 0 238 | useCustomProguardFile: 0 239 | AndroidTargetArchitectures: 1 240 | AndroidSplashScreenScale: 0 241 | androidSplashScreen: {fileID: 0} 242 | AndroidKeystoreName: 243 | AndroidKeyaliasName: 244 | AndroidBuildApkPerCpuArchitecture: 0 245 | AndroidTVCompatibility: 0 246 | AndroidIsGame: 1 247 | AndroidEnableTango: 0 248 | androidEnableBanner: 1 249 | androidUseLowAccuracyLocation: 0 250 | androidUseCustomKeystore: 0 251 | m_AndroidBanners: 252 | - width: 320 253 | height: 180 254 | banner: {fileID: 0} 255 | androidGamepadSupportLevel: 0 256 | AndroidMinifyWithR8: 0 257 | AndroidMinifyRelease: 0 258 | AndroidMinifyDebug: 0 259 | AndroidValidateAppBundleSize: 1 260 | AndroidAppBundleSizeToValidate: 150 261 | m_BuildTargetIcons: [] 262 | m_BuildTargetPlatformIcons: [] 263 | m_BuildTargetBatching: 264 | - m_BuildTarget: Standalone 265 | m_StaticBatching: 1 266 | m_DynamicBatching: 0 267 | - m_BuildTarget: tvOS 268 | m_StaticBatching: 1 269 | m_DynamicBatching: 0 270 | - m_BuildTarget: Android 271 | m_StaticBatching: 1 272 | m_DynamicBatching: 0 273 | - m_BuildTarget: iPhone 274 | m_StaticBatching: 1 275 | m_DynamicBatching: 0 276 | - m_BuildTarget: WebGL 277 | m_StaticBatching: 0 278 | m_DynamicBatching: 0 279 | m_BuildTargetGraphicsJobs: 280 | - m_BuildTarget: MacStandaloneSupport 281 | m_GraphicsJobs: 0 282 | - m_BuildTarget: Switch 283 | m_GraphicsJobs: 1 284 | - m_BuildTarget: MetroSupport 285 | m_GraphicsJobs: 1 286 | - m_BuildTarget: AppleTVSupport 287 | m_GraphicsJobs: 0 288 | - m_BuildTarget: BJMSupport 289 | m_GraphicsJobs: 1 290 | - m_BuildTarget: LinuxStandaloneSupport 291 | m_GraphicsJobs: 1 292 | - m_BuildTarget: PS4Player 293 | m_GraphicsJobs: 1 294 | - m_BuildTarget: iOSSupport 295 | m_GraphicsJobs: 0 296 | - m_BuildTarget: WindowsStandaloneSupport 297 | m_GraphicsJobs: 1 298 | - m_BuildTarget: XboxOnePlayer 299 | m_GraphicsJobs: 1 300 | - m_BuildTarget: LuminSupport 301 | m_GraphicsJobs: 0 302 | - m_BuildTarget: AndroidPlayer 303 | m_GraphicsJobs: 0 304 | - m_BuildTarget: WebGLSupport 305 | m_GraphicsJobs: 0 306 | m_BuildTargetGraphicsJobMode: 307 | - m_BuildTarget: PS4Player 308 | m_GraphicsJobMode: 0 309 | - m_BuildTarget: XboxOnePlayer 310 | m_GraphicsJobMode: 0 311 | m_BuildTargetGraphicsAPIs: 312 | - m_BuildTarget: AndroidPlayer 313 | m_APIs: 150000000b000000 314 | m_Automatic: 0 315 | - m_BuildTarget: iOSSupport 316 | m_APIs: 10000000 317 | m_Automatic: 1 318 | - m_BuildTarget: AppleTVSupport 319 | m_APIs: 10000000 320 | m_Automatic: 1 321 | - m_BuildTarget: WebGLSupport 322 | m_APIs: 0b000000 323 | m_Automatic: 1 324 | m_BuildTargetVRSettings: 325 | - m_BuildTarget: Standalone 326 | m_Enabled: 0 327 | m_Devices: 328 | - Oculus 329 | - OpenVR 330 | openGLRequireES31: 0 331 | openGLRequireES31AEP: 0 332 | openGLRequireES32: 0 333 | m_TemplateCustomTags: {} 334 | mobileMTRendering: 335 | Android: 1 336 | iPhone: 1 337 | tvOS: 1 338 | m_BuildTargetGroupLightmapEncodingQuality: [] 339 | m_BuildTargetGroupLightmapSettings: [] 340 | m_BuildTargetNormalMapEncoding: [] 341 | playModeTestRunnerEnabled: 0 342 | runPlayModeTestAsEditModeTest: 0 343 | actionOnDotNetUnhandledException: 1 344 | enableInternalProfiler: 0 345 | logObjCUncaughtExceptions: 1 346 | enableCrashReportAPI: 0 347 | cameraUsageDescription: 348 | locationUsageDescription: 349 | microphoneUsageDescription: 350 | switchNMETAOverride: 351 | switchNetLibKey: 352 | switchSocketMemoryPoolSize: 6144 353 | switchSocketAllocatorPoolSize: 128 354 | switchSocketConcurrencyLimit: 14 355 | switchScreenResolutionBehavior: 2 356 | switchUseCPUProfiler: 0 357 | switchUseGOLDLinker: 0 358 | switchApplicationID: 0x01004b9000490000 359 | switchNSODependencies: 360 | switchTitleNames_0: 361 | switchTitleNames_1: 362 | switchTitleNames_2: 363 | switchTitleNames_3: 364 | switchTitleNames_4: 365 | switchTitleNames_5: 366 | switchTitleNames_6: 367 | switchTitleNames_7: 368 | switchTitleNames_8: 369 | switchTitleNames_9: 370 | switchTitleNames_10: 371 | switchTitleNames_11: 372 | switchTitleNames_12: 373 | switchTitleNames_13: 374 | switchTitleNames_14: 375 | switchPublisherNames_0: 376 | switchPublisherNames_1: 377 | switchPublisherNames_2: 378 | switchPublisherNames_3: 379 | switchPublisherNames_4: 380 | switchPublisherNames_5: 381 | switchPublisherNames_6: 382 | switchPublisherNames_7: 383 | switchPublisherNames_8: 384 | switchPublisherNames_9: 385 | switchPublisherNames_10: 386 | switchPublisherNames_11: 387 | switchPublisherNames_12: 388 | switchPublisherNames_13: 389 | switchPublisherNames_14: 390 | switchIcons_0: {fileID: 0} 391 | switchIcons_1: {fileID: 0} 392 | switchIcons_2: {fileID: 0} 393 | switchIcons_3: {fileID: 0} 394 | switchIcons_4: {fileID: 0} 395 | switchIcons_5: {fileID: 0} 396 | switchIcons_6: {fileID: 0} 397 | switchIcons_7: {fileID: 0} 398 | switchIcons_8: {fileID: 0} 399 | switchIcons_9: {fileID: 0} 400 | switchIcons_10: {fileID: 0} 401 | switchIcons_11: {fileID: 0} 402 | switchIcons_12: {fileID: 0} 403 | switchIcons_13: {fileID: 0} 404 | switchIcons_14: {fileID: 0} 405 | switchSmallIcons_0: {fileID: 0} 406 | switchSmallIcons_1: {fileID: 0} 407 | switchSmallIcons_2: {fileID: 0} 408 | switchSmallIcons_3: {fileID: 0} 409 | switchSmallIcons_4: {fileID: 0} 410 | switchSmallIcons_5: {fileID: 0} 411 | switchSmallIcons_6: {fileID: 0} 412 | switchSmallIcons_7: {fileID: 0} 413 | switchSmallIcons_8: {fileID: 0} 414 | switchSmallIcons_9: {fileID: 0} 415 | switchSmallIcons_10: {fileID: 0} 416 | switchSmallIcons_11: {fileID: 0} 417 | switchSmallIcons_12: {fileID: 0} 418 | switchSmallIcons_13: {fileID: 0} 419 | switchSmallIcons_14: {fileID: 0} 420 | switchManualHTML: 421 | switchAccessibleURLs: 422 | switchLegalInformation: 423 | switchMainThreadStackSize: 1048576 424 | switchPresenceGroupId: 425 | switchLogoHandling: 0 426 | switchReleaseVersion: 0 427 | switchDisplayVersion: 1.0.0 428 | switchStartupUserAccount: 0 429 | switchTouchScreenUsage: 0 430 | switchSupportedLanguagesMask: 0 431 | switchLogoType: 0 432 | switchApplicationErrorCodeCategory: 433 | switchUserAccountSaveDataSize: 0 434 | switchUserAccountSaveDataJournalSize: 0 435 | switchApplicationAttribute: 0 436 | switchCardSpecSize: -1 437 | switchCardSpecClock: -1 438 | switchRatingsMask: 0 439 | switchRatingsInt_0: 0 440 | switchRatingsInt_1: 0 441 | switchRatingsInt_2: 0 442 | switchRatingsInt_3: 0 443 | switchRatingsInt_4: 0 444 | switchRatingsInt_5: 0 445 | switchRatingsInt_6: 0 446 | switchRatingsInt_7: 0 447 | switchRatingsInt_8: 0 448 | switchRatingsInt_9: 0 449 | switchRatingsInt_10: 0 450 | switchRatingsInt_11: 0 451 | switchRatingsInt_12: 0 452 | switchLocalCommunicationIds_0: 453 | switchLocalCommunicationIds_1: 454 | switchLocalCommunicationIds_2: 455 | switchLocalCommunicationIds_3: 456 | switchLocalCommunicationIds_4: 457 | switchLocalCommunicationIds_5: 458 | switchLocalCommunicationIds_6: 459 | switchLocalCommunicationIds_7: 460 | switchParentalControl: 0 461 | switchAllowsScreenshot: 1 462 | switchAllowsVideoCapturing: 1 463 | switchAllowsRuntimeAddOnContentInstall: 0 464 | switchDataLossConfirmation: 0 465 | switchUserAccountLockEnabled: 0 466 | switchSystemResourceMemory: 16777216 467 | switchSupportedNpadStyles: 22 468 | switchNativeFsCacheSize: 32 469 | switchIsHoldTypeHorizontal: 0 470 | switchSupportedNpadCount: 8 471 | switchSocketConfigEnabled: 0 472 | switchTcpInitialSendBufferSize: 32 473 | switchTcpInitialReceiveBufferSize: 64 474 | switchTcpAutoSendBufferSizeMax: 256 475 | switchTcpAutoReceiveBufferSizeMax: 256 476 | switchUdpSendBufferSize: 9 477 | switchUdpReceiveBufferSize: 42 478 | switchSocketBufferEfficiency: 4 479 | switchSocketInitializeEnabled: 1 480 | switchNetworkInterfaceManagerInitializeEnabled: 1 481 | switchPlayerConnectionEnabled: 1 482 | switchUseNewStyleFilepaths: 0 483 | ps4NPAgeRating: 12 484 | ps4NPTitleSecret: 485 | ps4NPTrophyPackPath: 486 | ps4ParentalLevel: 11 487 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 488 | ps4Category: 0 489 | ps4MasterVersion: 01.00 490 | ps4AppVersion: 01.00 491 | ps4AppType: 0 492 | ps4ParamSfxPath: 493 | ps4VideoOutPixelFormat: 0 494 | ps4VideoOutInitialWidth: 1920 495 | ps4VideoOutBaseModeInitialWidth: 1920 496 | ps4VideoOutReprojectionRate: 60 497 | ps4PronunciationXMLPath: 498 | ps4PronunciationSIGPath: 499 | ps4BackgroundImagePath: 500 | ps4StartupImagePath: 501 | ps4StartupImagesFolder: 502 | ps4IconImagesFolder: 503 | ps4SaveDataImagePath: 504 | ps4SdkOverride: 505 | ps4BGMPath: 506 | ps4ShareFilePath: 507 | ps4ShareOverlayImagePath: 508 | ps4PrivacyGuardImagePath: 509 | ps4ExtraSceSysFile: 510 | ps4NPtitleDatPath: 511 | ps4RemotePlayKeyAssignment: -1 512 | ps4RemotePlayKeyMappingDir: 513 | ps4PlayTogetherPlayerCount: 0 514 | ps4EnterButtonAssignment: 1 515 | ps4ApplicationParam1: 0 516 | ps4ApplicationParam2: 0 517 | ps4ApplicationParam3: 0 518 | ps4ApplicationParam4: 0 519 | ps4DownloadDataSize: 0 520 | ps4GarlicHeapSize: 2048 521 | ps4ProGarlicHeapSize: 2560 522 | playerPrefsMaxSize: 32768 523 | ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ 524 | ps4pnSessions: 1 525 | ps4pnPresence: 1 526 | ps4pnFriends: 1 527 | ps4pnGameCustomData: 1 528 | playerPrefsSupport: 0 529 | enableApplicationExit: 0 530 | resetTempFolder: 1 531 | restrictedAudioUsageRights: 0 532 | ps4UseResolutionFallback: 0 533 | ps4ReprojectionSupport: 0 534 | ps4UseAudio3dBackend: 0 535 | ps4UseLowGarlicFragmentationMode: 1 536 | ps4SocialScreenEnabled: 0 537 | ps4ScriptOptimizationLevel: 0 538 | ps4Audio3dVirtualSpeakerCount: 14 539 | ps4attribCpuUsage: 0 540 | ps4PatchPkgPath: 541 | ps4PatchLatestPkgPath: 542 | ps4PatchChangeinfoPath: 543 | ps4PatchDayOne: 0 544 | ps4attribUserManagement: 0 545 | ps4attribMoveSupport: 0 546 | ps4attrib3DSupport: 0 547 | ps4attribShareSupport: 0 548 | ps4attribExclusiveVR: 0 549 | ps4disableAutoHideSplash: 0 550 | ps4videoRecordingFeaturesUsed: 0 551 | ps4contentSearchFeaturesUsed: 0 552 | ps4CompatibilityPS5: 0 553 | ps4GPU800MHz: 1 554 | ps4attribEyeToEyeDistanceSettingVR: 0 555 | ps4IncludedModules: [] 556 | ps4attribVROutputEnabled: 0 557 | monoEnv: 558 | splashScreenBackgroundSourceLandscape: {fileID: 0} 559 | splashScreenBackgroundSourcePortrait: {fileID: 0} 560 | blurSplashScreenBackground: 1 561 | spritePackerPolicy: 562 | webGLMemorySize: 16 563 | webGLExceptionSupport: 1 564 | webGLNameFilesAsHashes: 0 565 | webGLDataCaching: 1 566 | webGLDebugSymbols: 0 567 | webGLEmscriptenArgs: 568 | webGLModulesDirectory: 569 | webGLTemplate: APPLICATION:Default 570 | webGLAnalyzeBuildSize: 0 571 | webGLUseEmbeddedResources: 0 572 | webGLCompressionFormat: 1 573 | webGLWasmArithmeticExceptions: 0 574 | webGLLinkerTarget: 1 575 | webGLThreadsSupport: 0 576 | webGLDecompressionFallback: 0 577 | scriptingDefineSymbols: {} 578 | additionalCompilerArguments: {} 579 | platformArchitecture: {} 580 | scriptingBackend: {} 581 | il2cppCompilerConfiguration: {} 582 | managedStrippingLevel: {} 583 | incrementalIl2cppBuild: {} 584 | suppressCommonWarnings: 1 585 | allowUnsafeCode: 0 586 | useDeterministicCompilation: 1 587 | useReferenceAssemblies: 1 588 | enableRoslynAnalyzers: 1 589 | additionalIl2CppArgs: 590 | scriptingRuntimeVersion: 1 591 | gcIncremental: 0 592 | gcWBarrierValidation: 0 593 | apiCompatibilityLevelPerPlatform: {} 594 | m_RenderingPath: 1 595 | m_MobileRenderingPath: 1 596 | metroPackageName: Template_3D 597 | metroPackageVersion: 598 | metroCertificatePath: 599 | metroCertificatePassword: 600 | metroCertificateSubject: 601 | metroCertificateIssuer: 602 | metroCertificateNotAfter: 0000000000000000 603 | metroApplicationDescription: Template_3D 604 | wsaImages: {} 605 | metroTileShortName: 606 | metroTileShowName: 0 607 | metroMediumTileShowName: 0 608 | metroLargeTileShowName: 0 609 | metroWideTileShowName: 0 610 | metroSupportStreamingInstall: 0 611 | metroLastRequiredScene: 0 612 | metroDefaultTileSize: 1 613 | metroTileForegroundText: 2 614 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 615 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, 616 | a: 1} 617 | metroSplashScreenUseBackgroundColor: 0 618 | platformCapabilities: {} 619 | metroTargetDeviceFamilies: {} 620 | metroFTAName: 621 | metroFTAFileTypes: [] 622 | metroProtocolName: 623 | XboxOneProductId: 624 | XboxOneUpdateKey: 625 | XboxOneSandboxId: 626 | XboxOneContentId: 627 | XboxOneTitleId: 628 | XboxOneSCId: 629 | XboxOneGameOsOverridePath: 630 | XboxOnePackagingOverridePath: 631 | XboxOneAppManifestOverridePath: 632 | XboxOneVersion: 1.0.0.0 633 | XboxOnePackageEncryption: 0 634 | XboxOnePackageUpdateGranularity: 2 635 | XboxOneDescription: 636 | XboxOneLanguage: 637 | - enus 638 | XboxOneCapability: [] 639 | XboxOneGameRating: {} 640 | XboxOneIsContentPackage: 0 641 | XboxOneEnableGPUVariability: 1 642 | XboxOneSockets: {} 643 | XboxOneSplashScreen: {fileID: 0} 644 | XboxOneAllowedProductIds: [] 645 | XboxOnePersistentLocalStorageSize: 0 646 | XboxOneXTitleMemory: 8 647 | XboxOneOverrideIdentityName: 648 | XboxOneOverrideIdentityPublisher: 649 | vrEditorSettings: {} 650 | cloudServicesEnabled: 651 | UNet: 1 652 | luminIcon: 653 | m_Name: 654 | m_ModelFolderPath: 655 | m_PortalFolderPath: 656 | luminCert: 657 | m_CertPath: 658 | m_SignPackage: 1 659 | luminIsChannelApp: 0 660 | luminVersion: 661 | m_VersionCode: 1 662 | m_VersionName: 663 | apiCompatibilityLevel: 6 664 | activeInputHandler: 1 665 | cloudProjectId: 666 | framebufferDepthMemorylessMode: 0 667 | qualitySettingsNames: [] 668 | projectName: 669 | organizationId: 670 | cloudEnabled: 0 671 | legacyClampBlendShapeWeights: 0 672 | virtualTexturingSupportEnabled: 0 673 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2020.2.0f1 2 | m_EditorVersionWithRevision: 2020.2.0f1 (3721df5a8b28) 3 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!47 &1 4 | QualitySettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 5 7 | m_CurrentQuality: 5 8 | m_QualitySettings: 9 | - serializedVersion: 2 10 | name: Very Low 11 | pixelLightCount: 0 12 | shadows: 0 13 | shadowResolution: 0 14 | shadowProjection: 1 15 | shadowCascades: 1 16 | shadowDistance: 15 17 | shadowNearPlaneOffset: 3 18 | shadowCascade2Split: 0.33333334 19 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 20 | shadowmaskMode: 0 21 | blendWeights: 1 22 | textureQuality: 1 23 | anisotropicTextures: 0 24 | antiAliasing: 0 25 | softParticles: 0 26 | softVegetation: 0 27 | realtimeReflectionProbes: 0 28 | billboardsFaceCameraPosition: 0 29 | vSyncCount: 0 30 | lodBias: 0.3 31 | maximumLODLevel: 0 32 | streamingMipmapsActive: 0 33 | streamingMipmapsAddAllCameras: 1 34 | streamingMipmapsMemoryBudget: 512 35 | streamingMipmapsRenderersPerFrame: 512 36 | streamingMipmapsMaxLevelReduction: 2 37 | streamingMipmapsMaxFileIORequests: 1024 38 | particleRaycastBudget: 4 39 | asyncUploadTimeSlice: 2 40 | asyncUploadBufferSize: 16 41 | asyncUploadPersistentBuffer: 1 42 | resolutionScalingFixedDPIFactor: 1 43 | excludedTargetPlatforms: [] 44 | - serializedVersion: 2 45 | name: Low 46 | pixelLightCount: 0 47 | shadows: 0 48 | shadowResolution: 0 49 | shadowProjection: 1 50 | shadowCascades: 1 51 | shadowDistance: 20 52 | shadowNearPlaneOffset: 3 53 | shadowCascade2Split: 0.33333334 54 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 55 | shadowmaskMode: 0 56 | blendWeights: 2 57 | textureQuality: 0 58 | anisotropicTextures: 0 59 | antiAliasing: 0 60 | softParticles: 0 61 | softVegetation: 0 62 | realtimeReflectionProbes: 0 63 | billboardsFaceCameraPosition: 0 64 | vSyncCount: 0 65 | lodBias: 0.4 66 | maximumLODLevel: 0 67 | streamingMipmapsActive: 0 68 | streamingMipmapsAddAllCameras: 1 69 | streamingMipmapsMemoryBudget: 512 70 | streamingMipmapsRenderersPerFrame: 512 71 | streamingMipmapsMaxLevelReduction: 2 72 | streamingMipmapsMaxFileIORequests: 1024 73 | particleRaycastBudget: 16 74 | asyncUploadTimeSlice: 2 75 | asyncUploadBufferSize: 16 76 | asyncUploadPersistentBuffer: 1 77 | resolutionScalingFixedDPIFactor: 1 78 | excludedTargetPlatforms: [] 79 | - serializedVersion: 2 80 | name: Medium 81 | pixelLightCount: 1 82 | shadows: 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 | Nintendo 3DS: 5 223 | Nintendo Switch: 5 224 | PS4: 5 225 | PSP2: 2 226 | Stadia: 5 227 | Standalone: 5 228 | WebGL: 3 229 | Windows Store Apps: 5 230 | XboxOne: 5 231 | iPhone: 2 232 | tvOS: 2 233 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 1 7 | m_Enabled: 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_TestInitMode: 0 13 | CrashReportingSettings: 14 | m_EventUrl: https://perf-events.cloud.unity3d.com 15 | m_Enabled: 0 16 | m_LogBufferSize: 10 17 | m_CaptureEditorExceptions: 1 18 | UnityPurchasingSettings: 19 | m_Enabled: 0 20 | m_TestMode: 0 21 | UnityAnalyticsSettings: 22 | m_Enabled: 0 23 | m_TestMode: 0 24 | m_InitializeOnStartup: 1 25 | UnityAdsSettings: 26 | m_Enabled: 0 27 | m_InitializeOnStartup: 1 28 | m_TestMode: 0 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | m_GameIds: {} 32 | m_GameId: 33 | PerformanceReportingSettings: 34 | m_Enabled: 0 35 | -------------------------------------------------------------------------------- /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/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/XRPackageSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_Settings": [ 3 | "RemoveLegacyInputHelpersForReload" 4 | ] 5 | } -------------------------------------------------------------------------------- /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 | } --------------------------------------------------------------------------------