From 9d4203978924698432ecc11998d759d537672e31 Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Sun, 25 Apr 2021 13:19:02 -0400 Subject: [PATCH 1/9] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..a3aab836 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,19 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- development + +pool: + vmImage: ubuntu-latest + +steps: +- script: echo Hello, world! + displayName: 'Run a one-line script' + +- script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script' From 8794f454263dd284bd06f515e8e9ba5cb3262e35 Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Sun, 25 Apr 2021 13:23:07 -0400 Subject: [PATCH 2/9] updated pipelines.yml --- azure-pipelines.yml | 75 ++++++++++++++++++++++++++++++++++++--------- 1 file changed, 60 insertions(+), 15 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a3aab836..1fa954e1 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,19 +1,64 @@ -# Starter pipeline -# Start with a minimal pipeline that you can customize to build and deploy your code. -# Add steps that build, run tests, deploy, and more: -# https://aka.ms/yaml +# XRTK Azure Pipelines build configuration -trigger: -- development +resources: + repositories: + - repository: pipeline_repo + type: github + name: XRTK/AzurePipelines + endpoint: XRTK + +variables: + project.name: '' + EditorPath: '' + LogDirectory: '' + ${{ if eq( variables['build.reason'], 'PullRequest' ) }}: + date: '' + ${{ if ne( variables['build.reason'], 'PullRequest' ) }}: + date: ${{ '$(Date:yyyyMMdd)' }} + isReleaseBuild: $[ and( eq(variables['Build.SourceBranchName'], 'main'), or( eq(variables['build.reason'], 'BatchedCI'), eq(variables['build.reason'], 'Manual') ) ) ] + isPreviewBuild: $[ and( eq(variables['System.PullRequest.TargetBranch'], 'main'), eq(variables['build.reason'], 'PullRequest') ) ] -pool: - vmImage: ubuntu-latest +name: $(package.name) ${{ coalesce( variables['date'], '$(System.PullRequest.PullRequestNumber)', '$(Date:yyyyMMdd)' ) }}$(Rev:.r) -steps: -- script: echo Hello, world! - displayName: 'Run a one-line script' +pr: + autoCancel: true + branches: + include: + - main + - development + - feature/* + paths: + include: + - azure-pipelines.yml + - XRTK.Examples/* + exclude: + - '*' + +trigger: + batch: true + branches: + include: + - main + paths: + include: + - azure-pipelines.yml + - XRTK.Examples/* + - Submodules/* + exclude: + - '*' -- script: | - echo Add other tasks to build, test, and deploy your project. - echo See https://aka.ms/yaml - displayName: 'Run a multi-line script' +extends: + template: common.yml@pipeline_repo + parameters: + # Unity -buildTarget command line args https://docs.unity3d.com/Manual/CommandLineArguments.html + # StandaloneWindows64, WSAPlayer, StandaloneOSX, iOS, StandaloneLinux64, Android, WebGL, Lumin + # TODO: Only use XRTK defined platform targets for build + targets: + - StandaloneWindows64 + - WSAPlayer + - StandaloneOSX + - iOS + - StandaloneLinux64 + - Android + - Lumin + #- WebGL From 5983eabed41b88030c655a517af1622decf04e4d Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Sun, 25 Apr 2021 14:57:38 -0400 Subject: [PATCH 3/9] fixed symbolic links updated azure pipelines --- .../Assets/XRTK.Generated/SymbolicLinkSettings.asset | 6 +++--- azure-pipelines.yml | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset b/XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset index 3bb37fbd..0f9e1d4c 100644 --- a/XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset +++ b/XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset @@ -16,13 +16,13 @@ MonoBehaviour: - sourceRelativePath: /XRTK.Examples/Library/PackageCache/com.xrtk.sdk@0.2.5/Profiles~ targetRelativePath: /XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles isActive: 1 - - sourceRelativePath: /XRTK.Examples/Library/PackageCache/com.xrtk.sdk@0.2.6/Prefabs~ + - sourceRelativePath: /XRTK.Examples/Library/PackageCache/com.xrtk.sdk@0.2.5/Prefabs~ targetRelativePath: /XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs isActive: 1 - - sourceRelativePath: /XRTK.Examples/Library/PackageCache/com.xrtk.lumin@0.2.6/Profiles~ + - sourceRelativePath: /XRTK.Examples/Library/PackageCache/com.xrtk.lumin@0.2.5/Profiles~ targetRelativePath: /XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles isActive: 1 - - sourceRelativePath: /XRTK.Examples/Library/PackageCache/com.xrtk.oculus@0.2.6/Profiles~ + - sourceRelativePath: /XRTK.Examples/Library/PackageCache/com.xrtk.oculus@0.2.5/Profiles~ targetRelativePath: /XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles isActive: 1 - sourceRelativePath: /XRTK.Examples/Library/PackageCache/com.xrtk.wmr@0.2.6/Profiles~ diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1fa954e1..16fda9a9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,7 +8,9 @@ resources: endpoint: XRTK variables: - project.name: '' + project.name: 'Examples' + package.name: '' + package.version: '' EditorPath: '' LogDirectory: '' ${{ if eq( variables['build.reason'], 'PullRequest' ) }}: From cf3af31dd0f8093f2cbc9d85e9f0c7a324caf652 Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Sun, 25 Apr 2021 16:46:50 -0400 Subject: [PATCH 4/9] Removed the profile symlinks Added default profiles to project --- .gitignore | 8 - .../Assets/XRTK.Generated/Lumin.meta | 8 + .../Assets/XRTK.Generated/Lumin/Profiles.meta | 8 + .../Lumin/Profiles/CameraSystem.meta | 8 + .../LuminCameraDataProvider.asset | 28 + .../LuminCameraDataProvider.asset.meta} | 2 +- .../Lumin/Profiles/Controllers.meta | 8 + .../Profiles/Controllers/HandController.meta | 8 + .../Controllers/HandController/Left.meta | 8 + ...minHandGripInteractionMappingProfile.asset | 30 + ...ndGripInteractionMappingProfile.asset.meta | 8 + ...andGripPoseInteractionMappingProfile.asset | 30 + ...ipPoseInteractionMappingProfile.asset.meta | 8 + ...xFingerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + ...inHandPointInteractionMappingProfile.asset | 30 + ...dPointInteractionMappingProfile.asset.meta | 8 + ...nHandSelectInteractionMappingProfile.asset | 30 + ...SelectInteractionMappingProfile.asset.meta | 8 + ...PointerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + .../LeftLuminHandVisualizationProfile.asset | 28 + ...ftLuminHandVisualizationProfile.asset.meta | 8 + ...minMixedRealityHandControllerProfile.asset | 27 + ...xedRealityHandControllerProfile.asset.meta | 8 + ...minHandControllerDataProviderProfile.asset | 26 + ...ndControllerDataProviderProfile.asset.meta | 8 + .../Controllers/HandController/Right.meta | 8 + ...minHandGripInteractionMappingProfile.asset | 30 + ...ndGripInteractionMappingProfile.asset.meta | 8 + ...andGripPoseInteractionMappingProfile.asset | 30 + ...ipPoseInteractionMappingProfile.asset.meta | 8 + ...xFingerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + ...inHandPointInteractionMappingProfile.asset | 30 + ...dPointInteractionMappingProfile.asset.meta | 8 + ...nHandSelectInteractionMappingProfile.asset | 30 + ...SelectInteractionMappingProfile.asset.meta | 8 + ...PointerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + .../RightLuminHandVisulaizationProfile.asset | 28 + ...htLuminHandVisulaizationProfile.asset.meta | 8 + ...minMixedRealityHandControllerProfile.asset | 27 + ...xedRealityHandControllerProfile.asset.meta | 8 + .../Lumin/Profiles/Controllers/Left.meta | 8 + .../Controllers/Left/BumperPressProfile.asset | 30 + .../Left/BumperPressProfile.asset.meta | 8 + .../Controllers/Left/HomePressProfile.asset | 30 + .../Left/HomePressProfile.asset.meta | 8 + .../Left/SpatialPointerProfile.asset | 31 + .../Left/SpatialPointerProfile.asset.meta | 8 + .../Left/TouchpadPositionProfile.asset | 30 + .../Left/TouchpadPositionProfile.asset.meta | 8 + .../Left/TouchpadPressProfile.asset | 30 + .../Left/TouchpadPressProfile.asset.meta | 8 + .../Left/TouchpadTouchProfile.asset | 30 + .../Left/TouchpadTouchProfile.asset.meta | 8 + .../Left/TriggerPositionProfile.asset | 30 + .../Left/TriggerPositionProfile.asset.meta | 8 + .../Left/TriggerPress(Select)Profile.asset | 30 + .../TriggerPress(Select)Profile.asset.meta | 8 + .../Left/TriggerTouchProfile.asset | 30 + .../Left/TriggerTouchProfile.asset.meta | 8 + .../LeftLuminControllerProfile.asset | 30 + .../LeftLuminControllerProfile.asset.meta | 8 + .../LuminControllerDataProviderProfile.asset | 18 + ...inControllerDataProviderProfile.asset.meta | 8 + .../Lumin/Profiles/Controllers/Right.meta | 8 + .../Right/BumperPressProfile.asset | 30 + .../Right/BumperPressProfile.asset.meta | 8 + .../Controllers/Right/HomePressProfile.asset | 30 + .../Right/HomePressProfile.asset.meta | 8 + .../Right/SpatialPointerProfile.asset | 31 + .../Right/SpatialPointerProfile.asset.meta | 8 + .../Right/TouchpadPositionProfile.asset | 30 + .../Right/TouchpadPositionProfile.asset.meta | 8 + .../Right/TouchpadPressProfile.asset | 30 + .../Right/TouchpadPressProfile.asset.meta | 8 + .../Right/TouchpadTouchProfile.asset | 30 + .../Right/TouchpadTouchProfile.asset.meta | 8 + .../Right/TriggerPositionProfile.asset | 30 + .../Right/TriggerPositionProfile.asset.meta | 8 + .../Right/TriggerPress(Select)Profile.asset | 30 + .../TriggerPress(Select)Profile.asset.meta | 8 + .../Right/TriggerTouchProfile.asset | 30 + .../Right/TriggerTouchProfile.asset.meta | 8 + .../RightLuminControllerProfile.asset | 30 + .../RightLuminControllerProfile.asset.meta | 8 + .../XRTK.Generated/Lumin/Profiles/Input.meta | 8 + .../Lumin/Profiles/Input/Pointers.meta | 8 + ...uminHandControllerNearPointerProfile.asset | 23 + ...andControllerNearPointerProfile.asset.meta | 8 + ...nHandControllerSpatialPointerProfile.asset | 23 + ...ControllerSpatialPointerProfile.asset.meta | 8 + ...PlatformServiceConfigurationsProfile.asset | 55 + ...ormServiceConfigurationsProfile.asset.meta | 8 + .../Assets/XRTK.Generated/Oculus.meta | 8 + .../XRTK.Generated/Oculus/Profiles.meta | 8 + .../Oculus/Profiles/CameraSystem.meta | 8 + .../OculusCameraDataProviderProfile.asset | 28 + ...OculusCameraDataProviderProfile.asset.meta | 8 + .../Oculus/Profiles/Controllers.meta | 8 + .../Profiles/Controllers/HandController.meta | 8 + .../Controllers/HandController/Left.meta | 8 + ...lusHandGripInteractionMappingProfile.asset | 30 + ...ndGripInteractionMappingProfile.asset.meta | 8 + ...andGripPoseInteractionMappingProfile.asset | 30 + ...ipPoseInteractionMappingProfile.asset.meta | 8 + ...xFingerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + ...usHandPointInteractionMappingProfile.asset | 30 + ...dPointInteractionMappingProfile.asset.meta | 8 + ...sHandSelectInteractionMappingProfile.asset | 30 + ...SelectInteractionMappingProfile.asset.meta | 8 + ...PointerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + .../LeftOculusHandVisualizationProfile.asset | 28 + ...tOculusHandVisualizationProfile.asset.meta | 8 + ...lusMixedRealityHandControllerProfile.asset | 27 + ...xedRealityHandControllerProfile.asset.meta | 8 + ...lusHandControllerDataProviderProfile.asset | 25 + ...ndControllerDataProviderProfile.asset.meta | 8 + .../Controllers/HandController/Right.meta | 8 + ...lusHandGripInteractionMappingProfile.asset | 30 + ...ndGripInteractionMappingProfile.asset.meta | 8 + ...andGripPoseInteractionMappingProfile.asset | 30 + ...ipPoseInteractionMappingProfile.asset.meta | 8 + ...xFingerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + ...usHandPointInteractionMappingProfile.asset | 30 + ...dPointInteractionMappingProfile.asset.meta | 8 + ...sHandSelectInteractionMappingProfile.asset | 30 + ...SelectInteractionMappingProfile.asset.meta | 8 + ...PointerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + .../RightOculusHandVisulaizationProfile.asset | 28 + ...tOculusHandVisulaizationProfile.asset.meta | 8 + ...lusMixedRealityHandControllerProfile.asset | 27 + ...xedRealityHandControllerProfile.asset.meta | 8 + .../OculusControllerDataProviderProfile.asset | 19 + ...usControllerDataProviderProfile.asset.meta | 8 + .../Controllers/OculusRemoteController.meta | 8 + .../Button.BackProfile.asset | 30 + .../Button.BackProfile.asset.meta | 8 + .../Button.DpadDownProfile.asset | 30 + .../Button.DpadDownProfile.asset.meta | 8 + .../Button.DpadLeftProfile.asset | 30 + .../Button.DpadLeftProfile.asset.meta | 8 + .../Button.DpadRightProfile.asset | 30 + .../Button.DpadRightProfile.asset.meta | 8 + .../Button.DpadUpProfile.asset | 30 + .../Button.DpadUpProfile.asset.meta | 8 + .../Button.OneProfile.asset | 30 + .../Button.OneProfile.asset.meta | 8 + .../Button.StartProfile.asset | 30 + .../Button.StartProfile.asset.meta | 8 + .../Button.TwoProfile.asset | 30 + .../Button.TwoProfile.asset.meta | 8 + .../OculusRemoteControllerProfile.asset | 28 + .../OculusRemoteControllerProfile.asset.meta | 8 + .../Controllers/OculusTouchController.meta | 8 + .../OculusTouchController/Left.meta | 8 + ...xis1D.PrimaryHandTriggerPressProfile.asset | 30 + ....PrimaryHandTriggerPressProfile.asset.meta | 8 + .../Axis1D.PrimaryHandTriggerProfile.asset | 30 + ...xis1D.PrimaryHandTriggerProfile.asset.meta | 8 + ....PrimaryIndexTriggerNearTouchProfile.asset | 30 + ...aryIndexTriggerNearTouchProfile.asset.meta | 8 + ...is1D.PrimaryIndexTriggerPressProfile.asset | 30 + ...PrimaryIndexTriggerPressProfile.asset.meta | 8 + .../Axis1D.PrimaryIndexTriggerProfile.asset | 30 + ...is1D.PrimaryIndexTriggerProfile.asset.meta | 8 + ...is1D.PrimaryIndexTriggerTouchProfile.asset | 30 + ...PrimaryIndexTriggerTouchProfile.asset.meta | 8 + .../Left/Axis2D.PrimaryThumbRestProfile.asset | 30 + .../Axis2D.PrimaryThumbRestProfile.asset.meta | 8 + .../Axis2D.PrimaryThumbstickProfile.asset | 30 + ...Axis2D.PrimaryThumbstickProfile.asset.meta | 8 + .../Left/Button.FourPressProfile.asset | 30 + .../Left/Button.FourPressProfile.asset.meta | 8 + .../Left/Button.FourTouchProfile.asset | 30 + .../Left/Button.FourTouchProfile.asset.meta | 8 + ...on.PrimaryThumbstickNearTouchProfile.asset | 30 + ...imaryThumbstickNearTouchProfile.asset.meta | 8 + ...Button.PrimaryThumbstickPressProfile.asset | 30 + ...n.PrimaryThumbstickPressProfile.asset.meta | 8 + ...Button.PrimaryThumbstickTouchProfile.asset | 30 + ...n.PrimaryThumbstickTouchProfile.asset.meta | 8 + .../Left/Button.StartPressProfile.asset | 30 + .../Left/Button.StartPressProfile.asset.meta | 8 + .../Left/Button.ThreePressProfile.asset | 30 + .../Left/Button.ThreePressProfile.asset.meta | 8 + .../Left/Button.ThreeTouchProfile.asset | 30 + .../Left/Button.ThreeTouchProfile.asset.meta | 8 + ...uchGripPoseInteractionMappingProfile.asset | 30 + ...ipPoseInteractionMappingProfile.asset.meta | 8 + .../Left/SpatialPointerProfile.asset | 32 + .../Left/SpatialPointerProfile.asset.meta | 8 + ...uch.PrimaryThumbRestNearTouchProfile.asset | 30 + ...rimaryThumbRestNearTouchProfile.asset.meta | 8 + .../Touch.PrimaryThumbRestTouchProfile.asset | 30 + ...ch.PrimaryThumbRestTouchProfile.asset.meta | 8 + .../LeftOculusTouchControllerProfile.asset | 41 + ...eftOculusTouchControllerProfile.asset.meta | 8 + .../LeftOculusTouchControllerVisualizer.asset | 28 + ...OculusTouchControllerVisualizer.asset.meta | 8 + .../OculusTouchController/Right.meta | 8 + ...s1D.SecondaryHandTriggerPressProfile.asset | 30 + ...econdaryHandTriggerPressProfile.asset.meta | 8 + .../Axis1D.SecondaryHandTriggerProfile.asset | 30 + ...s1D.SecondaryHandTriggerProfile.asset.meta | 8 + ...econdaryIndexTriggerNearTouchProfile.asset | 30 + ...aryIndexTriggerNearTouchProfile.asset.meta | 8 + ...1D.SecondaryIndexTriggerPressProfile.asset | 30 + ...condaryIndexTriggerPressProfile.asset.meta | 8 + .../Axis1D.SecondaryIndexTriggerProfile.asset | 30 + ...1D.SecondaryIndexTriggerProfile.asset.meta | 8 + ...1D.SecondaryIndexTriggerTouchProfile.asset | 30 + ...condaryIndexTriggerTouchProfile.asset.meta | 8 + .../Axis2D.SecondaryThumbRestProfile.asset | 30 + ...xis2D.SecondaryThumbRestProfile.asset.meta | 8 + .../Axis2D.SecondaryThumbstickProfile.asset | 30 + ...is2D.SecondaryThumbstickProfile.asset.meta | 8 + .../Right/Button.OnePressProfile.asset | 30 + .../Right/Button.OnePressProfile.asset.meta | 8 + .../Right/Button.OneTouchProfile.asset | 30 + .../Right/Button.OneTouchProfile.asset.meta | 8 + ....SecondaryThumbstickNearTouchProfile.asset | 30 + ...ndaryThumbstickNearTouchProfile.asset.meta | 8 + ...tton.SecondaryThumbstickPressProfile.asset | 30 + ...SecondaryThumbstickPressProfile.asset.meta | 8 + ...tton.SecondaryThumbstickTouchProfile.asset | 30 + ...SecondaryThumbstickTouchProfile.asset.meta | 8 + .../Right/Button.TwoPressProfile.asset | 30 + .../Right/Button.TwoPressProfile.asset.meta | 8 + .../Right/Button.TwoTouchProfile.asset | 30 + .../Right/Button.TwoTouchProfile.asset.meta | 8 + ...uchGripPoseInteractionMappingProfile.asset | 30 + ...ipPoseInteractionMappingProfile.asset.meta | 8 + .../Right/SpatialPointerProfile.asset | 32 + .../Right/SpatialPointerProfile.asset.meta | 8 + ...h.SecondaryThumbRestNearTouchProfile.asset | 30 + ...ondaryThumbRestNearTouchProfile.asset.meta | 8 + ...Touch.SecondaryThumbRestTouchProfile.asset | 30 + ....SecondaryThumbRestTouchProfile.asset.meta | 8 + .../RightOculusTouchControllerProfile.asset | 40 + ...ghtOculusTouchControllerProfile.asset.meta | 8 + ...RightOculusTouchControllerVisualizer.asset | 28 + ...OculusTouchControllerVisualizer.asset.meta | 8 + .../XRTK.Generated/Oculus/Profiles/Input.meta | 8 + .../Oculus/Profiles/Input/Pointers.meta | 8 + ...ulusHandControllerNearPointerProfile.asset | 23 + ...andControllerNearPointerProfile.asset.meta | 8 + ...sHandControllerSpatialPointerProfile.asset | 23 + ...ControllerSpatialPointerProfile.asset.meta | 8 + ...PlatformServiceConfigurationsProfile.asset | 46 + ...ormServiceConfigurationsProfile.asset.meta | 8 + XRTK.Examples/Assets/XRTK.Generated/SDK.meta | 8 + .../Assets/XRTK.Generated/SDK/Prefabs.meta | 8 + .../SDK/Prefabs/Diagnostics.meta | 8 + .../Diagnostics/ConsoleLogEntry.prefab | 159 + .../Diagnostics/ConsoleLogEntry.prefab.meta | 7 + .../DefaultDiagnosticsWindow.prefab | 3271 +++++++++++++++++ .../DefaultDiagnosticsWindow.prefab.meta | 7 + .../SDK/Prefabs/Diagnostics/Frame.prefab | 76 + .../SDK/Prefabs/Diagnostics/Frame.prefab.meta | 7 + .../Assets/XRTK.Generated/SDK/Prefabs/UX.meta | 8 + .../SDK/Prefabs/UX/Cursors.meta | 8 + .../Prefabs/UX/Cursors/DefaultCursor.prefab | 878 +++++ .../UX/Cursors/DefaultCursor.prefab.meta | 8 + .../SDK/Prefabs/UX/Cursors/MouseCursor.prefab | 149 + .../UX/Cursors/MouseCursor.prefab.meta | 8 + .../Prefabs/UX/Cursors/TeleportCursor.prefab | 362 ++ .../UX/Cursors/TeleportCursor.prefab.meta | 8 + .../XRTK.Generated/SDK/Prefabs/UX/Hands.meta | 8 + ...DefaultLeftHandControllerVisualizer.prefab | 57 + ...ltLeftHandControllerVisualizer.prefab.meta | 7 + ...efaultRightHandControllerVisualizer.prefab | 63 + ...tRightHandControllerVisualizer.prefab.meta | 7 + .../SDK/Prefabs/UX/Hands/HandFingertip.prefab | 79 + .../UX/Hands/HandFingertip.prefab.meta | 7 + .../SDK/Prefabs/UX/Hands/HandJoint.prefab | 79 + .../Prefabs/UX/Hands/HandJoint.prefab.meta | 7 + .../Prefabs/UX/Hands/HandJointGizmo.prefab | 81 + .../UX/Hands/HandJointGizmo.prefab.meta | 7 + .../Prefabs/UX/Hands/HandLeft_Joints.prefab | 54 + .../UX/Hands/HandLeft_Joints.prefab.meta | 7 + .../SDK/Prefabs/UX/Hands/HandLeft_Mesh.prefab | 93 + .../UX/Hands/HandLeft_Mesh.prefab.meta | 7 + .../SDK/Prefabs/UX/Hands/HandPalm.prefab | 79 + .../SDK/Prefabs/UX/Hands/HandPalm.prefab.meta | 7 + .../Prefabs/UX/Hands/HandRight_Joints.prefab | 36 + .../UX/Hands/HandRight_Joints.prefab.meta | 7 + .../Prefabs/UX/Hands/HandRight_Mesh.prefab | 59 + .../UX/Hands/HandRight_Mesh.prefab.meta | 7 + .../SDK/Prefabs/UX/Pointers.meta | 8 + .../Pointers/DefaultControllerPointer.prefab | 554 +++ .../DefaultControllerPointer.prefab.meta | 8 + .../Pointers/HandControllerNearPointer.prefab | 105 + .../HandControllerNearPointer.prefab.meta | 7 + .../HandControllerSpatialPointer.prefab | 663 ++++ .../HandControllerSpatialPointer.prefab.meta | 8 + .../Prefabs/UX/Pointers/MousePointer.prefab | 79 + .../UX/Pointers/MousePointer.prefab.meta | 8 + .../UX/Pointers/ParabolicPointer.prefab | 869 +++++ .../UX/Pointers/ParabolicPointer.prefab.meta | 8 + .../Prefabs/UX/Pointers/TouchPointer.prefab | 399 ++ .../UX/Pointers/TouchPointer.prefab.meta | 8 + .../SDK/Prefabs/UX/Tooltips.meta | 8 + .../Constrained Parabola Tooltip.prefab | 689 ++++ .../Constrained Parabola Tooltip.prefab.meta | 8 + .../UX/Tooltips/Simple Line ToolTip.prefab | 687 ++++ .../Tooltips/Simple Line ToolTip.prefab.meta | 8 + .../Prefabs/UX/Tooltips/Spline ToolTip.prefab | 691 ++++ .../UX/Tooltips/Spline ToolTip.prefab.meta | 8 + .../Assets/XRTK.Generated/SDK/Profiles.meta | 8 + .../SDK/Profiles/CameraSystem.meta | 8 + ...ixedRealityCameraDataProviderProfile.asset | 28 + ...ealityCameraDataProviderProfile.asset.meta | 8 + .../MixedRealityCameraSystemProfile.asset | 30 + ...MixedRealityCameraSystemProfile.asset.meta | 8 + .../SDK/Profiles/Diagnostics.meta | 8 + ...MixedRealityDiagnosticsSystemProfile.asset | 42 + ...RealityDiagnosticsSystemProfile.asset.meta | 8 + .../XRTK.Generated/SDK/Profiles/Input.meta | 8 + .../Profiles/Input/ControllerVisualizers.meta | 8 + .../LeftControllerVisualizer.asset | 28 + .../LeftControllerVisualizer.asset.meta | 8 + .../RightControllerVisualizer.asset | 28 + .../RightControllerVisualizer.asset.meta | 8 + .../SDK/Profiles/Input/DataProviders.meta | 8 + .../GenericOpenVRController.meta | 8 + .../GenericOpenVRController/Left.meta | 8 + .../Left/GripTriggerPositionProfile.asset | 30 + .../GripTriggerPositionProfile.asset.meta | 8 + .../Left/InvertDualAxisProcessor.asset | 16 + .../Left/InvertDualAxisProcessor.asset.meta | 8 + .../Left/SpatialGripProfile.asset | 30 + .../Left/SpatialGripProfile.asset.meta | 8 + .../Left/SpatialPointerProfile.asset | 32 + .../Left/SpatialPointerProfile.asset.meta | 8 + .../Trackpad-ThumbstickPositionProfile.asset | 31 + ...ckpad-ThumbstickPositionProfile.asset.meta | 8 + .../Trackpad-ThumbstickPressProfile.asset | 30 + ...Trackpad-ThumbstickPressProfile.asset.meta | 8 + .../Trackpad-ThumbstickTouchProfile.asset | 30 + ...Trackpad-ThumbstickTouchProfile.asset.meta | 8 + .../Left/TriggerPositionProfile.asset | 30 + .../Left/TriggerPositionProfile.asset.meta | 8 + .../Left/TriggerPress(Select)Profile.asset | 30 + .../TriggerPress(Select)Profile.asset.meta | 8 + .../Left/TriggerTouchProfile.asset | 30 + .../Left/TriggerTouchProfile.asset.meta | 8 + .../Left/UnityButtonId2Profile.asset | 30 + .../Left/UnityButtonId2Profile.asset.meta | 8 + .../Left/UnityButtonId3Profile.asset | 30 + .../Left/UnityButtonId3Profile.asset.meta | 8 + .../Left/WMRTouchpadPositionProfile.asset | 30 + .../WMRTouchpadPositionProfile.asset.meta | 8 + .../Left/WMRTouchpadTouchProfile.asset | 30 + .../Left/WMRTouchpadTouchProfile.asset.meta | 8 + .../LeftGenericOpenVRControllerProfile.asset | 34 + ...tGenericOpenVRControllerProfile.asset.meta | 8 + .../GenericOpenVRController/Right.meta | 8 + .../Right/GripTriggerPositionProfile.asset | 30 + .../GripTriggerPositionProfile.asset.meta | 8 + .../Right/InvertDualAxisProcessor.asset | 16 + .../Right/InvertDualAxisProcessor.asset.meta | 8 + .../Right/SpatialGripProfile.asset | 30 + .../Right/SpatialGripProfile.asset.meta | 8 + .../Right/SpatialPointerProfile.asset | 32 + .../Right/SpatialPointerProfile.asset.meta | 8 + .../Trackpad-ThumbstickPositionProfile.asset | 31 + ...ckpad-ThumbstickPositionProfile.asset.meta | 8 + .../Trackpad-ThumbstickPressProfile.asset | 30 + ...Trackpad-ThumbstickPressProfile.asset.meta | 8 + .../Trackpad-ThumbstickTouchProfile.asset | 30 + ...Trackpad-ThumbstickTouchProfile.asset.meta | 8 + .../Right/TriggerPositionProfile.asset | 30 + .../Right/TriggerPositionProfile.asset.meta | 8 + .../Right/TriggerPress(Select)Profile.asset | 30 + .../TriggerPress(Select)Profile.asset.meta | 8 + .../Right/TriggerTouchProfile.asset | 30 + .../Right/TriggerTouchProfile.asset.meta | 8 + .../Right/UnityButtonId0Profile.asset | 30 + .../Right/UnityButtonId0Profile.asset.meta | 8 + .../Right/UnityButtonId1Profile.asset | 30 + .../Right/UnityButtonId1Profile.asset.meta | 8 + .../Right/WMRTouchpadPositionProfile.asset | 30 + .../WMRTouchpadPositionProfile.asset.meta | 8 + .../Right/WMRTouchpadTouchProfile.asset | 30 + .../Right/WMRTouchpadTouchProfile.asset.meta | 8 + .../RightGenericOpenVRControllerProfile.asset | 34 + ...tGenericOpenVRControllerProfile.asset.meta | 8 + .../Input/DataProviders/HandControllers.meta | 8 + .../CommonInteractionMappingProfiles.meta | 8 + ...eftHandGripInteractionMappingProfile.asset | 30 + ...ndGripInteractionMappingProfile.asset.meta | 8 + ...andGripPoseInteractionMappingProfile.asset | 30 + ...ipPoseInteractionMappingProfile.asset.meta | 8 + ...xFingerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + ...ftHandPointInteractionMappingProfile.asset | 30 + ...dPointInteractionMappingProfile.asset.meta | 8 + ...tHandSelectInteractionMappingProfile.asset | 30 + ...SelectInteractionMappingProfile.asset.meta | 8 + ...PointerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + ...ghtHandGripInteractionMappingProfile.asset | 30 + ...ndGripInteractionMappingProfile.asset.meta | 8 + ...andGripPoseInteractionMappingProfile.asset | 30 + ...ipPoseInteractionMappingProfile.asset.meta | 8 + ...xFingerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + ...htHandPointInteractionMappingProfile.asset | 30 + ...dPointInteractionMappingProfile.asset.meta | 8 + ...tHandSelectInteractionMappingProfile.asset | 30 + ...SelectInteractionMappingProfile.asset.meta | 8 + ...PointerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + .../LeftHandVisualizationProfile.asset | 28 + .../LeftHandVisualizationProfile.asset.meta | 8 + ...eftMixedRealityHandControllerProfile.asset | 27 + ...xedRealityHandControllerProfile.asset.meta | 8 + .../HandControllers/RecordedPoses.meta | 8 + .../RecordedPoses/FlatHandPose.asset | 28 + .../RecordedPoses/FlatHandPose.asset.meta | 8 + .../RecordedPoses/FlatHandPoseData.json | 420 +++ .../RecordedPoses/FlatHandPoseData.json.meta | 7 + .../RecordedPoses/GrabHandPose.asset | 28 + .../RecordedPoses/GrabHandPose.asset.meta | 8 + .../RecordedPoses/GrabHandPoseData.json | 420 +++ .../RecordedPoses/GrabHandPoseData.json.meta | 7 + .../RecordedPoses/OpenHandPose.asset | 28 + .../RecordedPoses/OpenHandPose.asset.meta | 8 + .../RecordedPoses/OpenHandPoseData.json | 420 +++ .../RecordedPoses/OpenHandPoseData.json.meta | 7 + .../RecordedPoses/PinchHandPose.asset | 28 + .../RecordedPoses/PinchHandPose.asset.meta | 8 + .../RecordedPoses/PinchHandPoseData.json | 420 +++ .../RecordedPoses/PinchHandPoseData.json.meta | 7 + .../PinchSteadyWristHandPose.asset | 28 + .../PinchSteadyWristHandPose.asset.meta | 8 + .../PinchSteadyWristHandPoseData.json | 420 +++ .../PinchSteadyWristHandPoseData.json.meta | 7 + .../RecordedPoses/PokeHandPose.asset | 28 + .../RecordedPoses/PokeHandPose.asset.meta | 8 + .../RecordedPoses/PokeHandPoseData.json | 420 +++ .../RecordedPoses/PokeHandPoseData.json.meta | 7 + .../RecordedPoses/ThumbsUpHandPose.asset | 28 + .../RecordedPoses/ThumbsUpHandPose.asset.meta | 8 + .../RecordedPoses/ThumbsUpHandPoseData.json | 420 +++ .../ThumbsUpHandPoseData.json.meta | 7 + .../RecordedPoses/VictoryHandPose.asset | 28 + .../RecordedPoses/VictoryHandPose.asset.meta | 8 + .../RecordedPoses/VictoryHandPoseData.json | 420 +++ .../VictoryHandPoseData.json.meta | 7 + .../RightHandVisulaizationProfile.asset | 28 + .../RightHandVisulaizationProfile.asset.meta | 8 + ...ghtMixedRealityHandControllerProfile.asset | 27 + ...xedRealityHandControllerProfile.asset.meta | 8 + .../HandControllers/Simulated.meta | 8 + .../CommonInteractionMappingProfiles.meta | 8 + .../MoveAway(Depth)Profile.asset | 30 + .../MoveAway(Depth)Profile.asset.meta | 8 + .../MoveCloser(Depth)Profile.asset | 30 + .../MoveCloser(Depth)Profile.asset.meta | 8 + .../PitchClockwiseProfile.asset | 30 + .../PitchClockwiseProfile.asset.meta | 8 + .../PitchCounterClockwiseProfile.asset | 30 + .../PitchCounterClockwiseProfile.asset.meta | 8 + .../RollClockwiseProfile.asset | 30 + .../RollClockwiseProfile.asset.meta | 8 + .../RollCounterClockwiseProfile.asset | 30 + .../RollCounterClockwiseProfile.asset.meta | 8 + .../YawClockwiseProfile.asset | 30 + .../YawClockwiseProfile.asset.meta | 8 + .../YawCounterClockwiseProfile.asset | 30 + .../YawCounterClockwiseProfile.asset.meta | 8 + ...tedMixedRealityHandControllerProfile.asset | 35 + ...xedRealityHandControllerProfile.asset.meta | 8 + ...tedMixedRealityHandControllerProfile.asset | 35 + ...xedRealityHandControllerProfile.asset.meta | 8 + ...tedHandControllerDataProviderProfile.asset | 35 + ...ndControllerDataProviderProfile.asset.meta | 8 + .../Input/DataProviders/MouseController.meta | 8 + .../LeftMouseButtonProfile.asset | 30 + .../LeftMouseButtonProfile.asset.meta | 8 + .../MouseController/MouseButton2Profile.asset | 30 + .../MouseButton2Profile.asset.meta | 8 + .../MouseController/MouseButton3Profile.asset | 30 + .../MouseButton3Profile.asset.meta | 8 + .../MouseController/MouseButton4Profile.asset | 30 + .../MouseButton4Profile.asset.meta | 8 + .../MouseController/MouseButton5Profile.asset | 30 + .../MouseButton5Profile.asset.meta | 8 + .../MouseController/MouseButton6Profile.asset | 30 + .../MouseButton6Profile.asset.meta | 8 + .../MouseControllerProfile.asset | 30 + .../MouseControllerProfile.asset.meta | 8 + .../MouseDeltaInvertAxisProcessor.asset | 16 + .../MouseDeltaInvertAxisProcessor.asset.meta | 8 + .../MouseDeltaPositionProfile.asset | 31 + .../MouseDeltaPositionProfile.asset.meta | 8 + .../MouseController/MousePointerProfile.asset | 23 + .../MousePointerProfile.asset.meta | 8 + .../MouseScrollInvertAxisProcessor.asset | 16 + .../MouseScrollInvertAxisProcessor.asset.meta | 8 + .../MouseScrollPositionProfile.asset | 31 + .../MouseScrollPositionProfile.asset.meta | 8 + .../RightMouseButtonProfile.asset | 30 + .../RightMouseButtonProfile.asset.meta | 8 + .../SpatialMousePositionProfile.asset | 31 + .../SpatialMousePositionProfile.asset.meta | 8 + .../MouseControllerDataProviderProfile.asset | 17 + ...seControllerDataProviderProfile.asset.meta | 8 + .../DataProviders/OculusGoController.meta | 8 + .../OculusGoController/BackProfile.asset | 30 + .../OculusGoController/BackProfile.asset.meta | 8 + .../OculusGoOpenVRControllerProfile.asset | 28 + ...OculusGoOpenVRControllerProfile.asset.meta | 8 + .../PrimaryTouchpadAxisProfile.asset | 30 + .../PrimaryTouchpadAxisProfile.asset.meta | 8 + .../PrimaryTouchpadClickProfile.asset | 30 + .../PrimaryTouchpadClickProfile.asset.meta | 8 + .../PrimaryTouchpadTouchProfile.asset | 30 + .../PrimaryTouchpadTouchProfile.asset.meta | 8 + .../SpatialPointerProfile.asset | 32 + .../SpatialPointerProfile.asset.meta | 8 + .../TriggerPositionProfile.asset | 30 + .../TriggerPositionProfile.asset.meta | 8 + .../TriggerPressProfile.asset | 30 + .../TriggerPressProfile.asset.meta | 8 + .../TriggerTouchProfile.asset | 30 + .../TriggerTouchProfile.asset.meta | 8 + .../DataProviders/OculusRemoteController.meta | 8 + .../Button.OneProfile.asset | 30 + .../Button.OneProfile.asset.meta | 8 + .../Button.TwoProfile.asset | 30 + .../Button.TwoProfile.asset.meta | 8 + .../D-PadPositionProfile.asset | 30 + .../D-PadPositionProfile.asset.meta | 8 + .../OculusRemoteOpenVRControllerProfile.asset | 23 + ...usRemoteOpenVRControllerProfile.asset.meta | 8 + .../DataProviders/OculusTouchController.meta | 8 + .../OculusTouchController/Left.meta | 8 + ...xis1D.PrimaryHandTriggerPressProfile.asset | 30 + ....PrimaryHandTriggerPressProfile.asset.meta | 8 + .../Axis1D.PrimaryHandTriggerProfile.asset | 30 + ...xis1D.PrimaryHandTriggerProfile.asset.meta | 8 + ....PrimaryIndexTriggerNearTouchProfile.asset | 30 + ...aryIndexTriggerNearTouchProfile.asset.meta | 8 + ...is1D.PrimaryIndexTriggerPressProfile.asset | 30 + ...PrimaryIndexTriggerPressProfile.asset.meta | 8 + .../Axis1D.PrimaryIndexTriggerProfile.asset | 30 + ...is1D.PrimaryIndexTriggerProfile.asset.meta | 8 + ...is1D.PrimaryIndexTriggerTouchProfile.asset | 30 + ...PrimaryIndexTriggerTouchProfile.asset.meta | 8 + .../Left/Axis2D.PrimaryThumbRestProfile.asset | 30 + .../Axis2D.PrimaryThumbRestProfile.asset.meta | 8 + .../Axis2D.PrimaryThumbstickProfile.asset | 30 + ...Axis2D.PrimaryThumbstickProfile.asset.meta | 8 + .../Left/Button.FourPressProfile.asset | 30 + .../Left/Button.FourPressProfile.asset.meta | 8 + .../Left/Button.FourTouchProfile.asset | 30 + .../Left/Button.FourTouchProfile.asset.meta | 8 + ...on.PrimaryThumbstickNearTouchProfile.asset | 30 + ...imaryThumbstickNearTouchProfile.asset.meta | 8 + ...Button.PrimaryThumbstickPressProfile.asset | 30 + ...n.PrimaryThumbstickPressProfile.asset.meta | 8 + ...Button.PrimaryThumbstickTouchProfile.asset | 30 + ...n.PrimaryThumbstickTouchProfile.asset.meta | 8 + .../Left/Button.StartPressProfile.asset | 30 + .../Left/Button.StartPressProfile.asset.meta | 8 + .../Left/Button.ThreePressProfile.asset | 30 + .../Left/Button.ThreePressProfile.asset.meta | 8 + .../Left/Button.ThreeTouchProfile.asset | 30 + .../Left/Button.ThreeTouchProfile.asset.meta | 8 + ...nVRGripPoseInteractionMappingProfile.asset | 30 + ...ipPoseInteractionMappingProfile.asset.meta | 8 + .../Left/SpatialPointerProfile.asset | 32 + .../Left/SpatialPointerProfile.asset.meta | 8 + ...uch.PrimaryThumbRestNearTouchProfile.asset | 30 + ...rimaryThumbRestNearTouchProfile.asset.meta | 8 + .../Touch.PrimaryThumbRestTouchProfile.asset | 30 + ...ch.PrimaryThumbRestTouchProfile.asset.meta | 8 + ...ftOculusTouchOpenVRControllerProfile.asset | 40 + ...lusTouchOpenVRControllerProfile.asset.meta | 8 + .../OculusTouchController/Right.meta | 8 + ...s1D.SecondaryHandTriggerPressProfile.asset | 30 + ...econdaryHandTriggerPressProfile.asset.meta | 8 + .../Axis1D.SecondaryHandTriggerProfile.asset | 30 + ...s1D.SecondaryHandTriggerProfile.asset.meta | 8 + ...econdaryIndexTriggerNearTouchProfile.asset | 30 + ...aryIndexTriggerNearTouchProfile.asset.meta | 8 + ...1D.SecondaryIndexTriggerPressProfile.asset | 30 + ...condaryIndexTriggerPressProfile.asset.meta | 8 + .../Axis1D.SecondaryIndexTriggerProfile.asset | 30 + ...1D.SecondaryIndexTriggerProfile.asset.meta | 8 + ...1D.SecondaryIndexTriggerTouchProfile.asset | 30 + ...condaryIndexTriggerTouchProfile.asset.meta | 8 + .../Axis2D.SecondaryThumbRestProfile.asset | 30 + ...xis2D.SecondaryThumbRestProfile.asset.meta | 8 + .../Axis2D.SecondaryThumbstickProfile.asset | 30 + ...is2D.SecondaryThumbstickProfile.asset.meta | 8 + .../Right/Button.OnePressProfile.asset | 30 + .../Right/Button.OnePressProfile.asset.meta | 8 + .../Right/Button.OneTouchProfile.asset | 30 + .../Right/Button.OneTouchProfile.asset.meta | 8 + ....SecondaryThumbstickNearTouchProfile.asset | 30 + ...ndaryThumbstickNearTouchProfile.asset.meta | 8 + ...tton.SecondaryThumbstickPressProfile.asset | 30 + ...SecondaryThumbstickPressProfile.asset.meta | 8 + ...tton.SecondaryThumbstickTouchProfile.asset | 30 + ...SecondaryThumbstickTouchProfile.asset.meta | 8 + .../Right/Button.TwoPressProfile.asset | 30 + .../Right/Button.TwoPressProfile.asset.meta | 8 + .../Right/Button.TwoTouchProfile.asset | 30 + .../Right/Button.TwoTouchProfile.asset.meta | 8 + ...nVRGripPoseInteractionMappingProfile.asset | 30 + ...ipPoseInteractionMappingProfile.asset.meta | 8 + .../Right/SpatialPointerProfile.asset | 32 + .../Right/SpatialPointerProfile.asset.meta | 8 + ...h.SecondaryThumbRestNearTouchProfile.asset | 30 + ...ondaryThumbRestNearTouchProfile.asset.meta | 8 + ...Touch.SecondaryThumbRestTouchProfile.asset | 30 + ....SecondaryThumbRestTouchProfile.asset.meta | 8 + ...htOculusTouchOpenVRControllerProfile.asset | 39 + ...lusTouchOpenVRControllerProfile.asset.meta | 8 + .../OpenVRControllerDataProviderProfile.asset | 26 + ...VRControllerDataProviderProfile.asset.meta | 8 + .../TouchControllerDataProviderProfile.asset | 17 + ...chControllerDataProviderProfile.asset.meta | 8 + .../UnityInputControllerDataProfile.asset | 17 + ...UnityInputControllerDataProfile.asset.meta | 8 + .../DataProviders/UnityTouchController.meta | 8 + .../TouchDragProfile.asset | 30 + .../TouchDragProfile.asset.meta | 8 + .../TouchHoldProfile.asset | 30 + .../TouchHoldProfile.asset.meta | 8 + .../TouchPointerDeltaProfile.asset | 30 + .../TouchPointerDeltaProfile.asset.meta | 8 + .../TouchPointerPositionProfile.asset | 31 + .../TouchPointerPositionProfile.asset.meta | 8 + .../TouchPressProfile.asset | 30 + .../TouchPressProfile.asset.meta | 8 + .../UnityTouchControllerProfile.asset | 25 + .../UnityTouchControllerProfile.asset.meta | 8 + .../DataProviders/ViveWandController.meta | 8 + .../ViveWandController/Left.meta | 8 + .../Left/GripPressProfile.asset | 30 + .../Left/GripPressProfile.asset.meta | 8 + .../Left/MenuButtonProfile.asset | 30 + .../Left/MenuButtonProfile.asset.meta | 8 + .../Left/SpatialPointerProfile.asset | 32 + .../Left/SpatialPointerProfile.asset.meta | 8 + .../Left/TrackpadPositionProfile.asset | 30 + .../Left/TrackpadPositionProfile.asset.meta | 8 + .../Left/TrackpadPressProfile.asset | 30 + .../Left/TrackpadPressProfile.asset.meta | 8 + .../Left/TrackpadTouchProfile.asset | 30 + .../Left/TrackpadTouchProfile.asset.meta | 8 + .../Left/TriggerPositionProfile.asset | 30 + .../Left/TriggerPositionProfile.asset.meta | 8 + .../Left/TriggerPressProfile.asset | 30 + .../Left/TriggerPressProfile.asset.meta | 8 + .../Left/TriggerTouchProfile.asset | 30 + .../Left/TriggerTouchProfile.asset.meta | 8 + .../LeftViveWandOpenVRControllerProfile.asset | 30 + ...ViveWandOpenVRControllerProfile.asset.meta | 8 + .../ViveWandController/Right.meta | 8 + .../Right/GripPressProfile.asset | 30 + .../Right/GripPressProfile.asset.meta | 8 + .../Right/MenuButtonProfile.asset | 30 + .../Right/MenuButtonProfile.asset.meta | 8 + .../Right/SpatialPointerProfile.asset | 32 + .../Right/SpatialPointerProfile.asset.meta | 8 + .../Right/TrackpadPositionProfile.asset | 30 + .../Right/TrackpadPositionProfile.asset.meta | 8 + .../Right/TrackpadPressProfile.asset | 30 + .../Right/TrackpadPressProfile.asset.meta | 8 + .../Right/TrackpadTouchProfile.asset | 30 + .../Right/TrackpadTouchProfile.asset.meta | 8 + .../Right/TriggerPositionProfile.asset | 30 + .../Right/TriggerPositionProfile.asset.meta | 8 + .../Right/TriggerPressProfile.asset | 30 + .../Right/TriggerPressProfile.asset.meta | 8 + .../Right/TriggerTouchProfile.asset | 30 + .../Right/TriggerTouchProfile.asset.meta | 8 + ...RightViveWandOpenVRControllerProfile.asset | 30 + ...ViveWandOpenVRControllerProfile.asset.meta | 8 + .../WindowsMixedRealityController.meta | 8 + .../WindowsMixedRealityController/Left.meta | 8 + .../Left/GripPressProfile.asset | 30 + .../Left/GripPressProfile.asset.meta | 8 + .../Left/InvertDualAxisProcessor.asset | 16 + .../Left/InvertDualAxisProcessor.asset.meta | 8 + .../Left/MenuPressProfile.asset | 30 + .../Left/MenuPressProfile.asset.meta | 8 + .../Left/SpatialGripProfile.asset | 30 + .../Left/SpatialGripProfile.asset.meta | 8 + .../Left/SpatialPointerProfile.asset | 32 + .../Left/SpatialPointerProfile.asset.meta | 8 + .../Left/ThumbstickClickProfile.asset | 30 + .../Left/ThumbstickClickProfile.asset.meta | 8 + .../Left/ThumbstickPositionProfile.asset | 31 + .../Left/ThumbstickPositionProfile.asset.meta | 8 + .../Left/TouchpadPositionProfile.asset | 30 + .../Left/TouchpadPositionProfile.asset.meta | 8 + .../Left/TouchpadPressProfile.asset | 30 + .../Left/TouchpadPressProfile.asset.meta | 8 + .../Left/TouchpadTouchProfile.asset | 30 + .../Left/TouchpadTouchProfile.asset.meta | 8 + .../Left/TriggerPositionProfile.asset | 30 + .../Left/TriggerPositionProfile.asset.meta | 8 + .../Left/TriggerPress(Select)Profile.asset | 30 + .../TriggerPress(Select)Profile.asset.meta | 8 + .../Left/TriggerTouchProfile.asset | 30 + .../Left/TriggerTouchProfile.asset.meta | 8 + .../Left/TriggerTouchedProfile.asset | 30 + .../Left/TriggerTouchedProfile.asset.meta | 8 + .../LeftWMROpenVRControllerProfile.asset | 33 + .../LeftWMROpenVRControllerProfile.asset.meta | 8 + .../WindowsMixedRealityController/Right.meta | 8 + .../Right/GripPressProfile.asset | 30 + .../Right/GripPressProfile.asset.meta | 8 + .../Right/InvertDualAxisProcessor.asset | 16 + .../Right/InvertDualAxisProcessor.asset.meta | 8 + .../Right/MenuPressProfile.asset | 30 + .../Right/MenuPressProfile.asset.meta | 8 + .../Right/SpatialGripProfile.asset | 30 + .../Right/SpatialGripProfile.asset.meta | 8 + .../Right/SpatialPointerProfile.asset | 32 + .../Right/SpatialPointerProfile.asset.meta | 8 + .../Right/ThumbstickClickProfile.asset | 30 + .../Right/ThumbstickClickProfile.asset.meta | 8 + .../Right/ThumbstickPositionProfile.asset | 31 + .../ThumbstickPositionProfile.asset.meta | 8 + .../Right/TouchpadPositionProfile.asset | 30 + .../Right/TouchpadPositionProfile.asset.meta | 8 + .../Right/TouchpadPressProfile.asset | 30 + .../Right/TouchpadPressProfile.asset.meta | 8 + .../Right/TouchpadTouchProfile.asset | 30 + .../Right/TouchpadTouchProfile.asset.meta | 8 + .../Right/TriggerPositionProfile.asset | 30 + .../Right/TriggerPositionProfile.asset.meta | 8 + .../Right/TriggerPress(Select)Profile.asset | 30 + .../TriggerPress(Select)Profile.asset.meta | 8 + .../Right/TriggerTouchProfile.asset | 30 + .../Right/TriggerTouchProfile.asset.meta | 8 + .../Right/TriggerTouchedProfile.asset | 30 + .../Right/TriggerTouchedProfile.asset.meta | 8 + .../RightWMROpenVRControllerProfile.asset | 33 + ...RightWMROpenVRControllerProfile.asset.meta | 8 + .../Input/DataProviders/XboxController.meta | 8 + .../XboxController/AProfile.asset | 30 + .../XboxController/AProfile.asset.meta | 8 + .../XboxController/BProfile.asset | 30 + .../XboxController/BProfile.asset.meta | 8 + .../XboxController/D-PadProfile.asset | 31 + .../XboxController/D-PadProfile.asset.meta | 8 + .../InvertDualAxisProcessor.asset | 16 + .../InvertDualAxisProcessor.asset.meta | 8 + .../XboxController/LeftBumperProfile.asset | 30 + .../LeftBumperProfile.asset.meta | 8 + .../LeftThumbstickClickProfile.asset | 30 + .../LeftThumbstickClickProfile.asset.meta | 8 + .../LeftThumbstickProfile.asset | 31 + .../LeftThumbstickProfile.asset.meta | 8 + .../XboxController/LeftTriggerProfile.asset | 30 + .../LeftTriggerProfile.asset.meta | 8 + .../XboxController/MenuProfile.asset | 30 + .../XboxController/MenuProfile.asset.meta | 8 + .../XboxController/RightBumperProfile.asset | 30 + .../RightBumperProfile.asset.meta | 8 + .../RightThumbstickClickProfile.asset | 30 + .../RightThumbstickClickProfile.asset.meta | 8 + .../RightThumbstickProfile.asset | 31 + .../RightThumbstickProfile.asset.meta | 8 + .../XboxController/RightTriggerProfile.asset | 30 + .../RightTriggerProfile.asset.meta | 8 + .../XboxController/SharedTriggerProfile.asset | 30 + .../SharedTriggerProfile.asset.meta | 8 + .../XboxController/ViewProfile.asset | 30 + .../XboxController/ViewProfile.asset.meta | 8 + .../XboxController/XProfile.asset | 30 + .../XboxController/XProfile.asset.meta | 8 + .../XboxControllerProfile.asset | 36 + .../XboxControllerProfile.asset.meta | 8 + .../XboxController/YProfile.asset | 30 + .../XboxController/YProfile.asset.meta | 8 + .../Input/MixedRealityGesturesProfile.asset | 50 + .../MixedRealityGesturesProfile.asset.meta | 8 + .../MixedRealityInputActionsProfile.asset | 79 + ...MixedRealityInputActionsProfile.asset.meta | 8 + .../MixedRealityInputSystemProfile.asset | 113 + .../MixedRealityInputSystemProfile.asset.meta | 8 + .../MixedRealitySpeechCommandsProfile.asset | 52 + ...xedRealitySpeechCommandsProfile.asset.meta | 8 + .../SDK/Profiles/Input/Pointers.meta | 8 + .../Pointers/ControllerPointerProfile.asset | 23 + .../ControllerPointerProfile.asset.meta | 8 + .../HandControllerNearPointerProfile.asset | 23 + ...andControllerNearPointerProfile.asset.meta | 8 + .../HandControllerSpatialPointerProfile.asset | 23 + ...ControllerSpatialPointerProfile.asset.meta | 8 + .../Pointers/TeleportPointerProfile.asset | 23 + .../TeleportPointerProfile.asset.meta | 8 + .../Input/Pointers/TouchPointerProfile.asset | 23 + .../Pointers/TouchPointerProfile.asset.meta | 8 + .../MixedRealityBoundarySystemProfile.asset | 25 + ...xedRealityBoundarySystemProfile.asset.meta | 8 + ...ityRegisteredServiceProvidersProfile.asset | 15 + ...gisteredServiceProvidersProfile.asset.meta | 8 + .../MixedRealityToolkitRootProfile.asset | 65 + .../MixedRealityToolkitRootProfile.asset.meta | 8 + .../SDK/Profiles/Networking.meta | 8 + .../MixedRealityNetworkingProfile.asset | 15 + .../MixedRealityNetworkingProfile.asset.meta | 8 + ...dRealityWebRtcNetworkProviderProfile.asset | 14 + ...ityWebRtcNetworkProviderProfile.asset.meta | 8 + .../SDK/Profiles/SpatialAwareness.meta | 8 + ...RealitySpatialAwarenessSystemProfile.asset | 19 + ...tySpatialAwarenessSystemProfile.asset.meta | 8 + ...xedRealitySpatialMeshObserverProfile.asset | 27 + ...alitySpatialMeshObserverProfile.asset.meta | 8 + .../XRTK.Generated/SDK/Profiles/Teleport.meta | 8 + .../MixedRealityTeleportSystemProfile.asset | 30 + ...xedRealityTeleportSystemProfile.asset.meta | 8 + ...eleportValidationDataProviderProfile.asset | 23 + ...rtValidationDataProviderProfile.asset.meta | 8 + .../XRTK.Generated/SymbolicLinkSettings.asset | 30 - .../XRTK.Generated/WindowsMixedReality.meta | 8 + .../WindowsMixedReality/Profiles.meta | 8 + .../Profiles/CameraSystem.meta | 8 + ...owsMixedRealityCameraProviderProfile.asset | 28 + ...xedRealityCameraProviderProfile.asset.meta | 8 + .../Profiles/Contollers.meta | 8 + .../Profiles/Contollers/HandController.meta | 8 + .../Contollers/HandController/Left.meta | 8 + .../Left/LeftWMRHandControllerProfile.asset | 27 + .../LeftWMRHandControllerProfile.asset.meta | 8 + ...WMRHandGripInteractionMappingProfile.asset | 30 + ...ndGripInteractionMappingProfile.asset.meta | 8 + ...andGripPoseInteractionMappingProfile.asset | 30 + ...ipPoseInteractionMappingProfile.asset.meta | 8 + ...xFingerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + ...MRHandPointInteractionMappingProfile.asset | 30 + ...dPointInteractionMappingProfile.asset.meta | 8 + ...RHandSelectInteractionMappingProfile.asset | 30 + ...SelectInteractionMappingProfile.asset.meta | 8 + ...PointerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + .../LeftWMRHandVisualizationProfile.asset | 28 + ...LeftWMRHandVisualizationProfile.asset.meta | 8 + .../Contollers/HandController/Right.meta | 8 + .../Right/RightWMRHandControllerProfile.asset | 27 + .../RightWMRHandControllerProfile.asset.meta | 8 + ...WMRHandGripInteractionMappingProfile.asset | 30 + ...ndGripInteractionMappingProfile.asset.meta | 8 + ...andGripPoseInteractionMappingProfile.asset | 30 + ...ipPoseInteractionMappingProfile.asset.meta | 8 + ...xFingerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + ...MRHandPointInteractionMappingProfile.asset | 30 + ...dPointInteractionMappingProfile.asset.meta | 8 + ...RHandSelectInteractionMappingProfile.asset | 30 + ...SelectInteractionMappingProfile.asset.meta | 8 + ...PointerPoseInteractionMappingProfile.asset | 31 + ...erPoseInteractionMappingProfile.asset.meta | 8 + ...ghtWMRealityHandVisulaizationProfile.asset | 28 + ...RealityHandVisulaizationProfile.asset.meta | 8 + ...ityHandControllerDataProviderProfile.asset | 24 + ...ndControllerDataProviderProfile.asset.meta | 8 + .../Contollers/HoloLensController.meta | 8 + .../HoloLensController/AirTapProfile.asset | 30 + .../AirTapProfile.asset.meta | 8 + .../SpatialGripProfile.asset | 30 + .../SpatialGripProfile.asset.meta | 8 + .../SpatialPointerProfile.asset | 30 + .../SpatialPointerProfile.asset.meta | 8 + .../LeftHoloLensControllerProfile.asset | 23 + .../LeftHoloLensControllerProfile.asset.meta | 8 + .../RightHoloLensControllerProfile.asset | 23 + .../RightHoloLensControllerProfile.asset.meta | 8 + .../WindowsMixedRealityController.meta | 8 + .../WindowsMixedRealityController/Left.meta | 8 + .../Left/GripPressProfile.asset | 30 + .../Left/GripPressProfile.asset.meta | 8 + .../Left/InvertDualAxisProcessor.asset | 16 + .../Left/InvertDualAxisProcessor.asset.meta | 8 + .../Left/MenuPressProfile.asset | 30 + .../Left/MenuPressProfile.asset.meta | 8 + .../Left/SpatialGripProfile.asset | 30 + .../Left/SpatialGripProfile.asset.meta | 8 + .../Left/SpatialPointerProfile.asset | 32 + .../Left/SpatialPointerProfile.asset.meta | 8 + .../Left/ThumbstickClickProfile.asset | 30 + .../Left/ThumbstickClickProfile.asset.meta | 8 + .../Left/ThumbstickPositionProfile.asset | 31 + .../Left/ThumbstickPositionProfile.asset.meta | 8 + .../Left/TouchpadPositionProfile.asset | 30 + .../Left/TouchpadPositionProfile.asset.meta | 8 + .../Left/TouchpadPressProfile.asset | 30 + .../Left/TouchpadPressProfile.asset.meta | 8 + .../Left/TouchpadTouchProfile.asset | 30 + .../Left/TouchpadTouchProfile.asset.meta | 8 + .../Left/TriggerPositionProfile.asset | 30 + .../Left/TriggerPositionProfile.asset.meta | 8 + .../Left/TriggerPress(Select)Profile.asset | 30 + .../TriggerPress(Select)Profile.asset.meta | 8 + .../Left/TriggerTouchProfile.asset | 30 + .../Left/TriggerTouchProfile.asset.meta | 8 + .../Left/TriggerTouchedProfile.asset | 30 + .../Left/TriggerTouchedProfile.asset.meta | 8 + .../LeftVisulizationProfile.asset | 28 + .../LeftVisulizationProfile.asset.meta | 8 + .../LeftWMRControllerProfile.asset | 33 + .../LeftWMRControllerProfile.asset.meta | 8 + .../WindowsMixedRealityController/Right.meta | 8 + .../Right/GripPressProfile.asset | 30 + .../Right/GripPressProfile.asset.meta | 8 + .../Right/InvertDualAxisProcessor.asset | 16 + .../Right/InvertDualAxisProcessor.asset.meta | 8 + .../Right/MenuPressProfile.asset | 30 + .../Right/MenuPressProfile.asset.meta | 8 + .../Right/SpatialGripProfile.asset | 30 + .../Right/SpatialGripProfile.asset.meta | 8 + .../Right/SpatialPointerProfile.asset | 32 + .../Right/SpatialPointerProfile.asset.meta | 8 + .../Right/ThumbstickClickProfile.asset | 30 + .../Right/ThumbstickClickProfile.asset.meta | 8 + .../Right/ThumbstickPositionProfile.asset | 31 + .../ThumbstickPositionProfile.asset.meta | 8 + .../Right/TouchpadPositionProfile.asset | 30 + .../Right/TouchpadPositionProfile.asset.meta | 8 + .../Right/TouchpadPressProfile.asset | 30 + .../Right/TouchpadPressProfile.asset.meta | 8 + .../Right/TouchpadTouchProfile.asset | 30 + .../Right/TouchpadTouchProfile.asset.meta | 8 + .../Right/TriggerPositionProfile.asset | 30 + .../Right/TriggerPositionProfile.asset.meta | 8 + .../Right/TriggerPress(Select)Profile.asset | 30 + .../TriggerPress(Select)Profile.asset.meta | 8 + .../Right/TriggerTouchProfile.asset | 30 + .../Right/TriggerTouchProfile.asset.meta | 8 + .../Right/TriggerTouchedProfile.asset | 30 + .../Right/TriggerTouchedProfile.asset.meta | 8 + .../RightVisualizationProfile.asset | 28 + .../RightVisualizationProfile.asset.meta | 8 + .../RightWMRControllerProfile.asset | 33 + .../RightWMRControllerProfile.asset.meta | 8 + ...RealityControllerDataProviderProfile.asset | 25 + ...tyControllerDataProviderProfile.asset.meta | 8 + .../WindowsMixedReality/Profiles/Input.meta | 8 + .../Profiles/Input/Pointers.meta | 8 + .../WMRHandControllerNearPointerProfile.asset | 23 + ...andControllerNearPointerProfile.asset.meta | 8 + ...RHandControllerSpatialPointerProfile.asset | 23 + ...ControllerSpatialPointerProfile.asset.meta | 8 + ...RealityPlatformConfigurationsProfile.asset | 64 + ...tyPlatformConfigurationsProfile.asset.meta | 8 + .../ProjectSettings/QualitySettings.asset | 7 + 964 files changed, 30031 insertions(+), 39 deletions(-) create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/CameraSystem.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/CameraSystem/LuminCameraDataProvider.asset rename XRTK.Examples/Assets/XRTK.Generated/{SymbolicLinkSettings.asset.meta => Lumin/Profiles/CameraSystem/LuminCameraDataProvider.asset.meta} (79%) create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandIndexFingerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandIndexFingerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandPointInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandPointInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSelectInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSelectInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSpatialPointerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSpatialPointerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandVisualizationProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandVisualizationProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminMixedRealityHandControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminMixedRealityHandControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/LuminHandControllerDataProviderProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/LuminHandControllerDataProviderProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandIndexFingerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandIndexFingerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandPointInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandPointInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSelectInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSelectInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSpatialPointerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSpatialPointerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandVisulaizationProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandVisulaizationProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminMixedRealityHandControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminMixedRealityHandControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/BumperPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/BumperPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/HomePressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/HomePressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPress(Select)Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPress(Select)Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LeftLuminControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LeftLuminControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LuminControllerDataProviderProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LuminControllerDataProviderProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/BumperPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/BumperPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/HomePressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/HomePressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPress(Select)Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPress(Select)Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/RightLuminControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/RightLuminControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerNearPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerNearPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerSpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerSpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/LuminPlatformServiceConfigurationsProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/LuminPlatformServiceConfigurationsProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/CameraSystem.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/CameraSystem/OculusCameraDataProviderProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/CameraSystem/OculusCameraDataProviderProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandIndexFingerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandIndexFingerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandPointInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandPointInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSelectInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSelectInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSpatialPointerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSpatialPointerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandVisualizationProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandVisualizationProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusMixedRealityHandControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusMixedRealityHandControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/OculusHandControllerDataProviderProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/OculusHandControllerDataProviderProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandIndexFingerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandIndexFingerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandPointInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandPointInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSelectInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSelectInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSpatialPointerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSpatialPointerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandVisulaizationProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandVisulaizationProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusMixedRealityHandControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusMixedRealityHandControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusControllerDataProviderProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusControllerDataProviderProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.BackProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.BackProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadDownProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadDownProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadLeftProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadLeftProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadRightProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadRightProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadUpProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadUpProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.OneProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.OneProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.StartProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.StartProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.TwoProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.TwoProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/OculusRemoteControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/OculusRemoteControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.StartPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.StartPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreePressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreePressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreeTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreeTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/LeftOculusTouchGripPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/LeftOculusTouchGripPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerVisualizer.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerVisualizer.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OnePressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OnePressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OneTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OneTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/RightOculusTouchGripPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/RightOculusTouchGripPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerVisualizer.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerVisualizer.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerNearPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerNearPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerSpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerSpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/OculusPlatformServiceConfigurationsProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/OculusPlatformServiceConfigurationsProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/ConsoleLogEntry.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/ConsoleLogEntry.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/DefaultDiagnosticsWindow.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/DefaultDiagnosticsWindow.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/Frame.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/Frame.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/DefaultCursor.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/DefaultCursor.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/MouseCursor.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/MouseCursor.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/TeleportCursor.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/TeleportCursor.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultLeftHandControllerVisualizer.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultLeftHandControllerVisualizer.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultRightHandControllerVisualizer.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultRightHandControllerVisualizer.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandFingertip.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandFingertip.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJoint.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJoint.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJointGizmo.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJointGizmo.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Joints.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Joints.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Mesh.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Mesh.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandPalm.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandPalm.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Joints.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Joints.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Mesh.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Mesh.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/DefaultControllerPointer.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/DefaultControllerPointer.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerNearPointer.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerNearPointer.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerSpatialPointer.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerSpatialPointer.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/MousePointer.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/MousePointer.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/ParabolicPointer.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/ParabolicPointer.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/TouchPointer.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/TouchPointer.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Constrained Parabola Tooltip.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Constrained Parabola Tooltip.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Simple Line ToolTip.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Simple Line ToolTip.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Spline ToolTip.prefab create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Spline ToolTip.prefab.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraDataProviderProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraDataProviderProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraSystemProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraSystemProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Diagnostics.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Diagnostics/MixedRealityDiagnosticsSystemProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Diagnostics/MixedRealityDiagnosticsSystemProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/LeftControllerVisualizer.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/LeftControllerVisualizer.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/RightControllerVisualizer.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/RightControllerVisualizer.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/GripTriggerPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/GripTriggerPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/InvertDualAxisProcessor.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/InvertDualAxisProcessor.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialGripProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialGripProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPress(Select)Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPress(Select)Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId2Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId2Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId3Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId3Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/LeftGenericOpenVRControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/LeftGenericOpenVRControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/GripTriggerPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/GripTriggerPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/InvertDualAxisProcessor.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/InvertDualAxisProcessor.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialGripProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialGripProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPress(Select)Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPress(Select)Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId0Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId0Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId1Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId1Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/RightGenericOpenVRControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/RightGenericOpenVRControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandIndexFingerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandIndexFingerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandPointInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandPointInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSelectInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSelectInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSpatialPointerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSpatialPointerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandIndexFingerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandIndexFingerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandPointInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandPointInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSelectInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSelectInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSpatialPointerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSpatialPointerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftHandVisualizationProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftHandVisualizationProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftMixedRealityHandControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftMixedRealityHandControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPose.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPose.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPoseData.json create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPoseData.json.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPose.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPose.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPoseData.json create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPoseData.json.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPose.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPose.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPoseData.json create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPoseData.json.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPose.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPose.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPoseData.json create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPoseData.json.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPose.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPose.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPoseData.json create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPoseData.json.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPose.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPose.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPoseData.json create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPoseData.json.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPose.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPose.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPoseData.json create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPoseData.json.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPose.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPose.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPoseData.json create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPoseData.json.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightHandVisulaizationProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightHandVisulaizationProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightMixedRealityHandControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightMixedRealityHandControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveAway(Depth)Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveAway(Depth)Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveCloser(Depth)Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveCloser(Depth)Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchClockwiseProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchClockwiseProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchCounterClockwiseProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchCounterClockwiseProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollClockwiseProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollClockwiseProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollCounterClockwiseProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollCounterClockwiseProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawClockwiseProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawClockwiseProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawCounterClockwiseProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawCounterClockwiseProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/LeftSimulatedMixedRealityHandControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/LeftSimulatedMixedRealityHandControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/RightSimulatedMixedRealityHandControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/RightSimulatedMixedRealityHandControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/SimulatedHandControllerDataProviderProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/SimulatedHandControllerDataProviderProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/LeftMouseButtonProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/LeftMouseButtonProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton2Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton2Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton3Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton3Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton4Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton4Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton5Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton5Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton6Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton6Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaInvertAxisProcessor.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaInvertAxisProcessor.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MousePointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MousePointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollInvertAxisProcessor.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollInvertAxisProcessor.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/RightMouseButtonProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/RightMouseButtonProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/SpatialMousePositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/SpatialMousePositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseControllerDataProviderProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseControllerDataProviderProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/BackProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/BackProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/OculusGoOpenVRControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/OculusGoOpenVRControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadAxisProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadAxisProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadClickProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadClickProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.OneProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.OneProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.TwoProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.TwoProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/D-PadPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/D-PadPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/OculusRemoteOpenVRControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/OculusRemoteOpenVRControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.StartPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.StartPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreePressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreePressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreeTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreeTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/LeftOculusTouchOpenVRGripPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/LeftOculusTouchOpenVRGripPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/LeftOculusTouchOpenVRControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/LeftOculusTouchOpenVRControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OnePressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OnePressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OneTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OneTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/RightOculusTouchOpenVRGripPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/RightOculusTouchOpenVRGripPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/RightOculusTouchOpenVRControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/RightOculusTouchOpenVRControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OpenVRControllerDataProviderProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OpenVRControllerDataProviderProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/TouchControllerDataProviderProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/TouchControllerDataProviderProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityInputControllerDataProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityInputControllerDataProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchDragProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchDragProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchHoldProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchHoldProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerDeltaProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerDeltaProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/UnityTouchControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/UnityTouchControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/GripPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/GripPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/MenuButtonProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/MenuButtonProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/LeftViveWandOpenVRControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/LeftViveWandOpenVRControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/GripPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/GripPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/MenuButtonProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/MenuButtonProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/RightViveWandOpenVRControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/RightViveWandOpenVRControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/GripPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/GripPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/MenuPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/MenuPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialGripProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialGripProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/LeftWMROpenVRControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/LeftWMROpenVRControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/GripPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/GripPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/MenuPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/MenuPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialGripProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialGripProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/RightWMROpenVRControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/RightWMROpenVRControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/AProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/AProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/BProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/BProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/D-PadProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/D-PadProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/InvertDualAxisProcessor.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/InvertDualAxisProcessor.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftBumperProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftBumperProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickClickProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickClickProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftTriggerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftTriggerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/MenuProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/MenuProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightBumperProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightBumperProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickClickProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickClickProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightTriggerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightTriggerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/SharedTriggerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/SharedTriggerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/ViewProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/ViewProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XboxControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XboxControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/YProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/YProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityGesturesProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityGesturesProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputActionsProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputActionsProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputSystemProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputSystemProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealitySpeechCommandsProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealitySpeechCommandsProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/ControllerPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/ControllerPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerNearPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerNearPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerSpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerSpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TeleportPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TeleportPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TouchPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TouchPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityBoundarySystemProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityBoundarySystemProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityRegisteredServiceProvidersProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityRegisteredServiceProvidersProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityToolkitRootProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityToolkitRootProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityNetworkingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityNetworkingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityWebRtcNetworkProviderProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityWebRtcNetworkProviderProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialAwarenessSystemProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialAwarenessSystemProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialMeshObserverProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialMeshObserverProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportSystemProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportSystemProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportValidationDataProviderProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportValidationDataProviderProfile.asset.meta delete mode 100644 XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/CameraSystem.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/CameraSystem/WindowsMixedRealityCameraProviderProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/CameraSystem/WindowsMixedRealityCameraProviderProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandIndexFingerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandIndexFingerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandPointInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandPointInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSelectInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSelectInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSpatialPointerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSpatialPointerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandVisualizationProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandVisualizationProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandIndexFingerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandIndexFingerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandPointInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandPointInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSelectInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSelectInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSpatialPointerPoseInteractionMappingProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSpatialPointerPoseInteractionMappingProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRealityHandVisulaizationProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRealityHandVisulaizationProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/WindowsMixedRealityHandControllerDataProviderProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/WindowsMixedRealityHandControllerDataProviderProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/AirTapProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/AirTapProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialGripProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialGripProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/LeftHoloLensControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/LeftHoloLensControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/RightHoloLensControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/RightHoloLensControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/GripPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/GripPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/MenuPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/MenuPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialGripProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialGripProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftVisulizationProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftVisulizationProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftWMRControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftWMRControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/GripPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/GripPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/MenuPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/MenuPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialGripProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialGripProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPressProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPressProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPositionProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPositionProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightVisualizationProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightVisualizationProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightWMRControllerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightWMRControllerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityControllerDataProviderProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityControllerDataProviderProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerNearPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerNearPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerSpatialPointerProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerSpatialPointerProfile.asset.meta create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/WindowsMixedRealityPlatformConfigurationsProfile.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/WindowsMixedRealityPlatformConfigurationsProfile.asset.meta diff --git a/.gitignore b/.gitignore index fac57956..dbef813c 100644 --- a/.gitignore +++ b/.gitignore @@ -66,11 +66,3 @@ ThirdParty.meta --Version/ StreamingAssets/ StreamingAssets.meta -XRTK.Examples/Assets/XRTK.Generated/Lumin -XRTK.Examples/Assets/XRTK.Generated/Lumin.meta -XRTK.Examples/Assets/XRTK.Generated/Oculus -XRTK.Examples/Assets/XRTK.Generated/Oculus.meta -XRTK.Examples/Assets/XRTK.Generated/SDK -XRTK.Examples/Assets/XRTK.Generated/SDK.meta -XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality -XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality.meta diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin.meta new file mode 100644 index 00000000..65b6944b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 402c7b5d1defdbe40857e98ea564db23 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles.meta new file mode 100644 index 00000000..317c3671 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a724e8359acd4f41ace278228c3f88c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/CameraSystem.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/CameraSystem.meta new file mode 100644 index 00000000..a63abdc0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/CameraSystem.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c492d9be661a9da4798ad4366aef9f5f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/CameraSystem/LuminCameraDataProvider.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/CameraSystem/LuminCameraDataProvider.asset new file mode 100644 index 00000000..414cf76a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/CameraSystem/LuminCameraDataProvider.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 00d813fd5a164e19a160f322b2926006, type: 3} + m_Name: LuminCameraDataProvider + m_EditorClassIdentifier: + isCameraPersistent: 1 + nearClipPlaneOpaqueDisplay: 0.1 + cameraClearFlagsOpaqueDisplay: 1 + backgroundColorOpaqueDisplay: {r: 0, g: 0, b: 0, a: 1} + opaqueQualityLevel: 0 + nearClipPlaneTransparentDisplay: 0.2 + cameraClearFlagsTransparentDisplay: 2 + backgroundColorTransparentDisplay: {r: 0, g: 0, b: 0, a: 0} + transparentQualityLevel: 0 + cameraRigType: + reference: 8e0ee4fc-c8a5-4b10-9fca-ee55b6d421ff + defaultHeadHeight: 0 + bodyAdjustmentAngle: 60 + bodyAdjustmentSpeed: 1 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/CameraSystem/LuminCameraDataProvider.asset.meta similarity index 79% rename from XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset.meta rename to XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/CameraSystem/LuminCameraDataProvider.asset.meta index 63ecf338..68b16ab7 100644 --- a/XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset.meta +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/CameraSystem/LuminCameraDataProvider.asset.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 7c5ca51bacd119640922f64c6f4240ac +guid: 10c5453922d4a744595e0415ef57dda4 NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers.meta new file mode 100644 index 00000000..1602ebf3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 53fb1d3728d7d4d4489b6877233fc3e3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController.meta new file mode 100644 index 00000000..64f010b8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c597f6e633824e248a0c608093eb2e7b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left.meta new file mode 100644 index 00000000..68f07bab --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e6f17ef1e186a2d44a740e6dbfd941f6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripInteractionMappingProfile.asset new file mode 100644 index 00000000..8ab8b23c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftLuminHandGripInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 16 + description: Grip + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..b8ee2e58 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7071ed7a23f6b0b4ebc58478a20c73a1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..8689845f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripPoseInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftLuminHandGripPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Pose + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..1e18d052 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandGripPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 75c20d9944697174280d635af4953def +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandIndexFingerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandIndexFingerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..13d596d2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandIndexFingerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftLuminHandIndexFingerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Index Finger Pose + stateChangeType: 0 + axisType: 7 + inputType: 33 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 15 + description: Index Finger Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 30046256eff05dc4e8285bd773d52699, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandIndexFingerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandIndexFingerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..0528caa9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandIndexFingerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f6c6766b14003374bb38c0e0fabb1125 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandPointInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandPointInteractionMappingProfile.asset new file mode 100644 index 00000000..5782f42b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandPointInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftLuminHandPointInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Point + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandPointInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandPointInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..0462c6ee --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandPointInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8bb52bd1228582d44a127f853a6bc25b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSelectInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSelectInteractionMappingProfile.asset new file mode 100644 index 00000000..269481d4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSelectInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftLuminHandSelectInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Select + stateChangeType: 0 + axisType: 2 + inputType: 25 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSelectInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSelectInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..76ef8704 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSelectInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a67d0216b0e4e0b429e8b6797010bca8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSpatialPointerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSpatialPointerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..ea97e232 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSpatialPointerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftLuminHandSpatialPointerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer Pose + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 4113745e2b890c548aa08ba7f44a3e58, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSpatialPointerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSpatialPointerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..d7419bbb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandSpatialPointerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2b754d868d59ea344a5aeb3b461beb92 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandVisualizationProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandVisualizationProfile.asset new file mode 100644 index 00000000..ec0b237b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandVisualizationProfile.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b7926164960ef644850207ccce1b07e, type: 3} + m_Name: LeftLuminHandVisualizationProfile + m_EditorClassIdentifier: + controllerVisualizationType: + reference: 5d844e0b-f913-46b8-bc3b-fa6429e62c60 + useDefaultModels: 0 + model: {fileID: 7398244499265140811, guid: 61feeca21178ba54682d3c61ff5f89a1, type: 3} + pointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + alternatePointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandVisualizationProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandVisualizationProfile.asset.meta new file mode 100644 index 00000000..b0c70e45 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminHandVisualizationProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8e23bee118edd1c4eb3a535dbb2851a5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminMixedRealityHandControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminMixedRealityHandControllerProfile.asset new file mode 100644 index 00000000..603d1090 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminMixedRealityHandControllerProfile.asset @@ -0,0 +1,27 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: LeftLuminMixedRealityHandControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: b18a9a6c-e5fd-40ae-89e9-9822415ec62b + handedness: 1 + visualizationProfile: {fileID: 11400000, guid: 8e23bee118edd1c4eb3a535dbb2851a5, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: 2b754d868d59ea344a5aeb3b461beb92, type: 2} + - {fileID: 11400000, guid: a67d0216b0e4e0b429e8b6797010bca8, type: 2} + - {fileID: 11400000, guid: 8bb52bd1228582d44a127f853a6bc25b, type: 2} + - {fileID: 11400000, guid: 7071ed7a23f6b0b4ebc58478a20c73a1, type: 2} + - {fileID: 11400000, guid: 75c20d9944697174280d635af4953def, type: 2} + - {fileID: 11400000, guid: f6c6766b14003374bb38c0e0fabb1125, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminMixedRealityHandControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminMixedRealityHandControllerProfile.asset.meta new file mode 100644 index 00000000..56c3ada7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Left/LeftLuminMixedRealityHandControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f6e30873d1ee554da130517de8a5ea4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/LuminHandControllerDataProviderProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/LuminHandControllerDataProviderProfile.asset new file mode 100644 index 00000000..5c2cff5a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/LuminHandControllerDataProviderProfile.asset @@ -0,0 +1,26 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8fa0957ca27c2b74da71e4a2444ad550, type: 3} + m_Name: LuminHandControllerDataProviderProfile + m_EditorClassIdentifier: + hasSetupDefaults: 1 + controllerMappingProfiles: + - {fileID: 11400000, guid: 6f6e30873d1ee554da130517de8a5ea4, type: 2} + - {fileID: 11400000, guid: 14f815e452eab2f48a45143f3795c546, type: 2} + gripThreshold: 0.8 + renderingMode: 1 + handPhysicsEnabled: 0 + useTriggers: 0 + boundsMode: 0 + trackedPoses: [] + keyPointFilterLevel: 0 + poseFilterLevel: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/LuminHandControllerDataProviderProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/LuminHandControllerDataProviderProfile.asset.meta new file mode 100644 index 00000000..22cc6cb9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/LuminHandControllerDataProviderProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0cd9251200b020a4797b46b8679c570f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right.meta new file mode 100644 index 00000000..a18a1a74 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4c886dacf5d465f4cbce1d38c90d8a4a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripInteractionMappingProfile.asset new file mode 100644 index 00000000..77d353ac --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightLuminHandGripInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 16 + description: Grip + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..f5b3debb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23cb02b9b6abaf643b3315ce410d9fd6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..066fc37c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripPoseInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightLuminHandGripPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Pose + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..bd26b0c3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandGripPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 08daaace52393c049a807003472d7a36 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandIndexFingerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandIndexFingerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..a104957e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandIndexFingerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightLuminHandIndexFingerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Index Finger Pose + stateChangeType: 0 + axisType: 7 + inputType: 33 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 15 + description: Index Finger Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 30046256eff05dc4e8285bd773d52699, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandIndexFingerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandIndexFingerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..440bde2a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandIndexFingerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ae1f9075b87d29f4a97e9b5bbf6b982d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandPointInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandPointInteractionMappingProfile.asset new file mode 100644 index 00000000..c9bae624 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandPointInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightLuminHandPointInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Point + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandPointInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandPointInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..ac4d66b9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandPointInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2f38b44a66b08ee4b9baa618c4bf4ee0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSelectInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSelectInteractionMappingProfile.asset new file mode 100644 index 00000000..81a54f2e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSelectInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightLuminHandSelectInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Select + stateChangeType: 0 + axisType: 2 + inputType: 25 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSelectInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSelectInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..0ba02f5f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSelectInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9a38942e1810f734bbcc033b3e9e1d63 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSpatialPointerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSpatialPointerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..fc17bbc8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSpatialPointerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightLuminHandSpatialPointerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer Pose + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 4113745e2b890c548aa08ba7f44a3e58, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSpatialPointerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSpatialPointerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..664c97ab --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandSpatialPointerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4e9405491d5b8b3438e479b28aa1a379 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandVisulaizationProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandVisulaizationProfile.asset new file mode 100644 index 00000000..87983518 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandVisulaizationProfile.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b7926164960ef644850207ccce1b07e, type: 3} + m_Name: RightLuminHandVisulaizationProfile + m_EditorClassIdentifier: + controllerVisualizationType: + reference: 5d844e0b-f913-46b8-bc3b-fa6429e62c60 + useDefaultModels: 0 + model: {fileID: 7709636661657395508, guid: 79eeb06cd1ed4224eb6387ce28855a3c, type: 3} + pointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + alternatePointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandVisulaizationProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandVisulaizationProfile.asset.meta new file mode 100644 index 00000000..530d58dd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminHandVisulaizationProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0cae611b6ada30842bdb7e850940cfb6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminMixedRealityHandControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminMixedRealityHandControllerProfile.asset new file mode 100644 index 00000000..8e0322aa --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminMixedRealityHandControllerProfile.asset @@ -0,0 +1,27 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: RightLuminMixedRealityHandControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: b18a9a6c-e5fd-40ae-89e9-9822415ec62b + handedness: 2 + visualizationProfile: {fileID: 11400000, guid: 0cae611b6ada30842bdb7e850940cfb6, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: 4e9405491d5b8b3438e479b28aa1a379, type: 2} + - {fileID: 11400000, guid: 9a38942e1810f734bbcc033b3e9e1d63, type: 2} + - {fileID: 11400000, guid: 2f38b44a66b08ee4b9baa618c4bf4ee0, type: 2} + - {fileID: 11400000, guid: 23cb02b9b6abaf643b3315ce410d9fd6, type: 2} + - {fileID: 11400000, guid: 08daaace52393c049a807003472d7a36, type: 2} + - {fileID: 11400000, guid: ae1f9075b87d29f4a97e9b5bbf6b982d, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminMixedRealityHandControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminMixedRealityHandControllerProfile.asset.meta new file mode 100644 index 00000000..76ef8f49 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/HandController/Right/RightLuminMixedRealityHandControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 14f815e452eab2f48a45143f3795c546 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left.meta new file mode 100644 index 00000000..73dbe996 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6d0deb3c4b5ad5e43af75f3f9c2ecb1c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/BumperPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/BumperPressProfile.asset new file mode 100644 index 00000000..bc8d0d39 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/BumperPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: BumperPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Bumper Press + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/BumperPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/BumperPressProfile.asset.meta new file mode 100644 index 00000000..b4b1a2e7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/BumperPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4182d36210c3a8449b156190dd37ac7e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/HomePressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/HomePressProfile.asset new file mode 100644 index 00000000..a9cf88b3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/HomePressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: HomePressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Home Press + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/HomePressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/HomePressProfile.asset.meta new file mode 100644 index 00000000..255ac2ef --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/HomePressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 308da264c7a9aed4f930571ed63620d4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/SpatialPointerProfile.asset new file mode 100644 index 00000000..2f0106ac --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/SpatialPointerProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 9e0e4acc675a18b4b9c65e9ff85cfe58, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..88db7840 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cbe5d373928df6a4181b74d42e771b81 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPositionProfile.asset new file mode 100644 index 00000000..634aeb11 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Position + stateChangeType: 0 + axisType: 4 + inputType: 21 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 11 + description: Scroll + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPositionProfile.asset.meta new file mode 100644 index 00000000..a96af549 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: da7a503384cf16b4f81b528324d1cf87 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPressProfile.asset new file mode 100644 index 00000000..f07c93c7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Press + stateChangeType: 0 + axisType: 3 + inputType: 24 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 7 + description: Grip Strength + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPressProfile.asset.meta new file mode 100644 index 00000000..20a63856 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d341b93c4de3e894b8dabbd99f870477 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadTouchProfile.asset new file mode 100644 index 00000000..b1200486 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Touch + stateChangeType: 0 + axisType: 3 + inputType: 22 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadTouchProfile.asset.meta new file mode 100644 index 00000000..b0426571 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TouchpadTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9971579f12c5aff438f4bdde46fae5a9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPositionProfile.asset new file mode 100644 index 00000000..c7001c72 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Position + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPositionProfile.asset.meta new file mode 100644 index 00000000..2d2e251e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 59d25aaeef83fc44fb3a3e48c93a2a5b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPress(Select)Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPress(Select)Profile.asset new file mode 100644 index 00000000..6bb88f5c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPress(Select)Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPress(Select)Profile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Press (Select) + stateChangeType: 0 + axisType: 2 + inputType: 25 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPress(Select)Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPress(Select)Profile.asset.meta new file mode 100644 index 00000000..c9f96168 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerPress(Select)Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 763c91fe7ba514a418e0c2d6ef0977d6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerTouchProfile.asset new file mode 100644 index 00000000..32f2dd60 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Touch + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerTouchProfile.asset.meta new file mode 100644 index 00000000..79668a70 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Left/TriggerTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5dc20b46d3aec3743980fe813dca545e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LeftLuminControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LeftLuminControllerProfile.asset new file mode 100644 index 00000000..5e5f88c6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LeftLuminControllerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: LeftLuminControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 6ac05d69-0e7a-4cfe-91e3-05bc0564458d + handedness: 1 + visualizationProfile: {fileID: 11400000, guid: fe125eaaf5547684d8506b794c5a6016, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: cbe5d373928df6a4181b74d42e771b81, type: 2} + - {fileID: 11400000, guid: 59d25aaeef83fc44fb3a3e48c93a2a5b, type: 2} + - {fileID: 11400000, guid: 5dc20b46d3aec3743980fe813dca545e, type: 2} + - {fileID: 11400000, guid: 763c91fe7ba514a418e0c2d6ef0977d6, type: 2} + - {fileID: 11400000, guid: 4182d36210c3a8449b156190dd37ac7e, type: 2} + - {fileID: 11400000, guid: 308da264c7a9aed4f930571ed63620d4, type: 2} + - {fileID: 11400000, guid: da7a503384cf16b4f81b528324d1cf87, type: 2} + - {fileID: 11400000, guid: d341b93c4de3e894b8dabbd99f870477, type: 2} + - {fileID: 11400000, guid: 9971579f12c5aff438f4bdde46fae5a9, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LeftLuminControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LeftLuminControllerProfile.asset.meta new file mode 100644 index 00000000..28453890 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LeftLuminControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d2884d50f3bf57d49a201da13fd8e3cf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LuminControllerDataProviderProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LuminControllerDataProviderProfile.asset new file mode 100644 index 00000000..7f59aace --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LuminControllerDataProviderProfile.asset @@ -0,0 +1,18 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8edcd6f437a8f024190e49cc25f4734e, type: 3} + m_Name: LuminControllerDataProviderProfile + m_EditorClassIdentifier: + hasSetupDefaults: 1 + controllerMappingProfiles: + - {fileID: 11400000, guid: d2884d50f3bf57d49a201da13fd8e3cf, type: 2} + - {fileID: 11400000, guid: 4770ecf0fd5a6744aae3278452aa51a2, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LuminControllerDataProviderProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LuminControllerDataProviderProfile.asset.meta new file mode 100644 index 00000000..ab607ccd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/LuminControllerDataProviderProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5e14f9e6f5088544a932ed6a0f1e7cf1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right.meta new file mode 100644 index 00000000..f8b1d151 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b81477f68e0309645b3c3de93c205a65 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/BumperPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/BumperPressProfile.asset new file mode 100644 index 00000000..bc8d0d39 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/BumperPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: BumperPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Bumper Press + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/BumperPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/BumperPressProfile.asset.meta new file mode 100644 index 00000000..84399b30 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/BumperPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7713ce6149015cb42aa3f6ab2cf09806 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/HomePressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/HomePressProfile.asset new file mode 100644 index 00000000..a9cf88b3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/HomePressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: HomePressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Home Press + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/HomePressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/HomePressProfile.asset.meta new file mode 100644 index 00000000..59e5a03f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/HomePressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6ab8d27eff0a7c1409d46cc271de1715 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/SpatialPointerProfile.asset new file mode 100644 index 00000000..2f0106ac --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/SpatialPointerProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 9e0e4acc675a18b4b9c65e9ff85cfe58, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..71fec2b2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 61515541a200226488f40c9bdf1af770 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPositionProfile.asset new file mode 100644 index 00000000..634aeb11 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Position + stateChangeType: 0 + axisType: 4 + inputType: 21 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 11 + description: Scroll + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPositionProfile.asset.meta new file mode 100644 index 00000000..8c6a2cd5 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a0395ab304553b6409124f6c11006e97 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPressProfile.asset new file mode 100644 index 00000000..f07c93c7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Press + stateChangeType: 0 + axisType: 3 + inputType: 24 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 7 + description: Grip Strength + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPressProfile.asset.meta new file mode 100644 index 00000000..a3ac9f6f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6124a588ba2e3a3419df92f167dee458 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadTouchProfile.asset new file mode 100644 index 00000000..b1200486 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Touch + stateChangeType: 0 + axisType: 3 + inputType: 22 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadTouchProfile.asset.meta new file mode 100644 index 00000000..63a6d21a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TouchpadTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f62e52bcc7726204bbd1078b3632dbb2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPositionProfile.asset new file mode 100644 index 00000000..c7001c72 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Position + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPositionProfile.asset.meta new file mode 100644 index 00000000..ebc2a825 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fe97b8da701d8e748bfa594ff72036fc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPress(Select)Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPress(Select)Profile.asset new file mode 100644 index 00000000..6bb88f5c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPress(Select)Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPress(Select)Profile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Press (Select) + stateChangeType: 0 + axisType: 2 + inputType: 25 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPress(Select)Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPress(Select)Profile.asset.meta new file mode 100644 index 00000000..b1dbf975 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerPress(Select)Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c1ef9dff7040ce54fb12bc0636a8c9bd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerTouchProfile.asset new file mode 100644 index 00000000..32f2dd60 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Touch + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerTouchProfile.asset.meta new file mode 100644 index 00000000..e5957171 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/Right/TriggerTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: df9eb6bb9808fc140b67d276a308ef33 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/RightLuminControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/RightLuminControllerProfile.asset new file mode 100644 index 00000000..26ed8ed8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/RightLuminControllerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: RightLuminControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 6ac05d69-0e7a-4cfe-91e3-05bc0564458d + handedness: 2 + visualizationProfile: {fileID: 11400000, guid: 5ee67c77447ce88409a3e04e57806963, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: 61515541a200226488f40c9bdf1af770, type: 2} + - {fileID: 11400000, guid: fe97b8da701d8e748bfa594ff72036fc, type: 2} + - {fileID: 11400000, guid: df9eb6bb9808fc140b67d276a308ef33, type: 2} + - {fileID: 11400000, guid: c1ef9dff7040ce54fb12bc0636a8c9bd, type: 2} + - {fileID: 11400000, guid: 7713ce6149015cb42aa3f6ab2cf09806, type: 2} + - {fileID: 11400000, guid: 6ab8d27eff0a7c1409d46cc271de1715, type: 2} + - {fileID: 11400000, guid: a0395ab304553b6409124f6c11006e97, type: 2} + - {fileID: 11400000, guid: 6124a588ba2e3a3419df92f167dee458, type: 2} + - {fileID: 11400000, guid: f62e52bcc7726204bbd1078b3632dbb2, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/RightLuminControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/RightLuminControllerProfile.asset.meta new file mode 100644 index 00000000..31bb564b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Controllers/RightLuminControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4770ecf0fd5a6744aae3278452aa51a2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input.meta new file mode 100644 index 00000000..0c679862 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0a14f72c8603e2d48ae7aefd4067aa1a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers.meta new file mode 100644 index 00000000..151dcca2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ddc9b4e9f49b2ac419af7ebcf8075223 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerNearPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerNearPointerProfile.asset new file mode 100644 index 00000000..87caf278 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerNearPointerProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c156ea3e1a7a493dac236ed84c4a819a, type: 3} + m_Name: LuminHandControllerNearPointerProfile + m_EditorClassIdentifier: + pointerPrefab: {fileID: 7751017874127228719, guid: dffe173621ec68b4abb66b6cfbe5c7f2, + type: 3} + pointingExtent: 0.5 + pointingRaycastLayerMasks: + - serializedVersion: 2 + m_Bits: 4294967291 + drawDebugPointingRays: 0 + debugPointingRayColors: + - {r: 0, g: 1, b: 0, a: 1} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerNearPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerNearPointerProfile.asset.meta new file mode 100644 index 00000000..706553f7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerNearPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 30046256eff05dc4e8285bd773d52699 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerSpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerSpatialPointerProfile.asset new file mode 100644 index 00000000..a7dc5990 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerSpatialPointerProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c156ea3e1a7a493dac236ed84c4a819a, type: 3} + m_Name: LuminHandControllerSpatialPointerProfile + m_EditorClassIdentifier: + pointerPrefab: {fileID: 1247086986094436, guid: 3c6b5e276e9a37446b574ff0ee1eee58, + type: 3} + pointingExtent: 10 + pointingRaycastLayerMasks: + - serializedVersion: 2 + m_Bits: 4294967291 + drawDebugPointingRays: 0 + debugPointingRayColors: + - {r: 0, g: 1, b: 0, a: 1} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerSpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerSpatialPointerProfile.asset.meta new file mode 100644 index 00000000..a245959f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/Input/Pointers/LuminHandControllerSpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4113745e2b890c548aa08ba7f44a3e58 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/LuminPlatformServiceConfigurationsProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/LuminPlatformServiceConfigurationsProfile.asset new file mode 100644 index 00000000..5fde5637 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/LuminPlatformServiceConfigurationsProfile.asset @@ -0,0 +1,55 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: da64fb88269149f8a95f1fb969d6a0b4, type: 3} + m_Name: LuminPlatformServiceConfigurationsProfile + m_EditorClassIdentifier: + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: 39ebb366-21a7-4d08-9412-036b32976d0c + configurations: + - instancedType: + reference: 49e17dac-c786-4b1a-a66a-54da654923d5 + name: Lumin Camera Data Provider + priority: 0 + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: 39ebb366-21a7-4d08-9412-036b32976d0c + profile: {fileID: 11400000, guid: 10c5453922d4a744595e0415ef57dda4, type: 2} + - instancedType: + reference: 851006a2-0762-49aa-80a5-a01c9a8dbb58 + name: Lumin Controller Data Provider + priority: 1 + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: 39ebb366-21a7-4d08-9412-036b32976d0c + profile: {fileID: 11400000, guid: 5e14f9e6f5088544a932ed6a0f1e7cf1, type: 2} + - instancedType: + reference: 9511d571-2e24-41ef-aa7e-df4432617de1 + name: Lumin Hand Controller Data Provider + priority: 2 + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: 39ebb366-21a7-4d08-9412-036b32976d0c + profile: {fileID: 11400000, guid: 0cd9251200b020a4797b46b8679c570f, type: 2} + - instancedType: + reference: a1e7bfed-f290-43e3-84b6-01c740cc9614 + name: Lumin Spatial Mesh Observer + priority: 3 + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: 39ebb366-21a7-4d08-9412-036b32976d0c + profile: {fileID: 0} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/LuminPlatformServiceConfigurationsProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/LuminPlatformServiceConfigurationsProfile.asset.meta new file mode 100644 index 00000000..e544a592 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles/LuminPlatformServiceConfigurationsProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c6b4c54164c3d3145bd8c48cd0646ed2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus.meta new file mode 100644 index 00000000..728872d8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2f844b710a08dee48bc7af021a57c84c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles.meta new file mode 100644 index 00000000..1e34021b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d3203d8ada964734fa31d9d76056ccdc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/CameraSystem.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/CameraSystem.meta new file mode 100644 index 00000000..f18fdd98 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/CameraSystem.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ab7d0460654ecb54591b7aaf8e07b62d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/CameraSystem/OculusCameraDataProviderProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/CameraSystem/OculusCameraDataProviderProfile.asset new file mode 100644 index 00000000..e51eb831 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/CameraSystem/OculusCameraDataProviderProfile.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 00d813fd5a164e19a160f322b2926006, type: 3} + m_Name: OculusCameraDataProviderProfile + m_EditorClassIdentifier: + isCameraPersistent: 1 + nearClipPlaneOpaqueDisplay: 0.1 + cameraClearFlagsOpaqueDisplay: 1 + backgroundColorOpaqueDisplay: {r: 0, g: 0, b: 0, a: 1} + opaqueQualityLevel: 2 + nearClipPlaneTransparentDisplay: 0.85 + cameraClearFlagsTransparentDisplay: 2 + backgroundColorTransparentDisplay: {r: 0, g: 0, b: 0, a: 0} + transparentQualityLevel: 0 + cameraRigType: + reference: 8e0ee4fc-c8a5-4b10-9fca-ee55b6d421ff + defaultHeadHeight: 1.6 + bodyAdjustmentAngle: 60 + bodyAdjustmentSpeed: 1 diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/CameraSystem/OculusCameraDataProviderProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/CameraSystem/OculusCameraDataProviderProfile.asset.meta new file mode 100644 index 00000000..27728e32 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/CameraSystem/OculusCameraDataProviderProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 69601914bd8789b49bc45cc0a9220b4d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers.meta new file mode 100644 index 00000000..44277fd5 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c41040b7fe2da8e489b276361079d2a6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController.meta new file mode 100644 index 00000000..53f31d60 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e0f6a6d2797239449956b84c0d273a8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left.meta new file mode 100644 index 00000000..d337f27c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dfbd70fa33d2a154f99d7a8db09d7241 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripInteractionMappingProfile.asset new file mode 100644 index 00000000..2628590e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftOculusHandGripInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Press + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 16 + description: Grip Press + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..8875123a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0d91d3578a3927c469cbff77dea5c542 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..0e7d595c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripPoseInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftOculusHandGripPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Pose + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..d066773d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandGripPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 119c4a2f2e3e2654485be9fa255ab266 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandIndexFingerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandIndexFingerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..ce19f1d3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandIndexFingerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftOculusHandIndexFingerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Index Finger Pose + stateChangeType: 0 + axisType: 7 + inputType: 33 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 15 + description: Index Finger Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: ef399487899207047b26f0559d9a5b4f, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandIndexFingerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandIndexFingerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..600627e1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandIndexFingerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 36eee5731d287f247a5e1b724ef55ab2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandPointInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandPointInteractionMappingProfile.asset new file mode 100644 index 00000000..429be688 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandPointInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftOculusHandPointInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Point + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandPointInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandPointInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..b3d5fa58 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandPointInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3b51dbb80753f774399c497057796d83 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSelectInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSelectInteractionMappingProfile.asset new file mode 100644 index 00000000..c57be495 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSelectInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftOculusHandSelectInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Select + stateChangeType: 0 + axisType: 2 + inputType: 25 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSelectInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSelectInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..14680fbe --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSelectInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a0b589e69acf0f0458c3cebe23ecb913 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSpatialPointerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSpatialPointerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..4c4da8bb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSpatialPointerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftOculusHandSpatialPointerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer Pose + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: ccd05b1eb01c67849b824d049f6a19db, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSpatialPointerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSpatialPointerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..04d2d95f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandSpatialPointerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 95a5f5969e530914390dbd7304421e19 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandVisualizationProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandVisualizationProfile.asset new file mode 100644 index 00000000..c59ab587 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandVisualizationProfile.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b7926164960ef644850207ccce1b07e, type: 3} + m_Name: LeftOculusHandVisualizationProfile + m_EditorClassIdentifier: + controllerVisualizationType: + reference: 5d844e0b-f913-46b8-bc3b-fa6429e62c60 + useDefaultModels: 0 + model: {fileID: 7398244499265140811, guid: 61feeca21178ba54682d3c61ff5f89a1, type: 3} + pointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + alternatePointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandVisualizationProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandVisualizationProfile.asset.meta new file mode 100644 index 00000000..34e03977 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusHandVisualizationProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6a4c47b083709314491c3236c6df96ef +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusMixedRealityHandControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusMixedRealityHandControllerProfile.asset new file mode 100644 index 00000000..eca15129 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusMixedRealityHandControllerProfile.asset @@ -0,0 +1,27 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: LeftOculusMixedRealityHandControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: b18a9a6c-e5fd-40ae-89e9-9822415ec62b + handedness: 1 + visualizationProfile: {fileID: 11400000, guid: 6a4c47b083709314491c3236c6df96ef, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: 95a5f5969e530914390dbd7304421e19, type: 2} + - {fileID: 11400000, guid: a0b589e69acf0f0458c3cebe23ecb913, type: 2} + - {fileID: 11400000, guid: 3b51dbb80753f774399c497057796d83, type: 2} + - {fileID: 11400000, guid: 0d91d3578a3927c469cbff77dea5c542, type: 2} + - {fileID: 11400000, guid: 119c4a2f2e3e2654485be9fa255ab266, type: 2} + - {fileID: 11400000, guid: 36eee5731d287f247a5e1b724ef55ab2, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusMixedRealityHandControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusMixedRealityHandControllerProfile.asset.meta new file mode 100644 index 00000000..7bf24de2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Left/LeftOculusMixedRealityHandControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f5955c3fbc9a2f4a9ad5760ed372b1c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/OculusHandControllerDataProviderProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/OculusHandControllerDataProviderProfile.asset new file mode 100644 index 00000000..07c8d072 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/OculusHandControllerDataProviderProfile.asset @@ -0,0 +1,25 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 90f3e2e415703f24db18a5caa501bb3c, type: 3} + m_Name: OculusHandControllerDataProviderProfile + m_EditorClassIdentifier: + hasSetupDefaults: 1 + controllerMappingProfiles: + - {fileID: 11400000, guid: 6f5955c3fbc9a2f4a9ad5760ed372b1c, type: 2} + - {fileID: 11400000, guid: 183f92446961a1a4b980f615fa51264c, type: 2} + gripThreshold: 0.8 + renderingMode: 1 + handPhysicsEnabled: 0 + useTriggers: 0 + boundsMode: 0 + trackedPoses: [] + minConfidenceRequired: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/OculusHandControllerDataProviderProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/OculusHandControllerDataProviderProfile.asset.meta new file mode 100644 index 00000000..aa321b58 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/OculusHandControllerDataProviderProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d9b3b9f611dffee4883c089dc35e0ce7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right.meta new file mode 100644 index 00000000..c5c8e555 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 93e00bbc409eed94ea5d8836ea36cb00 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripInteractionMappingProfile.asset new file mode 100644 index 00000000..21b08282 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightOculusHandGripInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Press + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 16 + description: Grip Press + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..8ba9c91b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4f4da5c965734ec4ebaf390902a843ea +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..3e1122c4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripPoseInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightOculusHandGripPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Pose + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..fff32ac7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandGripPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 892991c1f8f6dfb4f839275e347cadf1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandIndexFingerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandIndexFingerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..b78ab0fb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandIndexFingerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightOculusHandIndexFingerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Index Finger Pose + stateChangeType: 0 + axisType: 7 + inputType: 33 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 15 + description: Index Finger Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: ef399487899207047b26f0559d9a5b4f, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandIndexFingerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandIndexFingerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..78e5821f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandIndexFingerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 843dd155c92865d4eb1113ae177481b2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandPointInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandPointInteractionMappingProfile.asset new file mode 100644 index 00000000..e8778aca --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandPointInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightOculusHandPointInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Point + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandPointInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandPointInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..d95daca7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandPointInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 515b0136e3ba26c4e89fef2df6079b8c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSelectInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSelectInteractionMappingProfile.asset new file mode 100644 index 00000000..618b92d3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSelectInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightOculusHandSelectInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Select + stateChangeType: 0 + axisType: 2 + inputType: 25 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSelectInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSelectInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..b1f320ee --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSelectInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1d30f2a9f5902454faa10e82486ab24d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSpatialPointerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSpatialPointerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..4b1e922e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSpatialPointerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightOculusHandSpatialPointerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer Pose + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: ccd05b1eb01c67849b824d049f6a19db, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSpatialPointerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSpatialPointerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..9974e98c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandSpatialPointerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1cd046ac9617db94cad8545b75de8224 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandVisulaizationProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandVisulaizationProfile.asset new file mode 100644 index 00000000..8bd8618b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandVisulaizationProfile.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b7926164960ef644850207ccce1b07e, type: 3} + m_Name: RightOculusHandVisulaizationProfile + m_EditorClassIdentifier: + controllerVisualizationType: + reference: 5d844e0b-f913-46b8-bc3b-fa6429e62c60 + useDefaultModels: 0 + model: {fileID: 7709636661657395508, guid: 79eeb06cd1ed4224eb6387ce28855a3c, type: 3} + pointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + alternatePointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandVisulaizationProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandVisulaizationProfile.asset.meta new file mode 100644 index 00000000..61cca6f3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusHandVisulaizationProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 653d5ae3da9517844a92143c40fc4121 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusMixedRealityHandControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusMixedRealityHandControllerProfile.asset new file mode 100644 index 00000000..1d9d27cc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusMixedRealityHandControllerProfile.asset @@ -0,0 +1,27 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: RightOculusMixedRealityHandControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: b18a9a6c-e5fd-40ae-89e9-9822415ec62b + handedness: 2 + visualizationProfile: {fileID: 11400000, guid: 653d5ae3da9517844a92143c40fc4121, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: 1cd046ac9617db94cad8545b75de8224, type: 2} + - {fileID: 11400000, guid: 1d30f2a9f5902454faa10e82486ab24d, type: 2} + - {fileID: 11400000, guid: 515b0136e3ba26c4e89fef2df6079b8c, type: 2} + - {fileID: 11400000, guid: 4f4da5c965734ec4ebaf390902a843ea, type: 2} + - {fileID: 11400000, guid: 892991c1f8f6dfb4f839275e347cadf1, type: 2} + - {fileID: 11400000, guid: 843dd155c92865d4eb1113ae177481b2, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusMixedRealityHandControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusMixedRealityHandControllerProfile.asset.meta new file mode 100644 index 00000000..eb77189d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/HandController/Right/RightOculusMixedRealityHandControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 183f92446961a1a4b980f615fa51264c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusControllerDataProviderProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusControllerDataProviderProfile.asset new file mode 100644 index 00000000..9e55c2c5 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusControllerDataProviderProfile.asset @@ -0,0 +1,19 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f7c275ea0a537ee48b517e7c58643b53, type: 3} + m_Name: OculusControllerDataProviderProfile + m_EditorClassIdentifier: + hasSetupDefaults: 1 + controllerMappingProfiles: + - {fileID: 11400000, guid: 79cbea5e2d236ae488726a72c8f777af, type: 2} + - {fileID: 11400000, guid: 413843becb0ae4346a6a56bd3d95149c, type: 2} + - {fileID: 11400000, guid: eb176f0405197c841aaef5ea36db934a, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusControllerDataProviderProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusControllerDataProviderProfile.asset.meta new file mode 100644 index 00000000..3638a662 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusControllerDataProviderProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b849f3a28dc36b84a92d2ec4d8239cd6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController.meta new file mode 100644 index 00000000..8cccae61 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bdb978c1ad4ea074f81132f25b085bf8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.BackProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.BackProfile.asset new file mode 100644 index 00000000..9eb06bb3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.BackProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.BackProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Back + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: Back + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.BackProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.BackProfile.asset.meta new file mode 100644 index 00000000..6f371298 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.BackProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 640f9efd0a00cb64db56fceb6cdf43fa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadDownProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadDownProfile.asset new file mode 100644 index 00000000..9e5f655e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadDownProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.DpadDownProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.DpadDown + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: DpadDown + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadDownProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadDownProfile.asset.meta new file mode 100644 index 00000000..17d73219 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadDownProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e2e76decaa1d68f489b71d5a22a0ab7d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadLeftProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadLeftProfile.asset new file mode 100644 index 00000000..1807232d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadLeftProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.DpadLeftProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.DpadLeft + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: DpadLeft + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadLeftProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadLeftProfile.asset.meta new file mode 100644 index 00000000..c4eaeba6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadLeftProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f540faec5641b54e81eac5f4c2e28b1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadRightProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadRightProfile.asset new file mode 100644 index 00000000..16f3bff1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadRightProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.DpadRightProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.DpadRight + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: DpadRight + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadRightProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadRightProfile.asset.meta new file mode 100644 index 00000000..9d156aec --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadRightProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f84462ffd710eb84997822a0dd4bd60e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadUpProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadUpProfile.asset new file mode 100644 index 00000000..5df13188 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadUpProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.DpadUpProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.DpadUp + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: DpadUp + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadUpProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadUpProfile.asset.meta new file mode 100644 index 00000000..5c30bc02 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.DpadUpProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 881fb0b197e70874f8cca565a5de0955 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.OneProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.OneProfile.asset new file mode 100644 index 00000000..b3238be6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.OneProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.OneProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.One + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: One + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.OneProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.OneProfile.asset.meta new file mode 100644 index 00000000..d7e67583 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.OneProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c481cd841c0dc14499c8a7dbb963db24 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.StartProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.StartProfile.asset new file mode 100644 index 00000000..29f8b21c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.StartProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.StartProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Start + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: Start + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.StartProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.StartProfile.asset.meta new file mode 100644 index 00000000..3f57141d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.StartProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d4ccc6a88a36a9248b3e2f02baa5a07e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.TwoProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.TwoProfile.asset new file mode 100644 index 00000000..2f95c9ff --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.TwoProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.TwoProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Two + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: Two + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.TwoProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.TwoProfile.asset.meta new file mode 100644 index 00000000..360edeb3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/Button.TwoProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 57b8d52912d05d944a7bef8849e61746 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/OculusRemoteControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/OculusRemoteControllerProfile.asset new file mode 100644 index 00000000..f11b58e0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/OculusRemoteControllerProfile.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: OculusRemoteControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 071048c6-31f3-460c-863f-5d3121f47654 + handedness: 0 + visualizationProfile: {fileID: 0} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: 881fb0b197e70874f8cca565a5de0955, type: 2} + - {fileID: 11400000, guid: e2e76decaa1d68f489b71d5a22a0ab7d, type: 2} + - {fileID: 11400000, guid: 8f540faec5641b54e81eac5f4c2e28b1, type: 2} + - {fileID: 11400000, guid: f84462ffd710eb84997822a0dd4bd60e, type: 2} + - {fileID: 11400000, guid: c481cd841c0dc14499c8a7dbb963db24, type: 2} + - {fileID: 11400000, guid: 57b8d52912d05d944a7bef8849e61746, type: 2} + - {fileID: 11400000, guid: d4ccc6a88a36a9248b3e2f02baa5a07e, type: 2} + - {fileID: 11400000, guid: 640f9efd0a00cb64db56fceb6cdf43fa, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/OculusRemoteControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/OculusRemoteControllerProfile.asset.meta new file mode 100644 index 00000000..766ef7ed --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusRemoteController/OculusRemoteControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 79cbea5e2d236ae488726a72c8f777af +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController.meta new file mode 100644 index 00000000..f851637d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1b4d2bf8adc9c1c42a2476f8cc716b09 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left.meta new file mode 100644 index 00000000..a06d79b3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7d3625a1084aca940a63c35a581cf412 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset new file mode 100644 index 00000000..c7db83b7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.PrimaryHandTriggerPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.PrimaryHandTrigger Press + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 16 + description: Grip Press + axisConstraint: 2 + keyCode: 0 + inputName: LHandTrigger + axisCodeX: AXIS_11 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset.meta new file mode 100644 index 00000000..9ae946f2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fdcc142fd435d81449934f1c47f2c7e6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset new file mode 100644 index 00000000..486086e2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.PrimaryHandTriggerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.PrimaryHandTrigger + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 7 + description: Grip Strength + axisConstraint: 3 + keyCode: 0 + inputName: LHandTrigger + axisCodeX: AXIS_11 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset.meta new file mode 100644 index 00000000..a387dd26 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 15b05a8a0a9d281448ab94b8bf549e60 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset new file mode 100644 index 00000000..06b9657c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.PrimaryIndexTriggerNearTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.PrimaryIndexTrigger Near Touch + stateChangeType: 0 + axisType: 2 + inputType: 12 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: LIndexTrigger + axisCodeX: AXIS_13 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset.meta new file mode 100644 index 00000000..a87adc6e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dd799fbfb54e7c84dae7323ba609276f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset new file mode 100644 index 00000000..aa3bcf16 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.PrimaryIndexTriggerPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.PrimaryIndexTrigger Press + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: LIndexTrigger + axisCodeX: AXIS_9 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset.meta new file mode 100644 index 00000000..e109bac0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9947f38f310de894c9a897f071cade52 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset new file mode 100644 index 00000000..8ee86c2a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.PrimaryIndexTriggerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.PrimaryIndexTrigger + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: LIndexTrigger + axisCodeX: AXIS_9 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset.meta new file mode 100644 index 00000000..1c864591 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9bbed734892721644b6da3bd9c1f7b33 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset new file mode 100644 index 00000000..5ba4e703 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.PrimaryIndexTriggerTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.PrimaryIndexTrigger Touch + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 344 + inputName: LIndexTrigger + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset.meta new file mode 100644 index 00000000..f24e824a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d85c1e429b274984faa59055b93190ff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset new file mode 100644 index 00000000..68ee80d0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis2D.PrimaryThumbRestProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis2D.PrimaryThumbRest + stateChangeType: 0 + axisType: 4 + inputType: 17 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: LTouchpad + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset.meta new file mode 100644 index 00000000..e645cff7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fb9b971cf238bb4449528a3b93906c0a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset new file mode 100644 index 00000000..07745255 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis2D.PrimaryThumbstickProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis2D.PrimaryThumbstick + stateChangeType: 0 + axisType: 4 + inputType: 17 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 5 + description: Teleport Direction + axisConstraint: 4 + keyCode: 0 + inputName: LThumbstick + axisCodeX: AXIS_1 + axisCodeY: AXIS_2 + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset.meta new file mode 100644 index 00000000..cddda022 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a62d36f527a475448bce7121320d2e65 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourPressProfile.asset new file mode 100644 index 00000000..8e89990e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.FourPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Four Press + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 333 + inputName: Y + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourPressProfile.asset.meta new file mode 100644 index 00000000..97e64350 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7bf684345285a0a4b86a5fd728f337b9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourTouchProfile.asset new file mode 100644 index 00000000..f408fb87 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.FourTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Four Touch + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 343 + inputName: Y + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourTouchProfile.asset.meta new file mode 100644 index 00000000..12f25308 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.FourTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 38d92e59b53a61541beea419e3c9e65c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset new file mode 100644 index 00000000..bed3cbae --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.PrimaryThumbstickNearTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.PrimaryThumbstick Near Touch + stateChangeType: 0 + axisType: 2 + inputType: 31 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: LThumbstick + axisCodeX: AXIS_15 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset.meta new file mode 100644 index 00000000..789dec85 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fd37d827948d19e4287dc0cba0cee5fd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset new file mode 100644 index 00000000..1c524370 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.PrimaryThumbstickPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.PrimaryThumbstick Press + stateChangeType: 0 + axisType: 2 + inputType: 18 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 338 + inputName: LThumbstick + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset.meta new file mode 100644 index 00000000..8323ca45 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 108fcaa8f8b1b334f9e7c962dc72e975 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset new file mode 100644 index 00000000..34757e3c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.PrimaryThumbstickTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.PrimaryThumbstick Touch + stateChangeType: 0 + axisType: 2 + inputType: 19 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 346 + inputName: LThumbstick + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset.meta new file mode 100644 index 00000000..c4d21acc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5dacfe2e20ed1f74fb6b024adaa96243 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.StartPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.StartPressProfile.asset new file mode 100644 index 00000000..3a3dcb44 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.StartPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.StartPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Start Press + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 337 + inputName: Start + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.StartPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.StartPressProfile.asset.meta new file mode 100644 index 00000000..9cd1b618 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.StartPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 030560660c2f6d442a305ecc72e0b461 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreePressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreePressProfile.asset new file mode 100644 index 00000000..ba9808c1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreePressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.ThreePressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Three Press + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 332 + inputName: X + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreePressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreePressProfile.asset.meta new file mode 100644 index 00000000..c533786a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreePressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 733e04f2316e4fa448bbf1b605beb5e6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreeTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreeTouchProfile.asset new file mode 100644 index 00000000..4bf620b7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreeTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.ThreeTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Three Touch + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 342 + inputName: X + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreeTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreeTouchProfile.asset.meta new file mode 100644 index 00000000..c6397764 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Button.ThreeTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 25da088bf8992fd44854880191082b59 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/LeftOculusTouchGripPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/LeftOculusTouchGripPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..e6012ae7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/LeftOculusTouchGripPoseInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftOculusTouchGripPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Pose + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/LeftOculusTouchGripPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/LeftOculusTouchGripPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..4661fac7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/LeftOculusTouchGripPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 44d1dac04942dba44ab0f01ee529dec8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/SpatialPointerProfile.asset new file mode 100644 index 00000000..8e35daa3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/SpatialPointerProfile.asset @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 9e0e4acc675a18b4b9c65e9ff85cfe58, type: 2} + - {fileID: 11400000, guid: d3736f91cbeeb284fb90b9d389b7fe33, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..e61ec791 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d3c46e95cd50b9347b3ae2b984258b3c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset new file mode 100644 index 00000000..f92481ea --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Touch.PrimaryThumbRestNearTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touch.PrimaryThumbRest Near Touch + stateChangeType: 0 + axisType: 2 + inputType: 31 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: LThumbRest + axisCodeX: AXIS_17 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset.meta new file mode 100644 index 00000000..e11bb020 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4c2c7b74b24b9d946af40c80ee0d0e9a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset new file mode 100644 index 00000000..64f45b3d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Touch.PrimaryThumbRestTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touch.PrimaryThumbRest Touch + stateChangeType: 0 + axisType: 2 + inputType: 30 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 348 + inputName: LThumbRest + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset.meta new file mode 100644 index 00000000..6f71aeee --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a28ef8a54b31cd7429a330d53d37bda4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerProfile.asset new file mode 100644 index 00000000..344fd008 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerProfile.asset @@ -0,0 +1,41 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: LeftOculusTouchControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 1898974a-dbcd-4c88-8e03-726689848d52 + handedness: 1 + visualizationProfile: {fileID: 11400000, guid: 64083f0c076c83f49a716316f5ce901c, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: d3c46e95cd50b9347b3ae2b984258b3c, type: 2} + - {fileID: 11400000, guid: 9bbed734892721644b6da3bd9c1f7b33, type: 2} + - {fileID: 11400000, guid: d85c1e429b274984faa59055b93190ff, type: 2} + - {fileID: 11400000, guid: dd799fbfb54e7c84dae7323ba609276f, type: 2} + - {fileID: 11400000, guid: 9947f38f310de894c9a897f071cade52, type: 2} + - {fileID: 11400000, guid: 15b05a8a0a9d281448ab94b8bf549e60, type: 2} + - {fileID: 11400000, guid: fdcc142fd435d81449934f1c47f2c7e6, type: 2} + - {fileID: 11400000, guid: a62d36f527a475448bce7121320d2e65, type: 2} + - {fileID: 11400000, guid: 5dacfe2e20ed1f74fb6b024adaa96243, type: 2} + - {fileID: 11400000, guid: fd37d827948d19e4287dc0cba0cee5fd, type: 2} + - {fileID: 11400000, guid: 108fcaa8f8b1b334f9e7c962dc72e975, type: 2} + - {fileID: 11400000, guid: 733e04f2316e4fa448bbf1b605beb5e6, type: 2} + - {fileID: 11400000, guid: 7bf684345285a0a4b86a5fd728f337b9, type: 2} + - {fileID: 11400000, guid: 030560660c2f6d442a305ecc72e0b461, type: 2} + - {fileID: 11400000, guid: 25da088bf8992fd44854880191082b59, type: 2} + - {fileID: 11400000, guid: 38d92e59b53a61541beea419e3c9e65c, type: 2} + - {fileID: 11400000, guid: fb9b971cf238bb4449528a3b93906c0a, type: 2} + - {fileID: 11400000, guid: a28ef8a54b31cd7429a330d53d37bda4, type: 2} + - {fileID: 11400000, guid: 4c2c7b74b24b9d946af40c80ee0d0e9a, type: 2} + - {fileID: 11400000, guid: 44d1dac04942dba44ab0f01ee529dec8, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerProfile.asset.meta new file mode 100644 index 00000000..25724468 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 413843becb0ae4346a6a56bd3d95149c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerVisualizer.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerVisualizer.asset new file mode 100644 index 00000000..04e5b995 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerVisualizer.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b7926164960ef644850207ccce1b07e, type: 3} + m_Name: LeftOculusTouchControllerVisualizer + m_EditorClassIdentifier: + controllerVisualizationType: + reference: ea41f336-8b46-4aea-a8b4-8b93b52e67a9 + useDefaultModels: 1 + model: {fileID: 1370450866519632, guid: ee0e0dd1dc6d457794091bf89f804f8f, type: 3} + pointerPose: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + alternatePointerPose: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerVisualizer.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerVisualizer.asset.meta new file mode 100644 index 00000000..cf78c907 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/LeftOculusTouchControllerVisualizer.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 64083f0c076c83f49a716316f5ce901c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right.meta new file mode 100644 index 00000000..70e971dc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0186bc4dba0b0d64987fb69d71c796bd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset new file mode 100644 index 00000000..5dd6e76d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.SecondaryHandTriggerPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.SecondaryHandTrigger Press + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 16 + description: Grip Press + axisConstraint: 2 + keyCode: 0 + inputName: RHandTrigger + axisCodeX: AXIS_12 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset.meta new file mode 100644 index 00000000..d9973cfc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 393406af530d2214d9aa1993942f5ff7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset new file mode 100644 index 00000000..646b7ebc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.SecondaryHandTriggerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.SecondaryHandTrigger + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 7 + description: Grip Strength + axisConstraint: 3 + keyCode: 0 + inputName: RHandTrigger + axisCodeX: AXIS_12 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset.meta new file mode 100644 index 00000000..3898fb32 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: df4722feeca5a33488b7c7a6addddee5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset new file mode 100644 index 00000000..af61ce28 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.SecondaryIndexTriggerNearTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.SecondaryIndexTrigger Near Touch + stateChangeType: 0 + axisType: 2 + inputType: 12 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: RIndexTrigger + axisCodeX: AXIS_14 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset.meta new file mode 100644 index 00000000..62a7bc2c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8e023d2fa54b8d348b7457ba537d8332 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset new file mode 100644 index 00000000..c5e7d492 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.SecondaryIndexTriggerPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.SecondaryIndexTrigger Press + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: RIndexTrigger + axisCodeX: AXIS_10 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset.meta new file mode 100644 index 00000000..9a399986 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cba7d50e18cd90041adb4ce347621080 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset new file mode 100644 index 00000000..2e146d28 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.SecondaryIndexTriggerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.SecondaryIndexTrigger + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: RIndexTrigger + axisCodeX: AXIS_10 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset.meta new file mode 100644 index 00000000..bba86ca3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ae7b13680e4179749a28db707c1b0380 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset new file mode 100644 index 00000000..022e72cd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.SecondaryIndexTriggerTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.SecondaryIndexTrigger Touch + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 345 + inputName: RIndexTrigger + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset.meta new file mode 100644 index 00000000..96d4f73f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4bcb3661197898d4292c18b99b333014 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset new file mode 100644 index 00000000..4d65a974 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis2D.SecondaryThumbRestProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis2D.SecondaryThumbRest + stateChangeType: 0 + axisType: 4 + inputType: 17 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: RTouchpad + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset.meta new file mode 100644 index 00000000..99e19b0f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dd3b05d4a1ecb1a4fb8223e48a0e2cd5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset new file mode 100644 index 00000000..b8a3bde9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis2D.SecondaryThumbstickProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis2D.SecondaryThumbstick + stateChangeType: 0 + axisType: 4 + inputType: 17 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 5 + description: Teleport Direction + axisConstraint: 4 + keyCode: 0 + inputName: RThumbstick + axisCodeX: AXIS_4 + axisCodeY: AXIS_5 + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset.meta new file mode 100644 index 00000000..14278784 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fae8482b0216de4469c1c7ebf0b3049e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OnePressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OnePressProfile.asset new file mode 100644 index 00000000..460bdcac --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OnePressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.OnePressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.One Press + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 330 + inputName: A + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OnePressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OnePressProfile.asset.meta new file mode 100644 index 00000000..5c440b0c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OnePressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5f0ef58103b43f84cbbf4fc0aa96bde9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OneTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OneTouchProfile.asset new file mode 100644 index 00000000..eec17458 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OneTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.OneTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.One Touch + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 340 + inputName: A + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OneTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OneTouchProfile.asset.meta new file mode 100644 index 00000000..6bf058e1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.OneTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9b0fbb1f88de9574b8b89e38f3678182 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset new file mode 100644 index 00000000..7377f7d8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.SecondaryThumbstickNearTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.SecondaryThumbstick Near Touch + stateChangeType: 0 + axisType: 2 + inputType: 31 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: RThumbstick + axisCodeX: AXIS_16 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset.meta new file mode 100644 index 00000000..412c0abb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3b6894b2217fe5846aa9a0e83bafb08b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset new file mode 100644 index 00000000..fe1ce692 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.SecondaryThumbstickPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.SecondaryThumbstick Press + stateChangeType: 0 + axisType: 2 + inputType: 18 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 339 + inputName: RThumbstick + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset.meta new file mode 100644 index 00000000..46baa44e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aceecb4f01c85ae46bc76cb3dd39ebca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset new file mode 100644 index 00000000..883bc506 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.SecondaryThumbstickTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.SecondaryThumbstick Touch + stateChangeType: 0 + axisType: 2 + inputType: 19 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 347 + inputName: RThumbstick + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset.meta new file mode 100644 index 00000000..25e36491 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 425e5d256fb0f5d4bbd7853c139a36c6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoPressProfile.asset new file mode 100644 index 00000000..6022e02d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.TwoPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Two Press + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 331 + inputName: B + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoPressProfile.asset.meta new file mode 100644 index 00000000..28ef9081 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 75c8347d2665a56419afdfb036c06a63 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoTouchProfile.asset new file mode 100644 index 00000000..7f3953c5 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.TwoTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Two Touch + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 341 + inputName: B + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoTouchProfile.asset.meta new file mode 100644 index 00000000..9337a4b9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Button.TwoTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 771a9bda940dc984c80cbd0246277368 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/RightOculusTouchGripPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/RightOculusTouchGripPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..f29e9d81 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/RightOculusTouchGripPoseInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightOculusTouchGripPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Pose + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/RightOculusTouchGripPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/RightOculusTouchGripPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..f1d56984 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/RightOculusTouchGripPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6bdb400e6c8fb154c973f1e2577f9b24 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/SpatialPointerProfile.asset new file mode 100644 index 00000000..8e35daa3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/SpatialPointerProfile.asset @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 9e0e4acc675a18b4b9c65e9ff85cfe58, type: 2} + - {fileID: 11400000, guid: d3736f91cbeeb284fb90b9d389b7fe33, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..a26d50e3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f647a94a748f32743840d17a974be2ef +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset new file mode 100644 index 00000000..fc857560 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Touch.SecondaryThumbRestNearTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touch.SecondaryThumbRest Near Touch + stateChangeType: 0 + axisType: 2 + inputType: 31 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: RThumbRest + axisCodeX: AXIS_18 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset.meta new file mode 100644 index 00000000..86f5117b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a29c31e27b6a4dd478d0baffe9c452bf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset new file mode 100644 index 00000000..1b92e5d7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Touch.SecondaryThumbRestTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touch.SecondaryThumbRest Touch + stateChangeType: 0 + axisType: 2 + inputType: 30 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 349 + inputName: RThumbRest + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset.meta new file mode 100644 index 00000000..4f04cb41 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8d874651626c3ec468f4807dc53538b0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerProfile.asset new file mode 100644 index 00000000..a4f94113 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerProfile.asset @@ -0,0 +1,40 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: RightOculusTouchControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 1898974a-dbcd-4c88-8e03-726689848d52 + handedness: 2 + visualizationProfile: {fileID: 11400000, guid: ed3b64ed2696d9a479c751bc238b520c, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: f647a94a748f32743840d17a974be2ef, type: 2} + - {fileID: 11400000, guid: ae7b13680e4179749a28db707c1b0380, type: 2} + - {fileID: 11400000, guid: 4bcb3661197898d4292c18b99b333014, type: 2} + - {fileID: 11400000, guid: 8e023d2fa54b8d348b7457ba537d8332, type: 2} + - {fileID: 11400000, guid: cba7d50e18cd90041adb4ce347621080, type: 2} + - {fileID: 11400000, guid: df4722feeca5a33488b7c7a6addddee5, type: 2} + - {fileID: 11400000, guid: 393406af530d2214d9aa1993942f5ff7, type: 2} + - {fileID: 11400000, guid: fae8482b0216de4469c1c7ebf0b3049e, type: 2} + - {fileID: 11400000, guid: 425e5d256fb0f5d4bbd7853c139a36c6, type: 2} + - {fileID: 11400000, guid: 3b6894b2217fe5846aa9a0e83bafb08b, type: 2} + - {fileID: 11400000, guid: aceecb4f01c85ae46bc76cb3dd39ebca, type: 2} + - {fileID: 11400000, guid: 5f0ef58103b43f84cbbf4fc0aa96bde9, type: 2} + - {fileID: 11400000, guid: 75c8347d2665a56419afdfb036c06a63, type: 2} + - {fileID: 11400000, guid: 9b0fbb1f88de9574b8b89e38f3678182, type: 2} + - {fileID: 11400000, guid: 771a9bda940dc984c80cbd0246277368, type: 2} + - {fileID: 11400000, guid: dd3b05d4a1ecb1a4fb8223e48a0e2cd5, type: 2} + - {fileID: 11400000, guid: 8d874651626c3ec468f4807dc53538b0, type: 2} + - {fileID: 11400000, guid: a29c31e27b6a4dd478d0baffe9c452bf, type: 2} + - {fileID: 11400000, guid: 6bdb400e6c8fb154c973f1e2577f9b24, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerProfile.asset.meta new file mode 100644 index 00000000..a2f03f67 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb176f0405197c841aaef5ea36db934a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerVisualizer.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerVisualizer.asset new file mode 100644 index 00000000..58c3933c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerVisualizer.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b7926164960ef644850207ccce1b07e, type: 3} + m_Name: RightOculusTouchControllerVisualizer + m_EditorClassIdentifier: + controllerVisualizationType: + reference: ea41f336-8b46-4aea-a8b4-8b93b52e67a9 + useDefaultModels: 1 + model: {fileID: 1370450866519632, guid: ee0e0dd1dc6d457794091bf89f804f8f, type: 3} + pointerPose: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + alternatePointerPose: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerVisualizer.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerVisualizer.asset.meta new file mode 100644 index 00000000..57b849d4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Controllers/OculusTouchController/RightOculusTouchControllerVisualizer.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ed3b64ed2696d9a479c751bc238b520c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input.meta new file mode 100644 index 00000000..1ecddd7c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 020db057a90d66e419ece0ea42450536 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers.meta new file mode 100644 index 00000000..ce93c601 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9e893b8d35a02234aa2b1dba898124ba +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerNearPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerNearPointerProfile.asset new file mode 100644 index 00000000..1ace9134 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerNearPointerProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c156ea3e1a7a493dac236ed84c4a819a, type: 3} + m_Name: OculusHandControllerNearPointerProfile + m_EditorClassIdentifier: + pointerPrefab: {fileID: 7751017874127228719, guid: dffe173621ec68b4abb66b6cfbe5c7f2, + type: 3} + pointingExtent: 0.5 + pointingRaycastLayerMasks: + - serializedVersion: 2 + m_Bits: 4294967291 + drawDebugPointingRays: 0 + debugPointingRayColors: + - {r: 0, g: 1, b: 0, a: 1} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerNearPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerNearPointerProfile.asset.meta new file mode 100644 index 00000000..4ea69b90 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerNearPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ef399487899207047b26f0559d9a5b4f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerSpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerSpatialPointerProfile.asset new file mode 100644 index 00000000..9c88dc36 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerSpatialPointerProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c156ea3e1a7a493dac236ed84c4a819a, type: 3} + m_Name: OculusHandControllerSpatialPointerProfile + m_EditorClassIdentifier: + pointerPrefab: {fileID: 1247086986094436, guid: 3c6b5e276e9a37446b574ff0ee1eee58, + type: 3} + pointingExtent: 10 + pointingRaycastLayerMasks: + - serializedVersion: 2 + m_Bits: 4294967291 + drawDebugPointingRays: 0 + debugPointingRayColors: + - {r: 0, g: 1, b: 0, a: 1} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerSpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerSpatialPointerProfile.asset.meta new file mode 100644 index 00000000..0ed0554a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/Input/Pointers/OculusHandControllerSpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ccd05b1eb01c67849b824d049f6a19db +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/OculusPlatformServiceConfigurationsProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/OculusPlatformServiceConfigurationsProfile.asset new file mode 100644 index 00000000..693f105c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/OculusPlatformServiceConfigurationsProfile.asset @@ -0,0 +1,46 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: da64fb88269149f8a95f1fb969d6a0b4, type: 3} + m_Name: OculusPlatformServiceConfigurationsProfile + m_EditorClassIdentifier: + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: db1acc26-ec8d-4bc6-afca-c51351b2da2e + configurations: + - instancedType: + reference: 83eff552-adf4-47c8-ad53-df7406856d3f + name: Oculus Camera Data Provider + priority: 0 + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: db1acc26-ec8d-4bc6-afca-c51351b2da2e + profile: {fileID: 11400000, guid: 69601914bd8789b49bc45cc0a9220b4d, type: 2} + - instancedType: + reference: 0de5da40-feb8-4891-b9b2-942eafd041b9 + name: Oculus Controller Data Provider + priority: 1 + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: db1acc26-ec8d-4bc6-afca-c51351b2da2e + profile: {fileID: 11400000, guid: b849f3a28dc36b84a92d2ec4d8239cd6, type: 2} + - instancedType: + reference: ea666456-baef-4412-a829-a4c7132e98c3 + name: Oculus Hand Controller Data Provider + priority: 2 + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: db1acc26-ec8d-4bc6-afca-c51351b2da2e + profile: {fileID: 11400000, guid: d9b3b9f611dffee4883c089dc35e0ce7, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/OculusPlatformServiceConfigurationsProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/OculusPlatformServiceConfigurationsProfile.asset.meta new file mode 100644 index 00000000..ce409ec3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles/OculusPlatformServiceConfigurationsProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 68209f019dcb3244497732424a9ca2cb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK.meta new file mode 100644 index 00000000..70bc0308 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e3ac45dafd7f8a9409e29aa7e0314513 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs.meta new file mode 100644 index 00000000..78afc512 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eee2b16e729782441bd19850837da4bf +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics.meta new file mode 100644 index 00000000..a02075b9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e56352a28f97d834e879fd83a138c928 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/ConsoleLogEntry.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/ConsoleLogEntry.prefab new file mode 100644 index 00000000..55dcb29c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/ConsoleLogEntry.prefab @@ -0,0 +1,159 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &720216609463083442 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3932887867721946629} + - component: {fileID: 6145598386725144966} + - component: {fileID: 1230534594485072424} + m_Layer: 0 + m_Name: ConsoleLogEntry + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3932887867721946629 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 720216609463083442} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &6145598386725144966 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 720216609463083442} + m_CullTransparentMesh: 0 +--- !u!114 &1230534594485072424 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 720216609463083442} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_text: + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_outlineColor: + serializedVersion: 2 + rgba: 4278190080 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_textAlignment: 257 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_firstOverflowCharacterIndex: -1 + m_linkedTextComponent: {fileID: 0} + m_isLinkedTextComponent: 0 + m_isTextTruncated: 0 + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_ignoreRectMaskCulling: 0 + m_ignoreCulling: 1 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_VertexBufferAutoSizeReduction: 1 + m_firstVisibleCharacter: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_textInfo: + textComponent: {fileID: 1230534594485072424} + characterCount: 207 + spriteCount: 0 + spaceCount: 36 + wordCount: 36 + linkCount: 0 + lineCount: 3 + pageCount: 1 + materialCount: 1 + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_spriteAnimator: {fileID: 0} + m_hasFontAssetChanged: 0 + m_subTextObjects: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/ConsoleLogEntry.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/ConsoleLogEntry.prefab.meta new file mode 100644 index 00000000..18123208 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/ConsoleLogEntry.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d8c00e493400052458e2ec1b257fc827 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/DefaultDiagnosticsWindow.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/DefaultDiagnosticsWindow.prefab new file mode 100644 index 00000000..3cc36f59 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/DefaultDiagnosticsWindow.prefab @@ -0,0 +1,3271 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &357137482330527361 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3157889187419787937} + - component: {fileID: 5860035585542715770} + m_Layer: 0 + m_Name: PinWindowToggle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3157889187419787937 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 357137482330527361} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2019197803358615879} + m_Father: {fileID: 4739057925929053077} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 1232, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &5860035585542715770 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 357137482330527361} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 86710e43de46f6f4bac7c8e50813a599, type: 3} + m_Name: + m_EditorClassIdentifier: + m_AspectMode: 2 + m_AspectRatio: 1 +--- !u!1 &385848205679439476 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5721329846507513620} + - component: {fileID: 7211779167765507337} + - component: {fileID: 9149147965565877319} + - component: {fileID: 3527613963140960685} + m_Layer: 0 + m_Name: Frames + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5721329846507513620 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 385848205679439476} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 5848192684812481330} + - {fileID: 2536808488545107692} + m_Father: {fileID: 3474437866739917068} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0} +--- !u!222 &7211779167765507337 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 385848205679439476} + m_CullTransparentMesh: 0 +--- !u!114 &9149147965565877319 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 385848205679439476} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 1 +--- !u!114 &3527613963140960685 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 385848205679439476} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: 120 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &462341489754315132 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8948704354427317840} + - component: {fileID: 7462704581476966192} + - component: {fileID: 9214783813086675483} + m_Layer: 0 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8948704354427317840 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462341489754315132} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 7651860516876329203} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7462704581476966192 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462341489754315132} + m_CullTransparentMesh: 0 +--- !u!114 &9214783813086675483 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462341489754315132} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.48, g: 0.48, b: 0.48, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &737206429839268618 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4946611139461851541} + - component: {fileID: 6007244849462524022} + - component: {fileID: 605938201106966668} + m_Layer: 0 + m_Name: ApplicationSignatureText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4946611139461851541 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 737206429839268618} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4739057925929053077} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0.5} +--- !u!222 &6007244849462524022 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 737206429839268618} + m_CullTransparentMesh: 0 +--- !u!114 &605938201106966668 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 737206429839268618} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: '{PackageID} v{Package Version}' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 513 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 1 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!1 &818010031451962026 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3474437866739917068} + - component: {fileID: 219807319061389430} + - component: {fileID: 4985176867734625234} + - component: {fileID: 5059844283934795801} + m_Layer: 0 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3474437866739917068 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 818010031451962026} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4739057925929053077} + - {fileID: 2136235239572360199} + - {fileID: 5721329846507513620} + - {fileID: 6592574820174197356} + m_Father: {fileID: 7059610919956172988} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &219807319061389430 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 818010031451962026} + m_CullTransparentMesh: 0 +--- !u!114 &4985176867734625234 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 818010031451962026} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.32, g: 0.32, b: 0.32, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &5059844283934795801 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 818010031451962026} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 16 + m_Right: 16 + m_Top: 16 + m_Bottom: 16 + m_ChildAlignment: 4 + m_Spacing: 8 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 1 +--- !u!1 &905440354591005144 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5209346699645365605} + - component: {fileID: 1298428891373700147} + - component: {fileID: 1639115780580836521} + - component: {fileID: 171969191284324338} + m_Layer: 0 + m_Name: Scrollbar Horizontal + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5209346699645365605 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 905440354591005144} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2334228999438599345} + m_Father: {fileID: 2280819960928607404} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 20} + m_Pivot: {x: 0, y: 0} +--- !u!222 &1298428891373700147 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 905440354591005144} + m_CullTransparentMesh: 0 +--- !u!114 &1639115780580836521 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 905440354591005144} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &171969191284324338 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 905440354591005144} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 2591092903606399280} + m_HandleRect: {fileID: 9221785712172736509} + m_Direction: 0 + m_Value: 1 + m_Size: 0.9999999 + m_NumberOfSteps: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &1266736556741322556 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 855944102653695686} + - component: {fileID: 3284934053871887124} + m_Layer: 0 + m_Name: MemoryUsageSlider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &855944102653695686 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1266736556741322556} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 3914735131823296032} + m_Father: {fileID: 7651860516876329203} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &3284934053871887124 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1266736556741322556} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 67db9e8f0e2ae9c40bc1e2b64352a6b4, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 0 + m_TargetGraphic: {fileID: 0} + m_FillRect: {fileID: 1143909335995995247} + m_HandleRect: {fileID: 0} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &1331729072865896739 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2334228999438599345} + m_Layer: 0 + m_Name: Sliding Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2334228999438599345 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1331729072865896739} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9221785712172736509} + m_Father: {fileID: 5209346699645365605} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: -20, y: -20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1393435940284735257 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4453844185123494869} + - component: {fileID: 8906915560267806527} + - component: {fileID: 1945491205300097608} + - component: {fileID: 5135031410183356569} + m_Layer: 0 + m_Name: MemoryPeakText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4453844185123494869 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1393435940284735257} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4214199553546078754} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 624, y: -60} + m_SizeDelta: {x: 410.66666, y: 60} + m_Pivot: {x: 0.5, y: 0} +--- !u!222 &8906915560267806527 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1393435940284735257} + m_CullTransparentMesh: 0 +--- !u!114 &1945491205300097608 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1393435940284735257} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'Peak: 00.00MB' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278239221 + m_fontColor: {r: 0.9607844, g: 0.7490196, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 514 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 3 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!114 &5135031410183356569 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1393435940284735257} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 400 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &1676316314515237236 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9221785712172736509} + - component: {fileID: 927057768988007943} + - component: {fileID: 2591092903606399280} + m_Layer: 0 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &9221785712172736509 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1676316314515237236} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2334228999438599345} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &927057768988007943 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1676316314515237236} + m_CullTransparentMesh: 0 +--- !u!114 &2591092903606399280 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1676316314515237236} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &1775634611491422414 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1374732909081746242} + - component: {fileID: 2942844138671207234} + - component: {fileID: 564401567457210119} + m_Layer: 0 + m_Name: Fill + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1374732909081746242 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1775634611491422414} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 7215155766443186019} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &2942844138671207234 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1775634611491422414} + m_CullTransparentMesh: 0 +--- !u!114 &564401567457210119 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1775634611491422414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9607844, g: 0.7490196, b: 0, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &2161880003638299081 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2526310608616145877} + - component: {fileID: 5630857977071535010} + - component: {fileID: 3203674913833952779} + - component: {fileID: 537952477673132766} + - component: {fileID: 5794983513916104165} + - component: {fileID: 6581399821875318963} + - component: {fileID: 2594137750029275674} + m_Layer: 0 + m_Name: DefaultDiagnosticsWindow + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2526310608616145877 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2161880003638299081} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_Children: + - {fileID: 7059610919956172988} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &5630857977071535010 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2161880003638299081} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 41cca1ff11ac4116abc9c95f8af34afa, type: 3} + m_Name: + m_EditorClassIdentifier: + handedness: 0 + trackedObjectToReference: 0 + additionalOffset: {x: 0, y: 0, z: 0} + additionalRotation: {x: 0, y: 0, z: 0} + transformTarget: {fileID: 0} + updateSolvers: 1 +--- !u!114 &3203674913833952779 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2161880003638299081} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5e725c11bfa74d9186ef4986d716366e, type: 3} + m_Name: + m_EditorClassIdentifier: + updateLinkedTransform: 0 + moveLerpTime: 0.5 + rotateLerpTime: 0.5 + scaleLerpTime: 0 + maintainScale: 1 + smoothing: 1 + lifetime: 0 + snapToGoalOnEnable: 1 + SolverHandler: {fileID: 5630857977071535010} + orientationType: 2 + localOffset: {x: 0, y: 0, z: 2} + worldOffset: {x: 0, y: 0, z: 0} + useAngleSteppingForWorldOffset: 0 + tetherAngleSteps: 6 +--- !u!114 &537952477673132766 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2161880003638299081} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 44eae2cd901f5574988cded222e7fc4c, type: 3} + m_Name: + m_EditorClassIdentifier: + solverHandler: {fileID: 5630857977071535010} + applicationSignatureText: {fileID: 605938201106966668} + icon: {fileID: 1163695198814191956} + pinGraphic: {fileID: 21300000, guid: b15778bfbdc01814da83a3e0e17b97fb, type: 3} + unPinGraphic: {fileID: 21300000, guid: 56819671bc9d2084d91c730562749930, type: 3} +--- !u!114 &5794983513916104165 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2161880003638299081} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 657794d1492344d4894ad8b7eb1e00c7, type: 3} + m_Name: + m_EditorClassIdentifier: + logEntryTextColor: {r: 0, g: 0, b: 0, a: 1} + warningEntryTextColor: {r: 0.6, g: 0.46406245, b: 0, a: 1} + errorEntryTextColor: {r: 0.6, g: 0, b: 0, a: 1} + maxEntries: 10 + logTextPrefab: {fileID: 720216609463083442, guid: d8c00e493400052458e2ec1b257fc827, + type: 3} + contentRoot: {fileID: 2889816609432434618} +--- !u!114 &6581399821875318963 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2161880003638299081} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 89111b31115b57342a506f18f818d3b8, type: 3} + m_Name: + m_EditorClassIdentifier: + displayedDecimalDigits: 2 + cpuFrameRateText: {fileID: 4885367340671142721} + gpuFrameRateText: {fileID: 1539632551991241600} + missedFrameImagePrefab: {fileID: 6530276075474649117, guid: 6d1da8d093e2f51458c9cf173da5aa8d, + type: 3} + missedFramesContainer: {fileID: 2536808488545107692} + imageFrameCount: 30 +--- !u!114 &2594137750029275674 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2161880003638299081} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7bc2b4e8950b373498258d5d1b8f3eaa, type: 3} + m_Name: + m_EditorClassIdentifier: + displayedDecimalDigits: 2 + memoryUsedText: {fileID: 4141947625998614395} + memoryPeakText: {fileID: 1945491205300097608} + memoryLimitText: {fileID: 8342056480051828790} + peakMemorySlider: {fileID: 4117937359547806298} + usedMemorySlider: {fileID: 3284934053871887124} +--- !u!1 &2410053571726789029 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2536808488545107692} + - component: {fileID: 5111336044192567689} + - component: {fileID: 4135545862699221507} + m_Layer: 0 + m_Name: MissedFrames + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2536808488545107692 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2410053571726789029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5721329846507513620} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0} +--- !u!114 &5111336044192567689 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2410053571726789029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 8 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 1 +--- !u!114 &4135545862699221507 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2410053571726789029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: 60 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &2671078258901642215 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5848192684812481330} + - component: {fileID: 3309333868433214743} + - component: {fileID: 3584301653288852218} + m_Layer: 0 + m_Name: TextGroup + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5848192684812481330 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2671078258901642215} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 3367376086726020443} + - {fileID: 9069631210353718513} + m_Father: {fileID: 5721329846507513620} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &3309333868433214743 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2671078258901642215} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 8 + m_Right: 8 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 1 +--- !u!114 &3584301653288852218 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2671078258901642215} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: 60 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &2719606543961314482 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2019197803358615879} + - component: {fileID: 8239922641602141889} + - component: {fileID: 8500326420150826670} + - component: {fileID: 5298575195987240790} + m_Layer: 0 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2019197803358615879 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2719606543961314482} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 3592624637570453882} + m_Father: {fileID: 3157889187419787937} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8239922641602141889 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2719606543961314482} + m_CullTransparentMesh: 0 +--- !u!114 &8500326420150826670 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2719606543961314482} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 0.4, g: 0.4, b: 0.4, a: 1} + m_HighlightedColor: {r: 0.6, g: 0.6, b: 0.6, a: 1} + m_PressedColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_SelectedColor: {r: 0.6, g: 0.6, b: 0.6, a: 1} + m_DisabledColor: {r: 1, g: 1, b: 1, a: 0} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 5298575195987240790} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 537952477673132766} + m_MethodName: Toggle_PinWindow + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &5298575195987240790 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2719606543961314482} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &2890098064048090717 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2889816609432434618} + - component: {fileID: 4780391842861944988} + - component: {fileID: 8184928738495183116} + - component: {fileID: 4382223224383504268} + m_Layer: 0 + m_Name: Content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2889816609432434618 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2890098064048090717} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3864327341000515780} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -0.000061035156, y: -0.000091552734} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &4780391842861944988 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2890098064048090717} + m_CullTransparentMesh: 0 +--- !u!114 &8184928738495183116 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2890098064048090717} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 0 + m_VerticalFit: 2 +--- !u!114 &4382223224383504268 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2890098064048090717} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 8 + m_Right: 8 + m_Top: 8 + m_Bottom: 8 + m_ChildAlignment: 1 + m_Spacing: 24 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 1 +--- !u!1 &3082320051171978738 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4394858444311231460} + - component: {fileID: 5034296360282933353} + - component: {fileID: 4141947625998614395} + - component: {fileID: 7070854857757289098} + m_Layer: 0 + m_Name: MemoryUsedText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4394858444311231460 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3082320051171978738} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4214199553546078754} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 8, y: -60} + m_SizeDelta: {x: 410.66666, y: 60} + m_Pivot: {x: 0, y: 0} +--- !u!222 &5034296360282933353 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3082320051171978738} + m_CullTransparentMesh: 0 +--- !u!114 &4141947625998614395 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3082320051171978738} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'Used: 00.00MB' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278255360 + m_fontColor: {r: 0, g: 1, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 513 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 3 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!114 &7070854857757289098 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3082320051171978738} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 400 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &3131959781153304077 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6505278686331084845} + - component: {fileID: 3738983191436921488} + - component: {fileID: 8342056480051828790} + - component: {fileID: 971832289633152206} + m_Layer: 0 + m_Name: MemoryLimitText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6505278686331084845 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3131959781153304077} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4214199553546078754} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 1240, y: -60} + m_SizeDelta: {x: 410.66666, y: 60} + m_Pivot: {x: 1, y: 0} +--- !u!222 &3738983191436921488 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3131959781153304077} + m_CullTransparentMesh: 0 +--- !u!114 &8342056480051828790 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3131959781153304077} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'Limit: 00.00MB' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190335 + m_fontColor: {r: 1, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 516 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 3 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!114 &971832289633152206 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3131959781153304077} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 400 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &3253767173219079962 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3864327341000515780} + - component: {fileID: 6955844925547036814} + - component: {fileID: 593728019027360358} + - component: {fileID: 5292577522011259189} + m_Layer: 0 + m_Name: Viewport + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3864327341000515780 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3253767173219079962} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2889816609432434618} + m_Father: {fileID: 2280819960928607404} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!222 &6955844925547036814 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3253767173219079962} + m_CullTransparentMesh: 0 +--- !u!114 &593728019027360358 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3253767173219079962} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 0 +--- !u!114 &5292577522011259189 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3253767173219079962} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &3325582513099923056 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4214199553546078754} + - component: {fileID: 1241444315600114318} + m_Layer: 0 + m_Name: TextGroup + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4214199553546078754 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3325582513099923056} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4394858444311231460} + - {fileID: 4453844185123494869} + - {fileID: 6505278686331084845} + m_Father: {fileID: 6592574820174197356} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 60} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1241444315600114318 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3325582513099923056} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 8 + m_Right: 8 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 5 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 1 +--- !u!1 &3747251353731939464 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4739057925929053077} + - component: {fileID: 466560840297897383} + - component: {fileID: 6225949161381945915} + - component: {fileID: 2169609355622898252} + m_Layer: 0 + m_Name: WindowHeader + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4739057925929053077 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3747251353731939464} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4946611139461851541} + - {fileID: 3157889187419787937} + m_Father: {fileID: 3474437866739917068} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &466560840297897383 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3747251353731939464} + m_CullTransparentMesh: 0 +--- !u!114 &6225949161381945915 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3747251353731939464} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 16 + m_Right: 16 + m_Top: 16 + m_Bottom: 16 + m_ChildAlignment: 3 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 1 +--- !u!114 &2169609355622898252 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3747251353731939464} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: 100 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &3797553030337393772 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6592574820174197356} + - component: {fileID: 2288914633927690427} + - component: {fileID: 5521228496951634995} + m_Layer: 0 + m_Name: Memory + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6592574820174197356 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3797553030337393772} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4214199553546078754} + - {fileID: 7651860516876329203} + m_Father: {fileID: 3474437866739917068} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0} +--- !u!222 &2288914633927690427 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3797553030337393772} + m_CullTransparentMesh: 0 +--- !u!114 &5521228496951634995 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3797553030337393772} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: 120 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &3947323760808620979 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3914735131823296032} + m_Layer: 0 + m_Name: Fill Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3914735131823296032 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3947323760808620979} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1143909335995995247} + m_Father: {fileID: 855944102653695686} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &4083018887954200379 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2136235239572360199} + - component: {fileID: 3830874565555114604} + - component: {fileID: 2135562847980847615} + m_Layer: 0 + m_Name: Console + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2136235239572360199 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4083018887954200379} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2280819960928607404} + m_Father: {fileID: 3474437866739917068} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3830874565555114604 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4083018887954200379} + m_CullTransparentMesh: 0 +--- !u!114 &2135562847980847615 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4083018887954200379} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: 600 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &4495120437687442459 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7215155766443186019} + m_Layer: 0 + m_Name: Fill Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7215155766443186019 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4495120437687442459} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1374732909081746242} + m_Father: {fileID: 6173873840228508409} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &5497988758525092423 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6647377600167767017} + - component: {fileID: 7726204021378617893} + - component: {fileID: 1278912945569988977} + m_Layer: 0 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6647377600167767017 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5497988758525092423} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2684561748796597296} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7726204021378617893 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5497988758525092423} + m_CullTransparentMesh: 0 +--- !u!114 &1278912945569988977 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5497988758525092423} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &6129081200147008066 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2280819960928607404} + - component: {fileID: 3215335296776187425} + - component: {fileID: 1248503185200700914} + - component: {fileID: 7191524269965293766} + m_Layer: 0 + m_Name: ScrollView + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2280819960928607404 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6129081200147008066} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 3864327341000515780} + - {fileID: 5209346699645365605} + - {fileID: 4255433278687778661} + m_Father: {fileID: 2136235239572360199} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &3215335296776187425 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6129081200147008066} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Content: {fileID: 2889816609432434618} + m_Horizontal: 1 + m_Vertical: 1 + m_MovementType: 1 + m_Elasticity: 0.1 + m_Inertia: 1 + m_DecelerationRate: 0.135 + m_ScrollSensitivity: 1 + m_Viewport: {fileID: 3864327341000515780} + m_HorizontalScrollbar: {fileID: 171969191284324338} + m_VerticalScrollbar: {fileID: 1695904201896658736} + m_HorizontalScrollbarVisibility: 2 + m_VerticalScrollbarVisibility: 2 + m_HorizontalScrollbarSpacing: -3 + m_VerticalScrollbarSpacing: -3 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1248503185200700914 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6129081200147008066} + m_CullTransparentMesh: 0 +--- !u!114 &7191524269965293766 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6129081200147008066} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.392} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &6785882853700133801 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3367376086726020443} + - component: {fileID: 1046840456187911435} + - component: {fileID: 4885367340671142721} + m_Layer: 0 + m_Name: CPUFrameCountText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3367376086726020443 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6785882853700133801} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5848192684812481330} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!222 &1046840456187911435 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6785882853700133801} + m_CullTransparentMesh: 0 +--- !u!114 &4885367340671142721 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6785882853700133801} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'CPU: 00 fps (00.00ms)' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 513 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 1 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!1 &6809568920593415744 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7059610919956172988} + - component: {fileID: 3260442075108450707} + - component: {fileID: 6340187675300685773} + - component: {fileID: 8246143235899624360} + m_Layer: 0 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7059610919956172988 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6809568920593415744} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.001, y: 0.001, z: 0.001} + m_Children: + - {fileID: 3474437866739917068} + m_Father: {fileID: 2526310608616145877} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1280, y: 1000} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!223 &3260442075108450707 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6809568920593415744} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 25 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &6340187675300685773 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6809568920593415744} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &8246143235899624360 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6809568920593415744} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9896024ed44449c8b072d7340edc12c1, type: 3} + m_Name: + m_EditorClassIdentifier: + canvas: {fileID: 3260442075108450707} +--- !u!1 &6895055494701750344 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9069631210353718513} + - component: {fileID: 3945331617915986812} + - component: {fileID: 1539632551991241600} + m_Layer: 0 + m_Name: GPUFrameCountText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &9069631210353718513 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6895055494701750344} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5848192684812481330} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!222 &3945331617915986812 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6895055494701750344} + m_CullTransparentMesh: 0 +--- !u!114 &1539632551991241600 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6895055494701750344} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'GPU: 00 fps (00.00ms)' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 516 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 1 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!1 &6974182467975023647 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2684561748796597296} + m_Layer: 0 + m_Name: Sliding Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2684561748796597296 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6974182467975023647} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6647377600167767017} + m_Father: {fileID: 4255433278687778661} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: -20, y: -20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &7156914581988292207 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4255433278687778661} + - component: {fileID: 4400619811833800548} + - component: {fileID: 725553855711159803} + - component: {fileID: 1695904201896658736} + m_Layer: 0 + m_Name: Scrollbar Vertical + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4255433278687778661 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7156914581988292207} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2684561748796597296} + m_Father: {fileID: 2280819960928607404} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!222 &4400619811833800548 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7156914581988292207} + m_CullTransparentMesh: 0 +--- !u!114 &725553855711159803 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7156914581988292207} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &1695904201896658736 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7156914581988292207} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1278912945569988977} + m_HandleRect: {fileID: 6647377600167767017} + m_Direction: 2 + m_Value: 1 + m_Size: 1 + m_NumberOfSteps: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &7237798628620295757 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3592624637570453882} + - component: {fileID: 3401132058144790155} + - component: {fileID: 1163695198814191956} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3592624637570453882 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7237798628620295757} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2019197803358615879} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 64, y: 64} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3401132058144790155 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7237798628620295757} + m_CullTransparentMesh: 0 +--- !u!114 &1163695198814191956 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7237798628620295757} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: b15778bfbdc01814da83a3e0e17b97fb, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &7718010687761440463 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7651860516876329203} + m_Layer: 0 + m_Name: SliderGroup + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7651860516876329203 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7718010687761440463} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 8948704354427317840} + - {fileID: 6173873840228508409} + - {fileID: 855944102653695686} + m_Father: {fileID: 6592574820174197356} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 60} + m_Pivot: {x: 0.5, y: 0} +--- !u!1 &7765681313988351822 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6173873840228508409} + - component: {fileID: 4117937359547806298} + m_Layer: 0 + m_Name: MemoryPeakSlider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6173873840228508409 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7765681313988351822} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 7215155766443186019} + m_Father: {fileID: 7651860516876329203} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &4117937359547806298 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7765681313988351822} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 67db9e8f0e2ae9c40bc1e2b64352a6b4, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 0 + m_TargetGraphic: {fileID: 0} + m_FillRect: {fileID: 1374732909081746242} + m_HandleRect: {fileID: 0} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &8209315035400619106 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1143909335995995247} + - component: {fileID: 6987619463720970824} + - component: {fileID: 3577120425701552375} + m_Layer: 0 + m_Name: Fill + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1143909335995995247 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8209315035400619106} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3914735131823296032} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &6987619463720970824 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8209315035400619106} + m_CullTransparentMesh: 0 +--- !u!114 &3577120425701552375 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8209315035400619106} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 1, b: 0, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/DefaultDiagnosticsWindow.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/DefaultDiagnosticsWindow.prefab.meta new file mode 100644 index 00000000..7b8c43b1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/DefaultDiagnosticsWindow.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: be9153b959e0d4d4aa50a4a1a6617daa +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/Frame.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/Frame.prefab new file mode 100644 index 00000000..a3a4beb0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/Frame.prefab @@ -0,0 +1,76 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6530276075474649117 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4855374662671965149} + - component: {fileID: 2454414232684079237} + - component: {fileID: 4184203328365418215} + m_Layer: 0 + m_Name: Frame + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4855374662671965149 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6530276075474649117} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &2454414232684079237 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6530276075474649117} + m_CullTransparentMesh: 0 +--- !u!114 &4184203328365418215 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6530276075474649117} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 1, b: 0, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/Frame.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/Frame.prefab.meta new file mode 100644 index 00000000..76a12610 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/Diagnostics/Frame.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6d1da8d093e2f51458c9cf173da5aa8d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX.meta new file mode 100644 index 00000000..5597ee5a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3e49fecd95c329d4ab98a0439aa312e6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors.meta new file mode 100644 index 00000000..ed40a081 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d43f74fde2a34beaa642b343d65ca0ce +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/DefaultCursor.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/DefaultCursor.prefab new file mode 100644 index 00000000..631fd05b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/DefaultCursor.prefab @@ -0,0 +1,878 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1000012072213228} + m_IsPrefabParent: 1 +--- !u!1 &1000010015292458 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000013708246872} + m_Layer: 2 + m_Name: group_right + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000010240122096 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000011787857196} + m_Layer: 2 + m_Name: group_bottom + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000010503763288 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000014090385390} + m_Layer: 2 + m_Name: Anchor_Cursor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000010627582080 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000012166063264} + - component: {fileID: 137000012467287548} + m_Layer: 2 + m_Name: mesh_left + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000010997923674 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000013449772102} + m_Layer: 2 + m_Name: group_top_joint_outer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000011038902392 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000011946381988} + m_Layer: 2 + m_Name: group_right_joint_outer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000011497247824 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000010929445128} + m_Layer: 2 + m_Name: group_top + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000011665505428 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000013458491836} + m_Layer: 2 + m_Name: group_bottom_joint_outer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000011686294758 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000011376360604} + - component: {fileID: 137000012811968416} + m_Layer: 2 + m_Name: mesh_bottom + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000011844533774 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000013316072862} + - component: {fileID: 95274710619506266} + - component: {fileID: 114232848954065008} + m_Layer: 2 + m_Name: CursorVisual + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000012072213228 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000011792100794} + - component: {fileID: 114611684728110934} + m_Layer: 2 + m_Name: DefaultCursor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000012150952002 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000011681230980} + m_Layer: 2 + m_Name: group_right_joint_inner + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000012359495584 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000011059980986} + - component: {fileID: 137000012128918204} + m_Layer: 2 + m_Name: mesh_top + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000012568377582 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000011368356948} + m_Layer: 2 + m_Name: group_left + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000012792124594 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000012976400574} + m_Layer: 2 + m_Name: group_bottom_joint_inner + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000012942637454 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000013894343586} + - component: {fileID: 137000014164134944} + m_Layer: 2 + m_Name: mesh_right + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000013355298042 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000010411813178} + m_Layer: 2 + m_Name: group_left_joint_outer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000013761764438 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000010787082106} + m_Layer: 2 + m_Name: group_left_joint_inner + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1000013764401358 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4000013463439578} + m_Layer: 2 + m_Name: group_top_joint_inner + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4000010411813178 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000013355298042} + m_LocalRotation: {x: 0.5, y: -0.5, z: -0.5, w: 0.5} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 0.2, y: 0.12, z: 0.12} + m_Children: + - {fileID: 4000010787082106} + m_Father: {fileID: 4000011368356948} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: -90, z: -90} +--- !u!4 &4000010787082106 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000013761764438} + m_LocalRotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5} + m_LocalPosition: {x: -1, y: 3.2612801e-16, z: -5.2385294e-32} + m_LocalScale: {x: 1e-12, y: 1, z: 1e-12} + m_Children: [] + m_Father: {fileID: 4000010411813178} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -90, y: 90, z: 0} +--- !u!4 &4000010929445128 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000011497247824} + m_LocalRotation: {x: 0, y: 0.7071068, z: 0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4000011059980986} + - {fileID: 4000013449772102} + m_Father: {fileID: 4000013316072862} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4000011059980986 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000012359495584} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4000010929445128} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4000011368356948 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000012568377582} + m_LocalRotation: {x: 6.123234e-17, y: 1, z: -6.123234e-17, w: -6.123234e-17} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4000012166063264} + - {fileID: 4000010411813178} + m_Father: {fileID: 4000013316072862} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4000011376360604 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000011686294758} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4000011787857196} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4000011681230980 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000012150952002} + m_LocalRotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5} + m_LocalPosition: {x: -1, y: 3.2612801e-16, z: -5.2385294e-32} + m_LocalScale: {x: 1e-12, y: 1, z: 1e-12} + m_Children: [] + m_Father: {fileID: 4000011946381988} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -90, y: 90, z: 0} +--- !u!4 &4000011787857196 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000010240122096} + m_LocalRotation: {x: -0, y: -0.7071068, z: 0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4000011376360604} + - {fileID: 4000013458491836} + m_Father: {fileID: 4000013316072862} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4000011792100794 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000012072213228} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4000014090385390} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4000011946381988 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000011038902392} + m_LocalRotation: {x: 0.5, y: -0.5, z: -0.5, w: 0.5} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 0.2, y: 0.12, z: 0.12} + m_Children: + - {fileID: 4000011681230980} + m_Father: {fileID: 4000013708246872} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: -90, z: -90} +--- !u!4 &4000012166063264 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000010627582080} + m_LocalRotation: {x: -6.123234e-17, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4000011368356948} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4000012976400574 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000012792124594} + m_LocalRotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5} + m_LocalPosition: {x: -1, y: 3.2612801e-16, z: -5.2385294e-32} + m_LocalScale: {x: 1e-12, y: 1, z: 1e-12} + m_Children: [] + m_Father: {fileID: 4000013458491836} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -90, y: 90, z: 0} +--- !u!4 &4000013316072862 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000011844533774} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.04, y: 0.04, z: 0.04} + m_Children: + - {fileID: 4000010929445128} + - {fileID: 4000011787857196} + - {fileID: 4000013708246872} + - {fileID: 4000011368356948} + m_Father: {fileID: 4000014090385390} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4000013449772102 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000010997923674} + m_LocalRotation: {x: 0.5, y: -0.5, z: -0.5, w: 0.5} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 0.2, y: 0.12, z: 0.12} + m_Children: + - {fileID: 4000013463439578} + m_Father: {fileID: 4000010929445128} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: -90, z: -90} +--- !u!4 &4000013458491836 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000011665505428} + m_LocalRotation: {x: 0.5, y: -0.5, z: -0.5, w: 0.5} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 0.2, y: 0.12, z: 0.12} + m_Children: + - {fileID: 4000012976400574} + m_Father: {fileID: 4000011787857196} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: -90, z: -90} +--- !u!4 &4000013463439578 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000013764401358} + m_LocalRotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5} + m_LocalPosition: {x: -1, y: 3.2612801e-16, z: -5.2385294e-32} + m_LocalScale: {x: 1e-12, y: 1, z: 1e-12} + m_Children: [] + m_Father: {fileID: 4000013449772102} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -90, y: 90, z: 0} +--- !u!4 &4000013708246872 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000010015292458} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4000013894343586} + - {fileID: 4000011946381988} + m_Father: {fileID: 4000013316072862} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4000013894343586 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000012942637454} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4000013708246872} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4000014090385390 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000010503763288} + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0.001} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4000013316072862} + m_Father: {fileID: 4000011792100794} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!95 &95274710619506266 +Animator: + serializedVersion: 3 + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000011844533774} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: eb808cb008b949ad9d8a93e1d7c10d8e, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorControllerStateOnDisable: 0 +--- !u!114 &114232848954065008 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000011844533774} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cbf9a83277454a9c994dc902a319e222, type: 3} + m_Name: + m_EditorClassIdentifier: + radius: 0.15 + color: {r: 0.3, g: 0.3, b: 0.3, a: 1} +--- !u!114 &114611684728110934 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000012072213228} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d4d18048ba204a0db1916d170a44d17e, type: 3} + m_Name: + m_EditorClassIdentifier: + surfaceCursorDistance: 0.02 + useUnscaledTime: 1 + positionLerpTime: 0.01 + scaleLerpTime: 0.01 + rotationLerpTime: 0.01 + lookRotationBlend: 0 + PrimaryCursorVisual: {fileID: 4000014090385390} + defaultCursorDistance: 2 + cursorStateData: + - name: Observe + cursorState: 0 + parameter: + parameterType: 3 + defaultInt: 0 + defaultFloat: 0 + defaultBool: 0 + name: CursorState + - name: ObserveHover + cursorState: 1 + parameter: + parameterType: 3 + defaultInt: 1 + defaultFloat: 0 + defaultBool: 0 + name: CursorState + - name: Interact + cursorState: 2 + parameter: + parameterType: 3 + defaultInt: 2 + defaultFloat: 0 + defaultBool: 0 + name: CursorState + - name: InteractHover + cursorState: 3 + parameter: + parameterType: 3 + defaultInt: 3 + defaultFloat: 0 + defaultBool: 0 + name: CursorState + - name: Select + cursorState: 4 + parameter: + parameterType: 3 + defaultInt: 4 + defaultFloat: 0 + defaultBool: 0 + name: CursorState + - name: Release + cursorState: 5 + parameter: + parameterType: 3 + defaultInt: 5 + defaultFloat: 0 + defaultBool: 0 + name: CursorState + inputEnabledParameter: + parameterType: 4 + defaultInt: 0 + defaultFloat: 0 + defaultBool: 0 + name: Waiting + inputDisabledParameter: + parameterType: 4 + defaultInt: 0 + defaultFloat: 0 + defaultBool: 1 + name: Waiting + cursorAnimator: {fileID: 95274710619506266} +--- !u!137 &137000012128918204 +SkinnedMeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000012359495584} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: 5533073c4b0c4bec9fbb2b19f3f8e814, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300002, guid: 79bb6737981640c8ad476c6ca43c2948, type: 3} + m_Bones: + - {fileID: 4000013449772102} + - {fileID: 4000013463439578} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 4000013449772102} + m_AABB: + m_Center: {x: 0, y: 0.000000029802322, z: -0.34499973} + m_Extent: {x: 0.1025, y: 0.48790336, z: 0.34499973} + m_DirtyAABB: 0 +--- !u!137 &137000012467287548 +SkinnedMeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000010627582080} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: 5533073c4b0c4bec9fbb2b19f3f8e814, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300010, guid: 79bb6737981640c8ad476c6ca43c2948, type: 3} + m_Bones: + - {fileID: 4000010411813178} + - {fileID: 4000010787082106} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 4000010411813178} + m_AABB: + m_Center: {x: 0, y: 0, z: -0.34499964} + m_Extent: {x: 0.1025, y: 0.48790327, z: 0.34499964} + m_DirtyAABB: 0 +--- !u!137 &137000012811968416 +SkinnedMeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000011686294758} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: 5533073c4b0c4bec9fbb2b19f3f8e814, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300014, guid: 79bb6737981640c8ad476c6ca43c2948, type: 3} + m_Bones: + - {fileID: 4000013458491836} + - {fileID: 4000012976400574} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 4000013458491836} + m_AABB: + m_Center: {x: 0, y: 0.000000029802322, z: -0.34499973} + m_Extent: {x: 0.1025, y: 0.48790336, z: 0.34499973} + m_DirtyAABB: 0 +--- !u!137 &137000014164134944 +SkinnedMeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1000012942637454} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: 5533073c4b0c4bec9fbb2b19f3f8e814, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300002, guid: 79bb6737981640c8ad476c6ca43c2948, type: 3} + m_Bones: + - {fileID: 4000011946381988} + - {fileID: 4000011681230980} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 4000011946381988} + m_AABB: + m_Center: {x: 0, y: 0, z: -0.34499964} + m_Extent: {x: 0.1025, y: 0.48790327, z: 0.34499964} + m_DirtyAABB: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/DefaultCursor.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/DefaultCursor.prefab.meta new file mode 100644 index 00000000..296873e5 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/DefaultCursor.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 79f96834fcc44889b558cc13518979a0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/MouseCursor.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/MouseCursor.prefab new file mode 100644 index 00000000..8bfa4b2e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/MouseCursor.prefab @@ -0,0 +1,149 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1151083198953756 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4512687923801402} + - component: {fileID: 114383503927128622} + - component: {fileID: 114512740514387886} + m_Layer: 2 + m_Name: MouseCursor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4512687923801402 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1151083198953756} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4183008042518438} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &114383503927128622 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1151083198953756} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 66177b5ac94548f694436d9a602ff4a8, type: 3} + m_Name: + m_EditorClassIdentifier: + surfaceCursorDistance: 0.02 + useUnscaledTime: 1 + positionLerpTime: 0 + scaleLerpTime: 0 + rotationLerpTime: 0 + lookRotationBlend: 0.5 + PrimaryCursorVisual: {fileID: 4183008042518438} + CursorStateData: [] + targetRenderer: {fileID: 23618217082719568} + fixedSize: 0.000625 + fixedSizeOffset: {x: -0.5, y: -0.5, z: 0} +--- !u!114 &114512740514387886 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1151083198953756} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cbf9a83277454a9c994dc902a319e222, type: 3} + m_Name: + m_EditorClassIdentifier: + radius: 0.15 + color: {r: 0.3, g: 0.3, b: 0.3, a: 1} +--- !u!1 &1661198717155778 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4183008042518438} + - component: {fileID: 33403821616932028} + - component: {fileID: 23618217082719568} + m_Layer: 2 + m_Name: CursorVisual + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4183008042518438 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1661198717155778} + m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} + m_LocalPosition: {x: -0.5, y: -0.5, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4512687923801402} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!33 &33403821616932028 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1661198717155778} + m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} +--- !u!23 &23618217082719568 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1661198717155778} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0960cb9581944fca975b858244c928e1, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/MouseCursor.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/MouseCursor.prefab.meta new file mode 100644 index 00000000..a49b6e0a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/MouseCursor.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6c1001b7dc77435cbc62c5fd7fa5a923 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/TeleportCursor.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/TeleportCursor.prefab new file mode 100644 index 00000000..e10bd3bb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/TeleportCursor.prefab @@ -0,0 +1,362 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1554777696564956} + m_IsPrefabParent: 1 +--- !u!1 &1079717460632000 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4831552014908524} + - component: {fileID: 33165240590171636} + - component: {fileID: 23495989623814882} + m_Layer: 2 + m_Name: TeleportArrow + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1395885122881264 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4243005549109458} + - component: {fileID: 33382737216306974} + - component: {fileID: 23087410097422824} + m_Layer: 2 + m_Name: TeleportMid + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1466073170848862 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4225457691201094} + - component: {fileID: 33280264951525114} + - component: {fileID: 23246995948268934} + - component: {fileID: 95503996994707058} + m_Layer: 2 + m_Name: TeleportBase + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1554777696564956 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4492646588632774} + - component: {fileID: 114535584400613712} + m_Layer: 2 + m_Name: TeleportCursor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4225457691201094 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1466073170848862} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4831552014908524} + - {fileID: 4243005549109458} + m_Father: {fileID: 4492646588632774} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4243005549109458 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1395885122881264} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4225457691201094} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4492646588632774 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1554777696564956} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.4, y: 0.4, z: 0.4} + m_Children: + - {fileID: 4225457691201094} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4831552014908524 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1079717460632000} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4225457691201094} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &23087410097422824 +MeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1395885122881264} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: 9430474f631c4b04ab2eaa94f2a86098, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!23 &23246995948268934 +MeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1466073170848862} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: 1379b3c5007947398a4512cc49f5c4c8, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!23 &23495989623814882 +MeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1079717460632000} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: 1379b3c5007947398a4512cc49f5c4c8, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &33165240590171636 +MeshFilter: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1079717460632000} + m_Mesh: {fileID: 4300002, guid: 97fd89602e4140dba99a6f1d461d0248, type: 3} +--- !u!33 &33280264951525114 +MeshFilter: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1466073170848862} + m_Mesh: {fileID: 4300000, guid: 97fd89602e4140dba99a6f1d461d0248, type: 3} +--- !u!33 &33382737216306974 +MeshFilter: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1395885122881264} + m_Mesh: {fileID: 4300004, guid: 97fd89602e4140dba99a6f1d461d0248, type: 3} +--- !u!95 &95503996994707058 +Animator: + serializedVersion: 3 + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1466073170848862} + m_Enabled: 0 + m_Avatar: {fileID: 9000000, guid: 97fd89602e4140dba99a6f1d461d0248, type: 3} + m_Controller: {fileID: 9100000, guid: 382528586dea4be993a8c1d11a635a32, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorControllerStateOnDisable: 0 +--- !u!114 &114535584400613712 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1554777696564956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 86851373ab9d4ff8882eab6bd20678d9, type: 3} + m_Name: + m_EditorClassIdentifier: + surfaceCursorDistance: 0.02 + useUnscaledTime: 1 + positionLerpTime: 0.01 + scaleLerpTime: 0.01 + rotationLerpTime: 0.01 + lookRotationBlend: 0.5 + PrimaryCursorVisual: {fileID: 4225457691201094} + defaultCursorDistance: 10 + cursorStateData: + - name: None + cursorState: 5 + parameter: + parameterType: 4 + defaultInt: 0 + defaultFloat: 0 + defaultBool: 1 + name: Disabled + - name: None + cursorState: 5 + parameter: + parameterType: 4 + defaultInt: 0 + defaultFloat: 0 + defaultBool: 0 + name: Valid + - name: Invalid + cursorState: 0 + parameter: + parameterType: 4 + defaultInt: 0 + defaultFloat: 0 + defaultBool: 0 + name: Disabled + - name: Invalid + cursorState: 0 + parameter: + parameterType: 4 + defaultInt: 0 + defaultFloat: 0 + defaultBool: 0 + name: Valid + - name: Valid + cursorState: 1 + parameter: + parameterType: 4 + defaultInt: 0 + defaultFloat: 0 + defaultBool: 0 + name: Disabled + - name: Valid + cursorState: 1 + parameter: + parameterType: 4 + defaultInt: 0 + defaultFloat: 0 + defaultBool: 0 + name: Valid + inputEnabledParameter: + parameterType: 0 + defaultInt: 0 + defaultFloat: 0 + defaultBool: 0 + name: + inputDisabledParameter: + parameterType: 0 + defaultInt: 0 + defaultFloat: 0 + defaultBool: 0 + name: + cursorAnimator: {fileID: 95503996994707058} + arrowTransform: {fileID: 4831552014908524} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/TeleportCursor.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/TeleportCursor.prefab.meta new file mode 100644 index 00000000..c918da67 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Cursors/TeleportCursor.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dbcafce56f49455588eb636dbf45d3e6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands.meta new file mode 100644 index 00000000..d7a3aa36 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c82917b8da9d88940808a4113d85bce5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultLeftHandControllerVisualizer.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultLeftHandControllerVisualizer.prefab new file mode 100644 index 00000000..3d861bc6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultLeftHandControllerVisualizer.prefab @@ -0,0 +1,57 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7398244499265140811 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1355368130211572882} + - component: {fileID: 3076132558849983539} + m_Layer: 0 + m_Name: DefaultLeftHandControllerVisualizer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1355368130211572882 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7398244499265140811} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3076132558849983539 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7398244499265140811} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: aaa953e22a23b764ebaedb977c249dfd, type: 3} + m_Name: + m_EditorClassIdentifier: + handedness: 1 + destroyOnSourceLost: 1 + useSourcePoseData: 1 + poseAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + jointsModePrefab: {fileID: 9173983480249558903, guid: 081f7848cfd94b34f9c774490cd7e2fb, + type: 3} + meshModePrefab: {fileID: 1887883006053652, guid: 12df5e0d0c33a444a985de4e29533a24, + type: 3} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultLeftHandControllerVisualizer.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultLeftHandControllerVisualizer.prefab.meta new file mode 100644 index 00000000..2961d396 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultLeftHandControllerVisualizer.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 61feeca21178ba54682d3c61ff5f89a1 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultRightHandControllerVisualizer.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultRightHandControllerVisualizer.prefab new file mode 100644 index 00000000..cb4ed892 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultRightHandControllerVisualizer.prefab @@ -0,0 +1,63 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &888890962389326207 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 7398244499265140811, guid: 61feeca21178ba54682d3c61ff5f89a1, + type: 3} + propertyPath: m_Name + value: DefaultRightHandControllerVisualizer + objectReference: {fileID: 0} + - target: {fileID: 1355368130211572882, guid: 61feeca21178ba54682d3c61ff5f89a1, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1355368130211572882, guid: 61feeca21178ba54682d3c61ff5f89a1, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1355368130211572882, guid: 61feeca21178ba54682d3c61ff5f89a1, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1355368130211572882, guid: 61feeca21178ba54682d3c61ff5f89a1, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3076132558849983539, guid: 61feeca21178ba54682d3c61ff5f89a1, + type: 3} + propertyPath: handedness + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3076132558849983539, guid: 61feeca21178ba54682d3c61ff5f89a1, + type: 3} + propertyPath: jointsModePrefab + value: + objectReference: {fileID: 359003569130992022, guid: 1d9336d86c602194bb2bd581c9389ce7, + type: 3} + - target: {fileID: 3076132558849983539, guid: 61feeca21178ba54682d3c61ff5f89a1, + type: 3} + propertyPath: meshModePrefab + value: + objectReference: {fileID: 3866922547383302811, guid: ea935581bf93125478b7586a9a3c3f76, + type: 3} + - target: {fileID: 4191434239757458300, guid: 61feeca21178ba54682d3c61ff5f89a1, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2089245550809874106, guid: 61feeca21178ba54682d3c61ff5f89a1, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 61feeca21178ba54682d3c61ff5f89a1, type: 3} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultRightHandControllerVisualizer.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultRightHandControllerVisualizer.prefab.meta new file mode 100644 index 00000000..687b936f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/DefaultRightHandControllerVisualizer.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 79eeb06cd1ed4224eb6387ce28855a3c +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandFingertip.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandFingertip.prefab new file mode 100644 index 00000000..3e462c9b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandFingertip.prefab @@ -0,0 +1,79 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4719395302953375155 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8585533104762398624} + - component: {fileID: 756312687984975254} + - component: {fileID: 6431842901964939631} + m_Layer: 0 + m_Name: FingerTip + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8585533104762398624 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4719395302953375155} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &756312687984975254 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4719395302953375155} + m_Mesh: {fileID: -462981019419857548, guid: 72500308e7269a541a614e209f617b67, type: 3} +--- !u!23 &6431842901964939631 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4719395302953375155} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 670224309865224971, guid: 72500308e7269a541a614e209f617b67, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandFingertip.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandFingertip.prefab.meta new file mode 100644 index 00000000..38ff0198 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandFingertip.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ceff11f7c8b644246b621c521c0ba767 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJoint.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJoint.prefab new file mode 100644 index 00000000..d84db5d3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJoint.prefab @@ -0,0 +1,79 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3141352679402889276 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2144569146100224559} + - component: {fileID: 6960327490696783897} + - component: {fileID: 3721246058514601184} + m_Layer: 0 + m_Name: Joint + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2144569146100224559 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3141352679402889276} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &6960327490696783897 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3141352679402889276} + m_Mesh: {fileID: -5495902117074765545, guid: 10b5a1338a57aa34498fd379f7ada762, type: 3} +--- !u!23 &3721246058514601184 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3141352679402889276} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 670224309865224971, guid: 10b5a1338a57aa34498fd379f7ada762, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJoint.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJoint.prefab.meta new file mode 100644 index 00000000..74c70f47 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJoint.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ecbaba8bdbeef32459e87a1ce06bfd36 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJointGizmo.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJointGizmo.prefab new file mode 100644 index 00000000..83eedd37 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJointGizmo.prefab @@ -0,0 +1,81 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1370450866519632 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4607474556101662} + - component: {fileID: 4466896398402103566} + - component: {fileID: 5301240126761059008} + m_Layer: 0 + m_Name: HandJointGizmo + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4607474556101662 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1370450866519632} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.2, y: 0.2, z: 0.2} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4466896398402103566 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1370450866519632} + m_Mesh: {fileID: 4300000, guid: a481711e38d94bbeaa22998e03d9e773, type: 3} +--- !u!23 &5301240126761059008 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1370450866519632} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 36cd90e9eaa94b7d8d3933d2c2afb2ff, type: 2} + - {fileID: 2100000, guid: 86884506517247c991a07caf162eeba4, type: 2} + - {fileID: 2100000, guid: cff739f75e6f4d2aa27638b66200ef95, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJointGizmo.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJointGizmo.prefab.meta new file mode 100644 index 00000000..3f462e82 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandJointGizmo.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7644fc8494afb074f9d76648ac4da6f7 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Joints.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Joints.prefab new file mode 100644 index 00000000..e0f51c7f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Joints.prefab @@ -0,0 +1,54 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &9173983480249558903 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 807390424017236910} + - component: {fileID: 9139330355909210076} + m_Layer: 0 + m_Name: HandLeft_Joints + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &807390424017236910 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9173983480249558903} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &9139330355909210076 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9173983480249558903} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 71894c53357d52a44b03004f02e70846, type: 3} + m_Name: + m_EditorClassIdentifier: + wristPrefab: {fileID: 3141352679402889276, guid: ecbaba8bdbeef32459e87a1ce06bfd36, + type: 3} + jointPrefab: {fileID: 3141352679402889276, guid: ecbaba8bdbeef32459e87a1ce06bfd36, + type: 3} + palmPrefab: {fileID: 6797406804172968804, guid: 80997b0aa2ab2d7429bb5e7f1cddbace, + type: 3} + fingertipPrefab: {fileID: 4719395302953375155, guid: ceff11f7c8b644246b621c521c0ba767, + type: 3} + indexFingertipColor: {r: 0, g: 1, b: 1, a: 1} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Joints.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Joints.prefab.meta new file mode 100644 index 00000000..9168732a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Joints.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 081f7848cfd94b34f9c774490cd7e2fb +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Mesh.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Mesh.prefab new file mode 100644 index 00000000..be93bee2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Mesh.prefab @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1887883006053652 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4948917796815494} + - component: {fileID: 33106465735047394} + - component: {fileID: 23983223512971934} + - component: {fileID: 6134017444622410916} + m_Layer: 0 + m_Name: HandLeft_Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4948917796815494 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1887883006053652} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &33106465735047394 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1887883006053652} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!23 &23983223512971934 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1887883006053652} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: cc7d7542bfb388946a8765a44cfa392c, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!114 &6134017444622410916 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1887883006053652} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 57c0d58f2329ea049bddab9f316fb39b, type: 3} + m_Name: + m_EditorClassIdentifier: + meshFilter: {fileID: 33106465735047394} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Mesh.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Mesh.prefab.meta new file mode 100644 index 00000000..933d3101 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandLeft_Mesh.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 12df5e0d0c33a444a985de4e29533a24 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandPalm.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandPalm.prefab new file mode 100644 index 00000000..8c7a72e2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandPalm.prefab @@ -0,0 +1,79 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6797406804172968804 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6797406804172968805} + - component: {fileID: 4145994995401023760} + - component: {fileID: 7689053107332259305} + m_Layer: 0 + m_Name: HandPalm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6797406804172968805 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6797406804172968804} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4145994995401023760 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6797406804172968804} + m_Mesh: {fileID: 2534964839176971238, guid: b29899fb366138c4690e5bfc1e36a931, type: 3} +--- !u!23 &7689053107332259305 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6797406804172968804} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 670224309865224971, guid: b29899fb366138c4690e5bfc1e36a931, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandPalm.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandPalm.prefab.meta new file mode 100644 index 00000000..1c138808 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandPalm.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 80997b0aa2ab2d7429bb5e7f1cddbace +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Joints.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Joints.prefab new file mode 100644 index 00000000..93905054 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Joints.prefab @@ -0,0 +1,36 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &8911469753042065121 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 9173983480249558903, guid: 081f7848cfd94b34f9c774490cd7e2fb, + type: 3} + propertyPath: m_Name + value: HandLeft_Joints + objectReference: {fileID: 0} + - target: {fileID: 807390424017236910, guid: 081f7848cfd94b34f9c774490cd7e2fb, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 807390424017236910, guid: 081f7848cfd94b34f9c774490cd7e2fb, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 807390424017236910, guid: 081f7848cfd94b34f9c774490cd7e2fb, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 807390424017236910, guid: 081f7848cfd94b34f9c774490cd7e2fb, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 081f7848cfd94b34f9c774490cd7e2fb, type: 3} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Joints.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Joints.prefab.meta new file mode 100644 index 00000000..40cb5234 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Joints.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1d9336d86c602194bb2bd581c9389ce7 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Mesh.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Mesh.prefab new file mode 100644 index 00000000..759601c9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Mesh.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &3867647138407053199 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 1887883006053652, guid: 12df5e0d0c33a444a985de4e29533a24, type: 3} + propertyPath: m_Name + value: HandLeft_Mesh + objectReference: {fileID: 0} + - target: {fileID: 4948917796815494, guid: 12df5e0d0c33a444a985de4e29533a24, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4948917796815494, guid: 12df5e0d0c33a444a985de4e29533a24, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4948917796815494, guid: 12df5e0d0c33a444a985de4e29533a24, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4948917796815494, guid: 12df5e0d0c33a444a985de4e29533a24, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4948917796815494, guid: 12df5e0d0c33a444a985de4e29533a24, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4948917796815494, guid: 12df5e0d0c33a444a985de4e29533a24, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4948917796815494, guid: 12df5e0d0c33a444a985de4e29533a24, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4948917796815494, guid: 12df5e0d0c33a444a985de4e29533a24, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4948917796815494, guid: 12df5e0d0c33a444a985de4e29533a24, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4948917796815494, guid: 12df5e0d0c33a444a985de4e29533a24, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4948917796815494, guid: 12df5e0d0c33a444a985de4e29533a24, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 12df5e0d0c33a444a985de4e29533a24, type: 3} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Mesh.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Mesh.prefab.meta new file mode 100644 index 00000000..7ac7fcc5 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Hands/HandRight_Mesh.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ea935581bf93125478b7586a9a3c3f76 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers.meta new file mode 100644 index 00000000..30af0a76 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b6be60dc193b407b80cb9827a32613b1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/DefaultControllerPointer.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/DefaultControllerPointer.prefab new file mode 100644 index 00000000..ae69244b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/DefaultControllerPointer.prefab @@ -0,0 +1,554 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1247086986094436 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4215223911988956} + - component: {fileID: 6863193991115524521} + - component: {fileID: 1307499967629831868} + - component: {fileID: 2507312044101632756} + - component: {fileID: 3080660041806603478} + - component: {fileID: 1526809385130449531} + m_Layer: 0 + m_Name: DefaultControllerPointer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4215223911988956 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &6863193991115524521 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c85a4527bbdd25647a62ec06e8d2daf3, type: 3} + m_Name: + m_EditorClassIdentifier: + lineStartClamp: 0.0001 + lineEndClamp: 0.9999 + customLineTransform: {fileID: 0} + loops: 0 + transformMode: 1 + rotationMode: 1 + flipUpVector: 0 + originOffset: {x: 0, y: 0, z: 0} + manualUpVectorBlend: 0 + manualUpVectors: + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + velocitySearchRange: 0.02 + distorters: + - {fileID: 1307499967629831868} + distortionMode: 0 + distortionStrength: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + uniformDistortionStrength: 1 + inertia: + inertia: 10 + dampen: 6 + seekTargetStrength: 1.5 + p1Target: {x: 0, y: 0, z: 0.33} + p2Target: {x: 0, y: 0, z: 0.66} + controlPoints: + Point1: {x: 0, y: 0, z: 0} + Point2: {x: 0, y: 0, z: 0.33} + Point3: {x: 0, y: 0, z: 0.66} + Point4: {x: 0, y: 0, z: 1} + useLocalTangentPoints: 0 +--- !u!114 &1307499967629831868 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 61988acbae5840069797ec6d990d8f50, type: 3} + m_Name: + m_EditorClassIdentifier: + distortOrder: 0 + distortStrength: 1 + localCenterOfGravity: {x: 0, y: 0, z: 0} + axisStrength: {x: 1, y: 1, z: 1} + radius: 0.5 + gravityStrength: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!114 &2507312044101632756 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5757f43d086c4d228b8793da4f53aba3, type: 3} + m_Name: + m_EditorClassIdentifier: + handedness: 1 + destroyOnSourceLost: 1 + useSourcePoseData: 0 + poseAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + cursorPrefab: {fileID: 1000012072213228, guid: 79f96834fcc44889b558cc13518979a0, + type: 3} + disableCursorOnStart: 0 + setCursorVisibilityOnSourceDetected: 0 + raycastOrigin: {fileID: 0} + activeHoldAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + pointerAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + requiresHoldAction: 0 + enablePointerOnStart: 0 + interactionMode: -1 + nearInteractionCollider: {fileID: 0} + overrideGlobalPointerExtent: 0 + defaultPointerExtent: 10 + pointerOrientation: 0 + lineColorSelected: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 0} + key1: {r: 0.8490566, g: 0.8490566, b: 0.8490566, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 3277 + atime2: 49151 + atime3: 65535 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + lineColorValid: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 0} + key1: {r: 0.14122522, g: 1, b: 0, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 3277 + atime2: 49151 + atime3: 65535 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + lineColorInvalid: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 0} + key1: {r: 1, g: 0, b: 0, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 3277 + atime2: 49151 + atime3: 65535 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + lineColorNoTarget: + serializedVersion: 2 + key0: {r: 0.754717, g: 0.754717, b: 0.754717, a: 0} + key1: {r: 0.754717, g: 0.754717, b: 0.754717, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 3277 + atime2: 65535 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 3 + lineColorLockFocus: + serializedVersion: 2 + key0: {r: 0, g: 0.9806142, b: 1, a: 0} + key1: {r: 0, g: 0.9806142, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 3277 + atime2: 49151 + atime3: 65535 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + lineCastResolution: 2 + lineBase: {fileID: 6863193991115524521} + lineRenderers: + - {fileID: 1526809385130449531} +--- !u!120 &3080660041806603478 +LineRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 0 + m_MotionVectors: 0 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 49bbec7a7ebd47c786bf06ad0977ec1c, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Positions: + - {x: 0, y: 0, z: 0.00009899999} + - {x: 0, y: 0, z: 0.06608878} + - {x: 0, y: 0, z: 0.13209635} + - {x: 0, y: 0, z: 0.19813946} + - {x: 0, y: 0, z: 0.26423594} + - {x: 0, y: 0, z: 0.3304035} + - {x: 0, y: 0, z: 0.3966599} + - {x: 0, y: 0, z: 0.46302295} + - {x: 0, y: 0, z: 0.52951044} + - {x: 0, y: 0, z: 0.59614} + - {x: 0, y: 0, z: 0.66292953} + - {x: 0, y: 0, z: 0.7298968} + - {x: 0, y: 0, z: 0.7970595} + - {x: 0, y: 0, z: 0.8644354} + - {x: 0, y: 0, z: 0.93204236} + - {x: 0, y: 0, z: 0.999898} + m_Parameters: + serializedVersion: 3 + widthMultiplier: 0.01 + widthCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.2 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + colorGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 0} + key1: {r: 0.4716981, g: 0.4716981, b: 0.4716981, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 1} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 9638 + atime2: 53970 + atime3: 65535 + atime4: 65535 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + numCornerVertices: 8 + numCapVertices: 8 + alignment: 0 + textureMode: 3 + shadowBias: 0 + generateLightingData: 0 + m_UseWorldSpace: 1 + m_Loop: 0 +--- !u!114 &1526809385130449531 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01f6e868e3234547a04741fe2c20bd0d, type: 3} + m_Name: + m_EditorClassIdentifier: + lineDataSource: {fileID: 6863193991115524521} + lineColor: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 0} + key1: {r: 0.4716981, g: 0.4716981, b: 0.4716981, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 1} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 9638 + atime2: 53970 + atime3: 65535 + atime4: 65535 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + lineWidth: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.2 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + widthMultiplier: 0.01 + colorOffset: 0 + widthOffset: 0 + stepMode: 0 + lineStepCount: 16 + pointDistributionMode: 1 + customPointDistributionLength: 0.1 + customPointDistributionCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + lineMaterial: {fileID: 2100000, guid: 49bbec7a7ebd47c786bf06ad0977ec1c, type: 2} + roundedEdges: 1 + roundedCaps: 1 + lineRenderer: {fileID: 3080660041806603478} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/DefaultControllerPointer.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/DefaultControllerPointer.prefab.meta new file mode 100644 index 00000000..9a5bfe3d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/DefaultControllerPointer.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 54d78dc3333741c5b7f30fe3506096ba +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerNearPointer.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerNearPointer.prefab new file mode 100644 index 00000000..b468f24f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerNearPointer.prefab @@ -0,0 +1,105 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7751017874127228719 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7753987110195811991} + - component: {fileID: 7751017874127228716} + - component: {fileID: -3895640563058625731} + - component: {fileID: -5168941210383110042} + m_Layer: 0 + m_Name: HandControllerNearPointer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7753987110195811991 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7751017874127228719} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7751017874127228716 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7751017874127228719} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3b094d01f2addc47b44a1e30fa7a32a, type: 3} + m_Name: + m_EditorClassIdentifier: + handedness: 1 + destroyOnSourceLost: 1 + useSourcePoseData: 0 + poseAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 15 + description: Index Finger Pose + axisConstraint: 7 + cursorPrefab: {fileID: 0} + disableCursorOnStart: 0 + setCursorVisibilityOnSourceDetected: 0 + raycastOrigin: {fileID: 0} + activeHoldAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + pointerAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + requiresHoldAction: 0 + enablePointerOnStart: 1 + interactionMode: 2 + nearInteractionCollider: {fileID: -5168941210383110042} + overrideGlobalPointerExtent: 0 + defaultPointerExtent: 0.5 + pointerOrientation: 0 +--- !u!54 &-3895640563058625731 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7751017874127228719} + serializedVersion: 2 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_UseGravity: 0 + m_IsKinematic: 0 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 2 +--- !u!135 &-5168941210383110042 +SphereCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7751017874127228719} + m_Material: {fileID: 0} + m_IsTrigger: 1 + m_Enabled: 1 + serializedVersion: 2 + m_Radius: 0.01 + m_Center: {x: 0, y: 0, z: 0} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerNearPointer.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerNearPointer.prefab.meta new file mode 100644 index 00000000..8ef8d839 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerNearPointer.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: dffe173621ec68b4abb66b6cfbe5c7f2 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerSpatialPointer.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerSpatialPointer.prefab new file mode 100644 index 00000000..9476777c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerSpatialPointer.prefab @@ -0,0 +1,663 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1247086986094436 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4215223911988956} + - component: {fileID: 6863193991115524521} + - component: {fileID: 1307499967629831868} + - component: {fileID: 2271079586809481026} + - component: {fileID: 3080660041806603478} + - component: {fileID: 1526809385130449531} + m_Layer: 0 + m_Name: HandControllerSpatialPointer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4215223911988956 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6392329022490078173} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &6863193991115524521 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c85a4527bbdd25647a62ec06e8d2daf3, type: 3} + m_Name: + m_EditorClassIdentifier: + lineStartClamp: 0.155 + lineEndClamp: 0.9999 + customLineTransform: {fileID: 0} + loops: 0 + transformMode: 1 + rotationMode: 1 + flipUpVector: 0 + originOffset: {x: 0, y: 0, z: 0} + manualUpVectorBlend: 0 + manualUpVectors: + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + velocitySearchRange: 0.02 + distorters: + - {fileID: 1307499967629831868} + distortionMode: 0 + distortionStrength: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + uniformDistortionStrength: 1 + inertia: + inertia: 10 + dampen: 6 + seekTargetStrength: 1.5 + p1Target: {x: 0, y: 0, z: 0.33} + p2Target: {x: 0, y: 0, z: 0.66} + controlPoints: + Point1: {x: 0, y: 0, z: 0} + Point2: {x: 0, y: 0, z: 0.33} + Point3: {x: 0, y: 0, z: 0.66} + Point4: {x: 0, y: 0, z: 1} + useLocalTangentPoints: 0 +--- !u!114 &1307499967629831868 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 61988acbae5840069797ec6d990d8f50, type: 3} + m_Name: + m_EditorClassIdentifier: + distortOrder: 0 + distortStrength: 1 + localCenterOfGravity: {x: 0, y: 0, z: 0} + axisStrength: {x: 1, y: 1, z: 1} + radius: 0.5 + gravityStrength: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!114 &2271079586809481026 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3d1a1d7915ba964419ef4bddb15415ac, type: 3} + m_Name: + m_EditorClassIdentifier: + handedness: 1 + destroyOnSourceLost: 1 + useSourcePoseData: 0 + poseAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + cursorPrefab: {fileID: 1000012072213228, guid: 79f96834fcc44889b558cc13518979a0, + type: 3} + disableCursorOnStart: 0 + setCursorVisibilityOnSourceDetected: 0 + raycastOrigin: {fileID: 0} + activeHoldAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + pointerAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + requiresHoldAction: 0 + enablePointerOnStart: 0 + interactionMode: 1 + nearInteractionCollider: {fileID: 0} + overrideGlobalPointerExtent: 0 + defaultPointerExtent: 10 + pointerOrientation: 0 + lineColorSelected: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 0} + key1: {r: 0.8490566, g: 0.8490566, b: 0.8490566, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 3277 + atime2: 49151 + atime3: 65535 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + lineColorValid: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 0} + key1: {r: 0.14122522, g: 1, b: 0, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 3277 + atime2: 49151 + atime3: 65535 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + lineColorInvalid: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 0} + key1: {r: 1, g: 0, b: 0, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 3277 + atime2: 49151 + atime3: 65535 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + lineColorNoTarget: + serializedVersion: 2 + key0: {r: 0.754717, g: 0.754717, b: 0.754717, a: 0} + key1: {r: 0.754717, g: 0.754717, b: 0.754717, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 3277 + atime2: 65535 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 3 + lineColorLockFocus: + serializedVersion: 2 + key0: {r: 0, g: 0.9806142, b: 1, a: 0} + key1: {r: 0, g: 0.9806142, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 3277 + atime2: 49151 + atime3: 65535 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + lineCastResolution: 2 + lineBase: {fileID: 6863193991115524521} + lineRenderers: + - {fileID: 1526809385130449531} + pointerPoseTransform: {fileID: 6392329022490078173} + offsetStart: {x: 0, y: 0, z: 0.03} + offsetEnd: {x: 0, y: 0, z: 0.05} +--- !u!120 &3080660041806603478 +LineRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 0 + m_MotionVectors: 0 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 49bbec7a7ebd47c786bf06ad0977ec1c, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Positions: + - {x: 0, y: 0, z: 0.15348725} + - {x: 0, y: 0, z: 0.2093078} + - {x: 0, y: 0, z: 0.26516858} + - {x: 0, y: 0, z: 0.32108033} + - {x: 0, y: 0, z: 0.37705365} + - {x: 0, y: 0, z: 0.43309948} + - {x: 0, y: 0, z: 0.48922837} + - {x: 0, y: 0, z: 0.54545105} + - {x: 0, y: 0, z: 0.60177845} + - {x: 0, y: 0, z: 0.65822107} + - {x: 0, y: 0, z: 0.7147896} + - {x: 0, y: 0, z: 0.7714949} + - {x: 0, y: 0, z: 0.8283477} + - {x: 0, y: 0, z: 0.8853587} + - {x: 0, y: 0, z: 0.9425385} + - {x: 0, y: 0, z: 0.999898} + m_Parameters: + serializedVersion: 3 + widthMultiplier: 0.01 + widthCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.2 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + colorGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 0} + key1: {r: 0.4716981, g: 0.4716981, b: 0.4716981, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 1} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 9638 + atime2: 53970 + atime3: 65535 + atime4: 65535 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + numCornerVertices: 8 + numCapVertices: 8 + alignment: 0 + textureMode: 3 + shadowBias: 0 + generateLightingData: 0 + m_UseWorldSpace: 1 + m_Loop: 0 +--- !u!114 &1526809385130449531 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01f6e868e3234547a04741fe2c20bd0d, type: 3} + m_Name: + m_EditorClassIdentifier: + lineDataSource: {fileID: 6863193991115524521} + lineColor: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 0} + key1: {r: 0.4716981, g: 0.4716981, b: 0.4716981, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 1} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 9638 + atime2: 53970 + atime3: 65535 + atime4: 65535 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + lineWidth: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.2 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + widthMultiplier: 0.01 + colorOffset: 0 + widthOffset: 0 + stepMode: 0 + lineStepCount: 16 + pointDistributionMode: 1 + customPointDistributionLength: 0.1 + customPointDistributionCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + lineMaterial: {fileID: 2100000, guid: 49bbec7a7ebd47c786bf06ad0977ec1c, type: 2} + roundedEdges: 1 + roundedCaps: 1 + lineRenderer: {fileID: 3080660041806603478} +--- !u!1001 &2147277688235704519 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4215223911988956} + m_Modifications: + - target: {fileID: -927199367670048503, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_Name + value: HandSpatialPointer + objectReference: {fileID: 0} + - target: {fileID: -927199367670048503, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_Layer + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -4216859302048453862, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -4216859302048453862, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -4216859302048453862, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -4216859302048453862, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -4216859302048453862, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -4216859302048453862, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -4216859302048453862, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -4216859302048453862, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -4216859302048453862, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -4216859302048453862, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -4216859302048453862, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -1504981713932161579, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 5533073c4b0c4bec9fbb2b19f3f8e814, type: 2} + - target: {fileID: -1504981713932161579, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_ReceiveShadows + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -1504981713932161579, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_CastShadows + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -1504981713932161579, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_LightProbeUsage + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -1504981713932161579, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + propertyPath: m_ReflectionProbeUsage + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 020718e6e118ec3489dbc21ec763a517, type: 3} +--- !u!4 &6392329022490078173 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -4216859302048453862, guid: 020718e6e118ec3489dbc21ec763a517, + type: 3} + m_PrefabInstance: {fileID: 2147277688235704519} + m_PrefabAsset: {fileID: 0} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerSpatialPointer.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerSpatialPointer.prefab.meta new file mode 100644 index 00000000..21470633 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/HandControllerSpatialPointer.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3c6b5e276e9a37446b574ff0ee1eee58 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/MousePointer.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/MousePointer.prefab new file mode 100644 index 00000000..69b81495 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/MousePointer.prefab @@ -0,0 +1,79 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1247086986094436 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4215223911988956} + - component: {fileID: 114035756607602504} + m_Layer: 0 + m_Name: MousePointer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4215223911988956 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &114035756607602504 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fa7a89da9d654af39c86c400d26176a4, type: 3} + m_Name: + m_EditorClassIdentifier: + handedness: 0 + destroyOnSourceLost: 0 + useSourcePoseData: 0 + poseAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 12 + description: Mouse Delta + axisConstraint: 4 + cursorPrefab: {fileID: 1151083198953756, guid: 6c1001b7dc77435cbc62c5fd7fa5a923, + type: 3} + disableCursorOnStart: 0 + setCursorVisibilityOnSourceDetected: 0 + raycastOrigin: {fileID: 0} + activeHoldAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + pointerAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + requiresHoldAction: 0 + enablePointerOnStart: 1 + interactionMode: 1 + nearInteractionCollider: {fileID: 0} + overrideGlobalPointerExtent: 0 + defaultPointerExtent: 10 + pointerOrientation: 0 + hideCursorWhenInactive: 0 + movementThresholdToUnHide: 0.1 + hideTimeout: 3 + speed: 0.25 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/MousePointer.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/MousePointer.prefab.meta new file mode 100644 index 00000000..bab941f2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/MousePointer.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 58ab5073b9b5477fbda6f619d37be0f0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/ParabolicPointer.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/ParabolicPointer.prefab new file mode 100644 index 00000000..5257cbf1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/ParabolicPointer.prefab @@ -0,0 +1,869 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1196247974088106 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4133029787660532} + - component: {fileID: 114203474425088848} + - component: {fileID: 120827243805602862} + - component: {fileID: 114102700686190618} + - component: {fileID: 114225980339285346} + - component: {fileID: 114917070612713698} + m_Layer: 0 + m_Name: ParabolicPointer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4133029787660532 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1196247974088106} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4736427770665110} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &114203474425088848 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1196247974088106} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 373c1f3812e24dc08317763b6a4f020a, type: 3} + m_Name: + m_EditorClassIdentifier: + lineStartClamp: 0 + lineEndClamp: 1 + customLineTransform: {fileID: 4736427770665110} + loops: 0 + transformMode: 0 + rotationMode: 1 + flipUpVector: 0 + originOffset: {x: 0, y: 0, z: 0} + manualUpVectorBlend: 0 + manualUpVectors: + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + velocitySearchRange: 0.02 + distorters: + - {fileID: 114225980339285346} + distortionMode: 0 + distortionStrength: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + uniformDistortionStrength: 1 + startPoint: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + direction: {x: 0, y: 0, z: 1} + velocity: 2 + distanceMultiplier: 1 + useCustomGravity: 0 + gravity: {x: 0, y: -9.8, z: 0} +--- !u!120 &120827243805602862 +LineRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1196247974088106} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 0 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 + m_RayTracingMode: 0 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Positions: + - {x: 0, y: -1.1752903e-12, z: 0.000000011980533} + - {x: 0, y: -0.000002911862, z: 0.00073822873} + - {x: 0, y: -0.00004186905, z: 0.005374248} + - {x: 0, y: -0.00019625205, z: 0.016864533} + - {x: 0, y: -0.0005768967, z: 0.037259385} + - {x: 0, y: -0.0013086618, z: 0.06770265} + - {x: 0, y: -0.0025129768, z: 0.108430885} + - {x: 0, y: -0.0042903568, z: 0.15877199} + - {x: 0, y: -0.0067028617, z: 0.21714303} + - {x: 0, y: -0.009756485, z: 0.28104758} + - {x: 0, y: -0.013383459, z: 0.34707242} + - {x: 0, y: -0.017424474, z: 0.41088396} + - {x: 0, y: -0.021610752, z: 0.4672234} + - {x: 0, y: -0.025586097, z: 0.51070195} + - {x: 0, y: -0.029665519, z: 0.54990983} + - {x: 0, y: -0.03404655, z: 0.58911765} + - {x: 0, y: -0.038729187, z: 0.62832546} + - {x: 0, y: -0.04371344, z: 0.66753334} + - {x: 0, y: -0.0489993, z: 0.7067412} + - {x: 0, y: -0.054586757, z: 0.74594903} + - {x: 0, y: -0.060475834, z: 0.78515685} + - {x: 0, y: -0.06666653, z: 0.8243647} + - {x: 0, y: -0.07315882, z: 0.8635726} + - {x: 0, y: -0.07995272, z: 0.90278035} + - {x: 0, y: -0.08704823, z: 0.9419882} + - {x: 0, y: -0.09444536, z: 0.9811961} + - {x: 0, y: -0.1021441, z: 1.020404} + - {x: 0, y: -0.11014444, z: 1.0596118} + - {x: 0, y: -0.11844639, z: 1.0988196} + - {x: 0, y: -0.12704995, z: 1.1380274} + - {x: 0, y: -0.13595511, z: 1.1772352} + - {x: 0, y: -0.1451619, z: 1.2164431} + - {x: 0, y: -0.15467028, z: 1.255651} + - {x: 0, y: -0.16448031, z: 1.2948589} + - {x: 0, y: -0.17459191, z: 1.3340666} + - {x: 0, y: -0.18500514, z: 1.3732746} + - {x: 0, y: -0.19571997, z: 1.4124824} + - {x: 0, y: -0.20673637, z: 1.4516902} + - {x: 0, y: -0.21805444, z: 1.4908981} + - {x: 0, y: -0.22967409, z: 1.530106} + - {x: 0, y: -0.24159534, z: 1.5693138} + - {x: 0, y: -0.25381824, z: 1.6085217} + - {x: 0, y: -0.2663427, z: 1.6477294} + - {x: 0, y: -0.27916878, z: 1.6869372} + - {x: 0, y: -0.29229653, z: 1.7261451} + - {x: 0, y: -0.3057258, z: 1.765353} + - {x: 0, y: -0.31945676, z: 1.8045609} + - {x: 0, y: -0.33348927, z: 1.8437686} + - {x: 0, y: -0.34782338, z: 1.8829764} + - {x: 0, y: -0.36245918, z: 1.9221843} + - {x: 0, y: -0.37739652, z: 1.9613922} + - {x: 0, y: -0.39263546, z: 2.0005999} + - {x: 0, y: -0.4081761, z: 2.0398078} + - {x: 0, y: -0.42401823, z: 2.0790157} + - {x: 0, y: -0.44016203, z: 2.1182234} + - {x: 0, y: -0.4566075, z: 2.1574314} + - {x: 0, y: -0.47335446, z: 2.196639} + - {x: 0, y: -0.4904031, z: 2.235847} + - {x: 0, y: -0.5077533, z: 2.275055} + - {x: 0, y: -0.52540517, z: 2.3142626} + - {x: 0, y: -0.5433586, z: 2.3534706} + - {x: 0, y: -0.5616137, z: 2.3926785} + - {x: 0, y: -0.58017033, z: 2.4318862} + - {x: 0, y: -0.59902865, z: 2.4710941} + - {x: 0, y: -0.61818856, z: 2.510302} + - {x: 0, y: -0.63765013, z: 2.54951} + - {x: 0, y: -0.6574132, z: 2.5887177} + - {x: 0, y: -0.67747796, z: 2.6279256} + - {x: 0, y: -0.6978443, z: 2.6671336} + - {x: 0, y: -0.7185121, z: 2.7063413} + - {x: 0, y: -0.73948175, z: 2.7455492} + - {x: 0, y: -0.760753, z: 2.7847571} + - {x: 0, y: -0.7823256, z: 2.8239646} + - {x: 0, y: -0.80420005, z: 2.8631725} + - {x: 0, y: -0.8263761, z: 2.9023805} + - {x: 0, y: -0.8488536, z: 2.9415882} + - {x: 0, y: -0.87163275, z: 2.980796} + - {x: 0, y: -0.89471364, z: 3.020004} + - {x: 0, y: -0.9180961, z: 3.059212} + - {x: 0, y: -0.9417801, z: 3.0984197} + - {x: 0, y: -0.9657658, z: 3.1376276} + - {x: 0, y: -0.99005306, z: 3.1768355} + - {x: 0, y: -1.0146418, z: 3.216043} + - {x: 0, y: -1.0395323, z: 3.255251} + - {x: 0, y: -1.0647244, z: 3.2944589} + - {x: 0, y: -1.0902181, z: 3.3336666} + - {x: 0, y: -1.1160134, z: 3.3728745} + - {x: 0, y: -1.1421103, z: 3.4120824} + - {x: 0, y: -1.1685088, z: 3.4512901} + - {x: 0, y: -1.1952089, z: 3.490498} + - {x: 0, y: -1.2222108, z: 3.529706} + - {x: 0, y: -1.249514, z: 3.5689137} + - {x: 0, y: -1.2771189, z: 3.6081216} + - {x: 0, y: -1.3050257, z: 3.6473296} + - {x: 0, y: -1.3332336, z: 3.6865373} + - {x: 0, y: -1.3617435, z: 3.7257452} + - {x: 0, y: -1.3905549, z: 3.7649531} + - {x: 0, y: -1.4196677, z: 3.8041606} + - {x: 0, y: -1.4490825, z: 3.8433685} + - {x: 0, y: -1.4787987, z: 3.8825765} + - {x: 0, y: -1.5088166, z: 3.9217844} + - {x: 0, y: -1.5391359, z: 3.960992} + - {x: 0, y: -1.569757, z: 4.0002003} + - {x: 0, y: -1.6006798, z: 4.0394077} + - {x: 0, y: -1.6319039, z: 4.0786157} + - {x: 0, y: -1.6634299, z: 4.1178236} + - {x: 0, y: -1.6952574, z: 4.1570315} + - {x: 0, y: -1.7273862, z: 4.196239} + - {x: 0, y: -1.7598171, z: 4.235447} + - {x: 0, y: -1.7925495, z: 4.274655} + - {x: 0, y: -1.8255832, z: 4.313863} + - {x: 0, y: -1.8589188, z: 4.3530707} + - {x: 0, y: -1.8925561, z: 4.3922787} + - {x: 0, y: -1.9264946, z: 4.431486} + - {x: 0, y: -1.9607351, z: 4.470694} + - {x: 0, y: -1.9952772, z: 4.509902} + - {x: 0, y: -2.0301206, z: 4.5491095} + - {x: 0, y: -2.065266, z: 4.5883174} + - {x: 0, y: -2.1007128, z: 4.6275253} + - {x: 0, y: -2.136461, z: 4.6667333} + - {x: 0, y: -2.172511, z: 4.705941} + - {x: 0, y: -2.2088628, z: 4.745149} + - {x: 0, y: -2.2455158, z: 4.7843566} + - {x: 0, y: -2.2824707, z: 4.8235645} + - {x: 0, y: -2.3197274, z: 4.8627725} + - {x: 0, y: -2.3572855, z: 4.9019804} + - {x: 0, y: -2.395145, z: 4.941188} + - {x: 0, y: -2.4333062, z: 4.9803963} + - {x: 0, y: -2.4717693, z: 5.0196037} + - {x: 0, y: -2.510534, z: 5.058812} + - {x: 0, y: -2.5496001, z: 5.0980196} + - {x: 0, y: -2.588968, z: 5.137228} + - {x: 0, y: -2.6286373, z: 5.1764355} + - {x: 0, y: -2.6686077, z: 5.215643} + - {x: 0, y: -2.7088804, z: 5.254851} + - {x: 0, y: -2.7494547, z: 5.294059} + - {x: 0, y: -2.7903306, z: 5.3332667} + - {x: 0, y: -2.8315082, z: 5.3724747} + - {x: 0, y: -2.872987, z: 5.4116826} + - {x: 0, y: -2.9147677, z: 5.4508905} + - {x: 0, y: -2.9568493, z: 5.490098} + - {x: 0, y: -2.9992335, z: 5.529306} + - {x: 0, y: -3.041919, z: 5.568514} + - {x: 0, y: -3.084906, z: 5.607722} + - {x: 0, y: -3.1281948, z: 5.6469297} + - {x: 0, y: -3.171785, z: 5.6861377} + - {x: 0, y: -3.2156763, z: 5.725345} + - {x: 0, y: -3.25987, z: 5.764553} + - {x: 0, y: -3.3043652, z: 5.803761} + - {x: 0, y: -3.349162, z: 5.842969} + - {x: 0, y: -3.3942606, z: 5.882177} + - {x: 0, y: -3.4396603, z: 5.921385} + - {x: 0, y: -3.4853613, z: 5.9605923} + - {x: 0, y: -3.5313647, z: 5.9997997} + - {x: 0, y: -3.5776696, z: 6.039008} + - {x: 0, y: -3.624276, z: 6.0782156} + - {x: 0, y: -3.671184, z: 6.117424} + - {x: 0, y: -3.7183938, z: 6.1566315} + - {x: 0, y: -3.7659044, z: 6.195839} + - {x: 0, y: -3.8137174, z: 6.235047} + - {x: 0, y: -3.8618317, z: 6.274255} + - {x: 0, y: -3.9102478, z: 6.3134627} + - {x: 0, y: -3.9589658, z: 6.3526707} + - {x: 0, y: -4.007985, z: 6.3918786} + - {x: 0, y: -4.057306, z: 6.4310865} + - {x: 0, y: -4.106928, z: 6.470294} + - {x: 0, y: -4.156852, z: 6.509502} + - {x: 0, y: -4.2070775, z: 6.54871} + - {x: 0, y: -4.257605, z: 6.587918} + - {x: 0, y: -4.308434, z: 6.6271257} + - {x: 0, y: -4.359565, z: 6.6663337} + - {x: 0, y: -4.410996, z: 6.705541} + - {x: 0, y: -4.46273, z: 6.744749} + - {x: 0, y: -4.5147653, z: 6.783957} + - {x: 0, y: -4.5671024, z: 6.823165} + - {x: 0, y: -4.619741, z: 6.862373} + - {x: 0, y: -4.6726813, z: 6.901581} + - {x: 0, y: -4.7259226, z: 6.9407883} + - {x: 0, y: -4.779466, z: 6.9799957} + - {x: 0, y: -4.833311, z: 7.019204} + - {x: 0, y: -4.887458, z: 7.0584116} + - {x: 0, y: -4.941906, z: 7.09762} + - {x: 0, y: -4.996656, z: 7.1368275} + - {x: 0, y: -5.051707, z: 7.176035} + - {x: 0, y: -5.10706, z: 7.215243} + - {x: 0, y: -5.1627145, z: 7.254451} + - {x: 0, y: -5.2186713, z: 7.2936587} + - {x: 0, y: -5.274929, z: 7.3328667} + - {x: 0, y: -5.3314886, z: 7.3720746} + - {x: 0, y: -5.38835, z: 7.4112825} + - {x: 0, y: -5.445512, z: 7.45049} + - {x: 0, y: -5.5029764, z: 7.489698} + - {x: 0, y: -5.560742, z: 7.528906} + - {x: 0, y: -5.6188097, z: 7.568114} + - {x: 0, y: -5.677179, z: 7.6073217} + - {x: 0, y: -5.73585, z: 7.6465297} + - {x: 0, y: -5.7948213, z: 7.685737} + - {x: 0, y: -5.854096, z: 7.724945} + - {x: 0, y: -5.9136715, z: 7.764153} + - {x: 0, y: -5.9735484, z: 7.803361} + - {x: 0, y: -6.0337276, z: 7.842569} + - {x: 0, y: -6.0942082, z: 7.881777} + - {x: 0, y: -6.1549892, z: 7.9209843} + - {x: 0, y: -6.216073, z: 7.9601917} + - {x: 0, y: -6.277458, z: 7.9994} + - {x: 0, y: -6.339145, z: 8.038608} + - {x: 0, y: -6.4011335, z: 8.077816} + - {x: 0, y: -6.463424, z: 8.117023} + - {x: 0, y: -6.5260158, z: 8.156232} + - {x: 0, y: -6.588908, z: 8.195439} + - {x: 0, y: -6.6521034, z: 8.234647} + - {x: 0, y: -6.7156, z: 8.273855} + - {x: 0, y: -6.7793984, z: 8.313063} + - {x: 0, y: -6.8434978, z: 8.352271} + - {x: 0, y: -6.9079, z: 8.391479} + - {x: 0, y: -6.9726014, z: 8.430686} + - {x: 0, y: -7.0376062, z: 8.469894} + - {x: 0, y: -7.1029124, z: 8.509102} + - {x: 0, y: -7.1685205, z: 8.548309} + - {x: 0, y: -7.23443, z: 8.587518} + - {x: 0, y: -7.3006415, z: 8.626726} + - {x: 0, y: -7.3671527, z: 8.665933} + - {x: 0, y: -7.433967, z: 8.705141} + - {x: 0, y: -7.5010834, z: 8.744349} + - {x: 0, y: -7.5685005, z: 8.783557} + - {x: 0, y: -7.63622, z: 8.822764} + - {x: 0, y: -7.704241, z: 8.861973} + - {x: 0, y: -7.772562, z: 8.90118} + - {x: 0, y: -7.841186, z: 8.940388} + - {x: 0, y: -7.9101114, z: 8.979596} + - {x: 0, y: -7.9793386, z: 9.018804} + - {x: 0, y: -8.048867, z: 9.058012} + - {x: 0, y: -8.118698, z: 9.097219} + - {x: 0, y: -8.18883, z: 9.136428} + - {x: 0, y: -8.259263, z: 9.175635} + - {x: 0, y: -8.329998, z: 9.214843} + - {x: 0, y: -8.401034, z: 9.254051} + - {x: 0, y: -8.472373, z: 9.293259} + - {x: 0, y: -8.544013, z: 9.332467} + - {x: 0, y: -8.615955, z: 9.371675} + - {x: 0, y: -8.688197, z: 9.410882} + - {x: 0, y: -8.760742, z: 9.45009} + - {x: 0, y: -8.833589, z: 9.489298} + - {x: 0, y: -8.906737, z: 9.528505} + - {x: 0, y: -8.980186, z: 9.567714} + - {x: 0, y: -9.053939, z: 9.606922} + - {x: 0, y: -9.12799, z: 9.646129} + - {x: 0, y: -9.202345, z: 9.685337} + - {x: 0, y: -9.277001, z: 9.724545} + - {x: 0, y: -9.351959, z: 9.763753} + - {x: 0, y: -9.427218, z: 9.80296} + - {x: 0, y: -9.502779, z: 9.842169} + - {x: 0, y: -9.578641, z: 9.881376} + - {x: 0, y: -9.654805, z: 9.920584} + - {x: 0, y: -9.731271, z: 9.959792} + - {x: 0, y: -9.808038, z: 9.999} + m_Parameters: + serializedVersion: 3 + widthMultiplier: 0.01 + widthCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + colorGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + numCornerVertices: 8 + numCapVertices: 8 + alignment: 0 + textureMode: 0 + shadowBias: 0 + generateLightingData: 0 + m_UseWorldSpace: 1 + m_Loop: 0 +--- !u!114 &114102700686190618 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1196247974088106} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01f6e868e3234547a04741fe2c20bd0d, type: 3} + m_Name: + m_EditorClassIdentifier: + lineDataSource: {fileID: 114203474425088848} + lineColor: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + lineWidth: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + widthMultiplier: 0.01 + colorOffset: 0 + widthOffset: 0 + stepMode: 0 + lineStepCount: 256 + pointDistributionMode: 1 + customPointDistributionLength: 0.1 + customPointDistributionCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + lineMaterial: {fileID: 2100000, guid: 49bbec7a7ebd47c786bf06ad0977ec1c, type: 2} + roundedEdges: 1 + roundedCaps: 1 + lineRenderer: {fileID: 120827243805602862} +--- !u!114 &114225980339285346 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1196247974088106} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 61988acbae5840069797ec6d990d8f50, type: 3} + m_Name: + m_EditorClassIdentifier: + distortOrder: 0 + distortStrength: 1 + localCenterOfGravity: {x: 0, y: 0, z: 0} + axisStrength: {x: 1, y: 1, z: 1} + radius: 0.5 + gravityStrength: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!114 &114917070612713698 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1196247974088106} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6262e8f7bc1445a1a20241c24896bd53, type: 3} + m_Name: + m_EditorClassIdentifier: + handedness: 1 + destroyOnSourceLost: 1 + useSourcePoseData: 0 + poseAction: + profileGuid: 00000000000000000000000000000000 + id: 4 + description: Pointer Pose + axisConstraint: 7 + cursorPrefab: {fileID: 1554777696564956, guid: dbcafce56f49455588eb636dbf45d3e6, + type: 3} + disableCursorOnStart: 1 + setCursorVisibilityOnSourceDetected: 0 + raycastOrigin: {fileID: 0} + activeHoldAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + pointerAction: + profileGuid: 00000000000000000000000000000000 + id: 6 + description: Trigger + axisConstraint: 3 + requiresHoldAction: 0 + enablePointerOnStart: 0 + interactionMode: 1 + nearInteractionCollider: {fileID: 0} + overrideGlobalPointerExtent: 0 + defaultPointerExtent: 10 + pointerOrientation: 0 + lineColorSelected: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 0} + key1: {r: 0, g: 0, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 1311 + atime2: 64224 + atime3: 65535 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + lineColorValid: + serializedVersion: 2 + key0: {r: 0, g: 1, b: 0, a: 0} + key1: {r: 0, g: 1, b: 0, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 3277 + atime2: 62258 + atime3: 65535 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + lineColorInvalid: + serializedVersion: 2 + key0: {r: 1, g: 0, b: 0, a: 0} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 1311 + atime2: 65535 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 3 + lineColorNoTarget: + serializedVersion: 2 + key0: {r: 1, g: 0, b: 0, a: 0} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 1311 + atime2: 65535 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 3 + lineColorLockFocus: + serializedVersion: 2 + key0: {r: 0, g: 0, b: 1, a: 0} + key1: {r: 0, g: 1, b: 0, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 1311 + atime2: 64224 + atime3: 65535 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + lineCastResolution: 100 + lineBase: {fileID: 114203474425088848} + lineRenderers: + - {fileID: 114102700686190618} + teleportAction: + profileGuid: 00000000000000000000000000000000 + id: 5 + description: Teleport + axisConstraint: 4 + inputThreshold: 0.5 + angleOffset: 0 + teleportActivationAngle: 45 + rotateActivationAngle: 22.5 + rotationAmount: 90 + backStrafeActivationAngle: 45 + strafeAmount: 0.25 + lineColorHotSpot: + serializedVersion: 2 + key0: {r: 0, g: 0, b: 1, a: 0} + key1: {r: 1, g: 0.5, b: 0, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 1311 + atime2: 64224 + atime3: 65535 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 4 + minParabolaVelocity: 5 + maxParabolaVelocity: 20 + minDistanceModifier: 1 + maxDistanceModifier: 20 + parabolicLineData: {fileID: 114203474425088848} +--- !u!1 &1402685148736964 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4736427770665110} + m_Layer: 0 + m_Name: ParabolicLineTransform + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4736427770665110 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1402685148736964} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4133029787660532} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/ParabolicPointer.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/ParabolicPointer.prefab.meta new file mode 100644 index 00000000..09869bbe --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/ParabolicPointer.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0c1e5f0d54ce46319152ece13a4b1eeb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/TouchPointer.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/TouchPointer.prefab new file mode 100644 index 00000000..1da75923 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/TouchPointer.prefab @@ -0,0 +1,399 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1247086986094436 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4215223911988956} + - component: {fileID: 114689919749246242} + - component: {fileID: 120690711267243118} + - component: {fileID: 114903794112201558} + - component: {fileID: 114052612917089170} + - component: {fileID: 114405004987074356} + m_Layer: 0 + m_Name: TouchPointer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4215223911988956 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &114689919749246242 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 87046cef86084c208a7ad83fcb308b17, type: 3} + m_Name: + m_EditorClassIdentifier: + lineStartClamp: 0 + lineEndClamp: 1 + customLineTransform: {fileID: 0} + loops: 0 + transformMode: 0 + rotationMode: 1 + flipUpVector: 0 + originOffset: {x: 0, y: 0, z: 0} + manualUpVectorBlend: 0 + manualUpVectors: + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + velocitySearchRange: 0.02 + distorters: + - {fileID: 114052612917089170} + distortionMode: 0 + distortionStrength: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + uniformDistortionStrength: 1 + startPoint: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + endPoint: + position: {x: 0, y: 0, z: 1} + rotation: {x: 0, y: 0, z: 0, w: 1} +--- !u!120 &120690711267243118 +LineRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 0 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Positions: + - {x: 0, y: 0, z: 1.1920929e-11} + - {x: 0, y: 0, z: 0.0032517451} + - {x: 0, y: 0, z: 0.023423482} + - {x: 0, y: 0, z: 0.0704557} + - {x: 0, y: 0, z: 0.14670977} + - {x: 0, y: 0, z: 0.2469679} + - {x: 0, y: 0, z: 0.35843328} + - {x: 0, y: 0, z: 0.46072987} + - {x: 0, y: 0, z: 0.5333267} + - {x: 0, y: 0, z: 0.59998} + - {x: 0, y: 0, z: 0.66663337} + - {x: 0, y: 0, z: 0.7332867} + - {x: 0, y: 0, z: 0.79994} + - {x: 0, y: 0, z: 0.8665933} + - {x: 0, y: 0, z: 0.9332467} + - {x: 0, y: 0, z: 0.9999} + m_Parameters: + serializedVersion: 3 + widthMultiplier: 0.01 + widthCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + colorGradient: + serializedVersion: 2 + key0: {r: 0, g: 0.12270379, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + numCornerVertices: 8 + numCapVertices: 8 + alignment: 0 + textureMode: 0 + shadowBias: 0 + generateLightingData: 0 + m_UseWorldSpace: 1 + m_Loop: 0 +--- !u!114 &114903794112201558 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01f6e868e3234547a04741fe2c20bd0d, type: 3} + m_Name: + m_EditorClassIdentifier: + lineDataSource: {fileID: 114689919749246242} + lineColor: + serializedVersion: 2 + key0: {r: 0, g: 0.12270379, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + lineWidth: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + widthMultiplier: 0.01 + colorOffset: 0 + widthOffset: 0 + stepMode: 0 + lineStepCount: 16 + pointDistributionMode: 1 + customPointDistributionLength: 0.1 + customPointDistributionCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + lineMaterial: {fileID: 2100000, guid: 49bbec7a7ebd47c786bf06ad0977ec1c, type: 2} + roundedEdges: 1 + roundedCaps: 1 + lineRenderer: {fileID: 120690711267243118} +--- !u!114 &114052612917089170 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 61988acbae5840069797ec6d990d8f50, type: 3} + m_Name: + m_EditorClassIdentifier: + distortOrder: 0 + distortStrength: 1 + localCenterOfGravity: {x: 0, y: 0, z: 0} + axisStrength: {x: 1, y: 1, z: 1} + radius: 0.5 + gravityStrength: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!114 &114405004987074356 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1247086986094436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f9b8d91a80a94621a946b1973d32f027, type: 3} + m_Name: + m_EditorClassIdentifier: + handedness: 0 + destroyOnSourceLost: 0 + useSourcePoseData: 1 + poseAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + cursorPrefab: {fileID: 1000012072213228, guid: 79f96834fcc44889b558cc13518979a0, + type: 3} + disableCursorOnStart: 1 + setCursorVisibilityOnSourceDetected: 1 + raycastOrigin: {fileID: 0} + activeHoldAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + pointerAction: + profileGuid: 00000000000000000000000000000000 + id: 1 + description: Select + axisConstraint: 2 + requiresHoldAction: 0 + enablePointerOnStart: 0 + interactionMode: 1 + nearInteractionCollider: {fileID: 0} + overrideGlobalPointerExtent: 0 + defaultPointerExtent: 10 + pointerOrientation: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/TouchPointer.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/TouchPointer.prefab.meta new file mode 100644 index 00000000..d8518c86 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Pointers/TouchPointer.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 11325a842d3c4ffc85c65a6991b8d70e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips.meta new file mode 100644 index 00000000..bf85d2cc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fb8b25437dd84fa5b88ea13fb9216700 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Constrained Parabola Tooltip.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Constrained Parabola Tooltip.prefab new file mode 100644 index 00000000..375e31e9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Constrained Parabola Tooltip.prefab @@ -0,0 +1,689 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 0} + m_RootGameObject: {fileID: 1439306413935240} + m_IsPrefabAsset: 1 +--- !u!1 &1134332838324422 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4633061480627984} + m_Layer: 0 + m_Name: Anchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1161016003964154 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4517565306006688} + m_Layer: 0 + m_Name: Pivot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1269510977283586 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4139348576178690} + m_Layer: 0 + m_Name: ContentParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1439306413935240 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4649356724422132} + - component: {fileID: 33228383509633562} + - component: {fileID: 114794069409157716} + - component: {fileID: 114355726734100340} + - component: {fileID: 114728234058611596} + - component: {fileID: 114158392181191990} + - component: {fileID: 114600377394130268} + - component: {fileID: 120116089410604596} + m_Layer: 0 + m_Name: Constrained Parabola Tooltip + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1938448898337100 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4104249324394746} + - component: {fileID: 33043870562148880} + - component: {fileID: 23927441315751242} + - component: {fileID: 114938061459231866} + - component: {fileID: 65415218845172522} + m_Layer: 0 + m_Name: TipBackground + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1942671045987180 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4820497369803348} + - component: {fileID: 23913304314907500} + - component: {fileID: 102429094617329568} + m_Layer: 0 + m_Name: Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4104249324394746 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1938448898337100} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.182, y: 0.028, z: 1} + m_Children: [] + m_Father: {fileID: 4139348576178690} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4139348576178690 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1269510977283586} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.2, y: 0.2, z: 0.2} + m_Children: + - {fileID: 4820497369803348} + - {fileID: 4104249324394746} + m_Father: {fileID: 4517565306006688} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4517565306006688 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1161016003964154} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4139348576178690} + m_Father: {fileID: 4649356724422132} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4633061480627984 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1134332838324422} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.040960662, y: 0.000030291794, z: -0.029800791} + m_LocalScale: {x: 0.0025, y: 0.0025, z: 0.0025} + m_Children: [] + m_Father: {fileID: 4649356724422132} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4649356724422132 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1439306413935240} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 69.82138, y: 69.82126, z: 69.82138} + m_Children: + - {fileID: 4633061480627984} + - {fileID: 4517565306006688} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4820497369803348 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1942671045987180} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.005, y: 0.005, z: 0.005} + m_Children: [] + m_Father: {fileID: 4139348576178690} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &23913304314907500 +MeshRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1942671045987180} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: 50050997b11d4d1584cb468a2dbc24b9, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!23 &23927441315751242 +MeshRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1938448898337100} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: ec90f83083f249bf83c424113c6f05f7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &33043870562148880 +MeshFilter: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1938448898337100} + m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} +--- !u!33 &33228383509633562 +MeshFilter: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1439306413935240} + m_Mesh: {fileID: 0} +--- !u!65 &65415218845172522 +BoxCollider: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1938448898337100} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!102 &102429094617329568 +TextMesh: + serializedVersion: 3 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1942671045987180} + m_Text: Fuel Tank + m_OffsetZ: 0 + m_CharacterSize: 1 + m_LineSpacing: 1 + m_Anchor: 4 + m_Alignment: 0 + m_TabSize: 4 + m_FontSize: 30 + m_FontStyle: 0 + m_RichText: 1 + m_Font: {fileID: 12800000, guid: 50050997b11d4d1584cb468a2dbc24b9, type: 3} + m_Color: + serializedVersion: 2 + rgba: 4294967295 +--- !u!114 &114158392181191990 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1439306413935240} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 49f1f92dc48e4ddcbd4fd67f61c66a14, type: 3} + m_Name: + m_EditorClassIdentifier: + lineStartClamp: 0 + lineEndClamp: 1 + customLineTransform: {fileID: 0} + loops: 0 + rotationMode: 1 + flipUpVector: 0 + originOffset: {x: 0, y: 0, z: 0} + manualUpVectorBlend: 0 + manualUpVectors: + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + velocitySearchRange: 0.02 + distorters: [] + distortionMode: 0 + distortionStrength: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + uniformDistortionStrength: 1 + startPoint: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + endPoint: + position: {x: -0.04266714, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + upDirection: {x: 0, y: 0.07, z: 0} + height: 1 +--- !u!114 &114355726734100340 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1439306413935240} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ec95486de86844feae6c35b437d65d65, type: 3} + m_Name: + m_EditorClassIdentifier: + target: {fileID: 0} + toolTip: {fileID: 114794069409157716} + connectorFollowType: 0 + pivotMode: 0 + pivotDirection: 1 + pivotDirectionOrient: 0 + manualPivotDirection: {x: 0, y: 1, z: 0} + manualPivotLocalPosition: {x: 0, y: 1, z: 0} + pivotDistance: 0.25 +--- !u!114 &114600377394130268 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1439306413935240} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01f6e868e3234547a04741fe2c20bd0d, type: 3} + m_Name: + m_EditorClassIdentifier: + lineDataSource: {fileID: 114158392181191990} + lineColor: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + lineWidth: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + widthMultiplier: 0.01 + colorOffset: 0 + widthOffset: 0 + stepMode: 0 + lineStepCount: 16 + lineMaterial: {fileID: 10306, guid: 0000000000000000f000000000000000, type: 0} + roundedEdges: 1 + roundedCaps: 1 + lineRenderer: {fileID: 120116089410604596} +--- !u!114 &114728234058611596 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1439306413935240} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 90f7c9df0b61417e8ae7ff2e3ecc4783, type: 3} + m_Name: + m_EditorClassIdentifier: + toolTip: {fileID: 114794069409157716} + backgroundTransform: {fileID: 4104249324394746} + BackgroundRenderer: {fileID: 0} +--- !u!114 &114794069409157716 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1439306413935240} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 858da0ddc3f94ede9171c447b6ade513, type: 3} + m_Name: + m_EditorClassIdentifier: + showBackground: 1 + showOutline: 0 + showConnector: 1 + tipState: 1 + groupTipState: 0 + masterTipState: 0 + anchor: {fileID: 1134332838324422} + pivot: {fileID: 1161016003964154} + label: {fileID: 1942671045987180} + contentParent: {fileID: 1269510977283586} + toolTipText: + backgroundPadding: {x: 0, y: 0} + backgroundOffset: {x: 0, y: 0, z: 0} + contentScale: 0.2 + fontSize: 30 + attachPointType: 9 + toolTipLine: {fileID: 114158392181191990} +--- !u!114 &114938061459231866 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1938448898337100} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5e0e15a98a9c4756876a8ab16dd4b84d, type: 3} + m_Name: + m_EditorClassIdentifier: + lineStartClamp: 0 + lineEndClamp: 1 + customLineTransform: {fileID: 0} + loops: 0 + rotationMode: 1 + flipUpVector: 0 + originOffset: {x: 0, y: 0, z: 0} + manualUpVectorBlend: 0 + manualUpVectors: + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + velocitySearchRange: 0.02 + distorters: [] + distortionMode: 0 + distortionStrength: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + uniformDistortionStrength: 1 + points: + - {x: -0.5, y: 0.5, z: 0} + - {x: 0, y: 0.5, z: 0} + - {x: 0.5, y: 0.5, z: 0} + - {x: 0.5, y: 0, z: 0} + - {x: 0.5, y: -0.5, z: 0} + - {x: 0, y: -0.5, z: 0} + - {x: -0.5, y: -0.5, z: 0} + - {x: -0.5, y: 0, z: 0} + width: 1 + height: 1 + zOffset: 0 +--- !u!120 &120116089410604596 +LineRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1439306413935240} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 0 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 10306, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Positions: + - {x: -0.44821775, y: -0.22743821, z: 2.8419418} + - {x: -0.4484533, y: -0.1724968, z: 2.8415709} + - {x: -0.44868886, y: -0.12540436, z: 2.8411999} + - {x: -0.44892418, y: -0.08616066, z: 2.840829} + - {x: -0.44915974, y: -0.0547657, z: 2.8404589} + - {x: -0.4493953, y: -0.03121972, z: 2.840088} + - {x: -0.44963086, y: -0.015522718, z: 2.839717} + - {x: -0.44986618, y: -0.007674217, z: 2.839346} + - {x: -0.45010173, y: -0.007674694, z: 2.838975} + - {x: -0.4503373, y: -0.0155239105, z: 2.838604} + - {x: -0.45057285, y: -0.031222105, z: 2.838233} + - {x: -0.4508084, y: -0.0547688, z: 2.837862} + - {x: -0.45104396, y: -0.08616471, z: 2.837491} + - {x: -0.45127952, y: -0.12540913, z: 2.83712} + - {x: -0.45151484, y: -0.17250252, z: 2.836749} + - {x: -0.4517504, y: -0.22744489, z: 2.836378} + m_Parameters: + serializedVersion: 2 + widthMultiplier: 0.01 + widthCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + colorGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + numCornerVertices: 8 + numCapVertices: 8 + alignment: 0 + textureMode: 0 + generateLightingData: 0 + m_UseWorldSpace: 1 + m_Loop: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Constrained Parabola Tooltip.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Constrained Parabola Tooltip.prefab.meta new file mode 100644 index 00000000..d9c9ae24 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Constrained Parabola Tooltip.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c6866df41b18425088fb1edce016fc90 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Simple Line ToolTip.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Simple Line ToolTip.prefab new file mode 100644 index 00000000..e8a49ef8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Simple Line ToolTip.prefab @@ -0,0 +1,687 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 0} + m_RootGameObject: {fileID: 1083549605185280} + m_IsPrefabAsset: 1 +--- !u!1 &1083549605185280 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4510122080978026} + - component: {fileID: 33733544359049586} + - component: {fileID: 114071207091359978} + - component: {fileID: 114957968741241876} + - component: {fileID: 114025810608913470} + - component: {fileID: 114254035704318198} + - component: {fileID: 114570207066485496} + - component: {fileID: 120256979407580908} + m_Layer: 0 + m_Name: Simple Line ToolTip + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1468030888342674 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4363393872217298} + - component: {fileID: 23174546916805506} + - component: {fileID: 102171020286568432} + m_Layer: 0 + m_Name: Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1486990241750050 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4411840848280898} + m_Layer: 0 + m_Name: ContentParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1524834073222450 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4892726138630008} + - component: {fileID: 33656572866633006} + - component: {fileID: 23685411902306870} + - component: {fileID: 114529374875823700} + - component: {fileID: 65930228930253068} + m_Layer: 0 + m_Name: TipBackground + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1532502621088038 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4983009381304104} + m_Layer: 0 + m_Name: Anchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1689994015351696 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4599297741613436} + m_Layer: 0 + m_Name: Pivot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4363393872217298 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1468030888342674} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.005, y: 0.005, z: 0.005} + m_Children: [] + m_Father: {fileID: 4411840848280898} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4411840848280898 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1486990241750050} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.2, y: 0.2, z: 0.2} + m_Children: + - {fileID: 4363393872217298} + - {fileID: 4892726138630008} + m_Father: {fileID: 4599297741613436} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4510122080978026 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1083549605185280} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 15.41911, y: 15.419079, z: 15.41911} + m_Children: + - {fileID: 4983009381304104} + - {fileID: 4599297741613436} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4599297741613436 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1689994015351696} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4411840848280898} + m_Father: {fileID: 4510122080978026} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4892726138630008 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1524834073222450} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.182, y: 0.028, z: 1} + m_Children: [] + m_Father: {fileID: 4411840848280898} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4983009381304104 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1532502621088038} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.025239995, y: -0.04781766, z: 0.017351812} + m_LocalScale: {x: 0.0025, y: 0.0025, z: 0.0025} + m_Children: [] + m_Father: {fileID: 4510122080978026} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &23174546916805506 +MeshRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1468030888342674} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: 50050997b11d4d1584cb468a2dbc24b9, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!23 &23685411902306870 +MeshRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1524834073222450} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: ec90f83083f249bf83c424113c6f05f7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &33656572866633006 +MeshFilter: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1524834073222450} + m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} +--- !u!33 &33733544359049586 +MeshFilter: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1083549605185280} + m_Mesh: {fileID: 0} +--- !u!65 &65930228930253068 +BoxCollider: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1524834073222450} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!102 &102171020286568432 +TextMesh: + serializedVersion: 3 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1468030888342674} + m_Text: Teal Doohickey + m_OffsetZ: 0 + m_CharacterSize: 1 + m_LineSpacing: 1 + m_Anchor: 4 + m_Alignment: 0 + m_TabSize: 4 + m_FontSize: 30 + m_FontStyle: 0 + m_RichText: 1 + m_Font: {fileID: 12800000, guid: 50050997b11d4d1584cb468a2dbc24b9, type: 3} + m_Color: + serializedVersion: 2 + rgba: 4294967295 +--- !u!114 &114025810608913470 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1083549605185280} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 90f7c9df0b61417e8ae7ff2e3ecc4783, type: 3} + m_Name: + m_EditorClassIdentifier: + toolTip: {fileID: 114071207091359978} + backgroundTransform: {fileID: 4892726138630008} + BackgroundRenderer: {fileID: 0} +--- !u!114 &114071207091359978 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1083549605185280} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 858da0ddc3f94ede9171c447b6ade513, type: 3} + m_Name: + m_EditorClassIdentifier: + showBackground: 1 + showOutline: 0 + showConnector: 1 + tipState: 1 + groupTipState: 0 + masterTipState: 0 + anchor: {fileID: 1532502621088038} + pivot: {fileID: 1689994015351696} + label: {fileID: 1468030888342674} + contentParent: {fileID: 1486990241750050} + toolTipText: + backgroundPadding: {x: 0, y: 0} + backgroundOffset: {x: 0, y: 0, z: 0} + contentScale: 0.2 + fontSize: 30 + attachPointType: 9 + toolTipLine: {fileID: 114254035704318198} +--- !u!114 &114254035704318198 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1083549605185280} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 87046cef86084c208a7ad83fcb308b17, type: 3} + m_Name: + m_EditorClassIdentifier: + lineStartClamp: 0 + lineEndClamp: 1 + customLineTransform: {fileID: 0} + loops: 0 + rotationMode: 1 + flipUpVector: 0 + originOffset: {x: 0, y: 0, z: 0} + manualUpVectorBlend: 0 + manualUpVectors: + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + velocitySearchRange: 0.02 + distorters: [] + distortionMode: 0 + distortionStrength: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + uniformDistortionStrength: 1 + startPoint: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + endPoint: + position: {x: 1, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} +--- !u!114 &114529374875823700 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1524834073222450} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5e0e15a98a9c4756876a8ab16dd4b84d, type: 3} + m_Name: + m_EditorClassIdentifier: + lineStartClamp: 0 + lineEndClamp: 1 + customLineTransform: {fileID: 0} + loops: 0 + rotationMode: 1 + flipUpVector: 0 + originOffset: {x: 0, y: 0, z: 0} + manualUpVectorBlend: 0 + manualUpVectors: + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + velocitySearchRange: 0.02 + distorters: [] + distortionMode: 0 + distortionStrength: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + uniformDistortionStrength: 1 + points: + - {x: -0.5, y: 0.5, z: 0} + - {x: 0, y: 0.5, z: 0} + - {x: 0.5, y: 0.5, z: 0} + - {x: 0.5, y: 0, z: 0} + - {x: 0.5, y: -0.5, z: 0} + - {x: 0, y: -0.5, z: 0} + - {x: -0.5, y: -0.5, z: 0} + - {x: -0.5, y: 0, z: 0} + width: 1 + height: 1 + zOffset: 0 +--- !u!114 &114570207066485496 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1083549605185280} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01f6e868e3234547a04741fe2c20bd0d, type: 3} + m_Name: + m_EditorClassIdentifier: + lineDataSource: {fileID: 114254035704318198} + lineColor: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + lineWidth: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + widthMultiplier: 0.01 + colorOffset: 0 + widthOffset: 0 + stepMode: 0 + lineStepCount: 16 + lineMaterial: {fileID: 10306, guid: 0000000000000000f000000000000000, type: 0} + roundedEdges: 1 + roundedCaps: 1 + lineRenderer: {fileID: 120256979407580908} +--- !u!114 &114957968741241876 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1083549605185280} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ec95486de86844feae6c35b437d65d65, type: 3} + m_Name: + m_EditorClassIdentifier: + target: {fileID: 0} + toolTip: {fileID: 114071207091359978} + connectorFollowType: 0 + pivotMode: 0 + pivotDirection: 1 + pivotDirectionOrient: 0 + manualPivotDirection: {x: 0, y: 1, z: 0} + manualPivotLocalPosition: {x: 0, y: 1, z: 0} + pivotDistance: 0.25 +--- !u!120 &120256979407580908 +LineRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1083549605185280} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 0 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 10306, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Positions: + - {x: -1.1158606, y: -0.19623065, z: 3.2662163} + - {x: -1.1418008, y: -0.14708686, z: 3.2483835} + - {x: -1.1677407, y: -0.09794307, z: 3.2305498} + - {x: -1.1936806, y: -0.048799276, z: 3.212717} + - {x: -1.2196208, y: 0.00034451485, z: 3.1948843} + - {x: -1.2455608, y: 0.049488306, z: 3.1770506} + - {x: -1.2715007, y: 0.0986321, z: 3.1592178} + - {x: -1.2974409, y: 0.14777589, z: 3.141385} + - {x: -1.3233808, y: 0.19691968, z: 3.1235514} + - {x: -1.349321, y: 0.24606347, z: 3.1057186} + - {x: -1.375261, y: 0.2952075, z: 3.0878859} + - {x: -1.4012009, y: 0.3443513, z: 3.0700521} + - {x: -1.4271411, y: 0.39349508, z: 3.0522194} + - {x: -1.453081, y: 0.44263864, z: 3.0343866} + - {x: -1.479021, y: 0.49178243, z: 3.016553} + - {x: -1.5049611, y: 0.5409262, z: 2.9987202} + m_Parameters: + serializedVersion: 2 + widthMultiplier: 0.01 + widthCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + colorGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + numCornerVertices: 8 + numCapVertices: 8 + alignment: 0 + textureMode: 0 + generateLightingData: 0 + m_UseWorldSpace: 1 + m_Loop: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Simple Line ToolTip.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Simple Line ToolTip.prefab.meta new file mode 100644 index 00000000..c4a06ce1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Simple Line ToolTip.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 439e0f228b0e4d6199d413491697e2e6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Spline ToolTip.prefab b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Spline ToolTip.prefab new file mode 100644 index 00000000..07315261 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Spline ToolTip.prefab @@ -0,0 +1,691 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 0} + m_RootGameObject: {fileID: 1379707608131922} + m_IsPrefabAsset: 1 +--- !u!1 &1128269667492352 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4357967319665148} + - component: {fileID: 33417507493768508} + - component: {fileID: 23052531518207456} + - component: {fileID: 114806759146544950} + - component: {fileID: 65136279985901000} + m_Layer: 0 + m_Name: TipBackground + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1242654689425456 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4829571204916076} + m_Layer: 0 + m_Name: Pivot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1263558407857926 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4716276006897694} + - component: {fileID: 23033708679044396} + - component: {fileID: 102543753078190256} + m_Layer: 0 + m_Name: Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1379707608131922 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4505063462395242} + - component: {fileID: 33146256685336718} + - component: {fileID: 114494227601126774} + - component: {fileID: 114791554859771234} + - component: {fileID: 114107663395978448} + - component: {fileID: 114469678959493348} + - component: {fileID: 114815262729593704} + - component: {fileID: 120134443969394850} + m_Layer: 0 + m_Name: Spline ToolTip + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1582682964526084 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4961073448204456} + m_Layer: 0 + m_Name: ContentParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1592911157791456 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4582846533839986} + m_Layer: 0 + m_Name: Anchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4357967319665148 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1128269667492352} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.182, y: 0.028, z: 1} + m_Children: [] + m_Father: {fileID: 4961073448204456} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4505063462395242 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1379707608131922} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 69.82134, y: 69.82126, z: 69.82134} + m_Children: + - {fileID: 4582846533839986} + - {fileID: 4829571204916076} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4582846533839986 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1592911157791456} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.011475041, y: -0.019481396, z: -0.0058621536} + m_LocalScale: {x: 0.0025, y: 0.0025, z: 0.0025} + m_Children: [] + m_Father: {fileID: 4505063462395242} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4716276006897694 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1263558407857926} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.005, y: 0.005, z: 0.005} + m_Children: [] + m_Father: {fileID: 4961073448204456} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4829571204916076 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1242654689425456} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4961073448204456} + m_Father: {fileID: 4505063462395242} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4961073448204456 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1582682964526084} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.2, y: 0.2, z: 0.2} + m_Children: + - {fileID: 4716276006897694} + - {fileID: 4357967319665148} + m_Father: {fileID: 4829571204916076} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &23033708679044396 +MeshRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1263558407857926} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: 50050997b11d4d1584cb468a2dbc24b9, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!23 &23052531518207456 +MeshRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1128269667492352} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: ec90f83083f249bf83c424113c6f05f7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &33146256685336718 +MeshFilter: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1379707608131922} + m_Mesh: {fileID: 0} +--- !u!33 &33417507493768508 +MeshFilter: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1128269667492352} + m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} +--- !u!65 &65136279985901000 +BoxCollider: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1128269667492352} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!102 &102543753078190256 +TextMesh: + serializedVersion: 3 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1263558407857926} + m_Text: Light + m_OffsetZ: 0 + m_CharacterSize: 1 + m_LineSpacing: 1 + m_Anchor: 4 + m_Alignment: 0 + m_TabSize: 4 + m_FontSize: 30 + m_FontStyle: 0 + m_RichText: 1 + m_Font: {fileID: 12800000, guid: 50050997b11d4d1584cb468a2dbc24b9, type: 3} + m_Color: + serializedVersion: 2 + rgba: 4294967295 +--- !u!114 &114107663395978448 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1379707608131922} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 90f7c9df0b61417e8ae7ff2e3ecc4783, type: 3} + m_Name: + m_EditorClassIdentifier: + toolTip: {fileID: 114494227601126774} + backgroundTransform: {fileID: 4357967319665148} + BackgroundRenderer: {fileID: 0} +--- !u!114 &114469678959493348 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1379707608131922} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 81b0e298e1884e9ca0549ab9d5cb9874, type: 3} + m_Name: + m_EditorClassIdentifier: + lineStartClamp: 0 + lineEndClamp: 1 + customLineTransform: {fileID: 0} + loops: 0 + rotationMode: 1 + flipUpVector: 0 + originOffset: {x: 0, y: 0, z: 0} + manualUpVectorBlend: 0 + manualUpVectors: + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + velocitySearchRange: 0.02 + distorters: [] + distortionMode: 0 + distortionStrength: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + uniformDistortionStrength: 1 + controlPoints: + - position: {x: -0.011475037, y: -0.027328813, z: -0.005862154} + rotation: {x: 0, y: 0, z: 0, w: 1} + - position: {x: -0.0074725514, y: -0.02, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + - position: {x: -0.07, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + - position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + alignAllControlPoints: 1 +--- !u!114 &114494227601126774 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1379707608131922} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 858da0ddc3f94ede9171c447b6ade513, type: 3} + m_Name: + m_EditorClassIdentifier: + showBackground: 1 + showOutline: 0 + showConnector: 1 + tipState: 1 + groupTipState: 0 + masterTipState: 0 + anchor: {fileID: 1592911157791456} + pivot: {fileID: 1242654689425456} + label: {fileID: 1263558407857926} + contentParent: {fileID: 1582682964526084} + toolTipText: + backgroundPadding: {x: 0, y: 0} + backgroundOffset: {x: 0, y: 0, z: 0} + contentScale: 0.2 + fontSize: 30 + attachPointType: 9 + toolTipLine: {fileID: 114469678959493348} +--- !u!114 &114791554859771234 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1379707608131922} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ec95486de86844feae6c35b437d65d65, type: 3} + m_Name: + m_EditorClassIdentifier: + target: {fileID: 0} + toolTip: {fileID: 114494227601126774} + connectorFollowType: 0 + pivotMode: 0 + pivotDirection: 1 + pivotDirectionOrient: 0 + manualPivotDirection: {x: 0, y: 1, z: 0} + manualPivotLocalPosition: {x: 0, y: 1, z: 0} + pivotDistance: 0.25 +--- !u!114 &114806759146544950 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1128269667492352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5e0e15a98a9c4756876a8ab16dd4b84d, type: 3} + m_Name: + m_EditorClassIdentifier: + lineStartClamp: 0 + lineEndClamp: 1 + customLineTransform: {fileID: 0} + loops: 0 + rotationMode: 1 + flipUpVector: 0 + originOffset: {x: 0, y: 0, z: 0} + manualUpVectorBlend: 0 + manualUpVectors: + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + velocitySearchRange: 0.02 + distorters: [] + distortionMode: 0 + distortionStrength: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + uniformDistortionStrength: 1 + points: + - {x: -0.5, y: 0.5, z: 0} + - {x: 0, y: 0.5, z: 0} + - {x: 0.5, y: 0.5, z: 0} + - {x: 0.5, y: 0, z: 0} + - {x: 0.5, y: -0.5, z: 0} + - {x: 0, y: -0.5, z: 0} + - {x: -0.5, y: -0.5, z: 0} + - {x: -0.5, y: 0, z: 0} + width: 1 + height: 1 + zOffset: 0 +--- !u!114 &114815262729593704 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1379707608131922} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01f6e868e3234547a04741fe2c20bd0d, type: 3} + m_Name: + m_EditorClassIdentifier: + lineDataSource: {fileID: 114469678959493348} + lineColor: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + lineWidth: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + widthMultiplier: 0.01 + colorOffset: 0 + widthOffset: 0 + stepMode: 0 + lineStepCount: 16 + lineMaterial: {fileID: 10306, guid: 0000000000000000f000000000000000, type: 0} + roundedEdges: 1 + roundedCaps: 1 + lineRenderer: {fileID: 120134443969394850} +--- !u!120 &120134443969394850 +LineRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1379707608131922} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 0 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 10306, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Positions: + - {x: -0.5369164, y: -0.010351181, z: 2.908331} + - {x: -0.5373763, y: 0.01470685, z: 2.9252243} + - {x: -0.55971944, y: 0.04407668, z: 2.939868} + - {x: -0.59849226, y: 0.07686305, z: 2.952425} + - {x: -0.6482421, y: 0.112170935, z: 2.9630537} + - {x: -0.7035154, y: 0.14910531, z: 2.9719152} + - {x: -0.7588588, y: 0.18677115, z: 2.9791718} + - {x: -0.8088192, y: 0.22427344, z: 2.9849815} + - {x: -0.8479432, y: 0.2607174, z: 2.9895067} + - {x: -0.8707777, y: 0.2952075, z: 2.9929075} + - {x: -0.8718697, y: 0.32684875, z: 2.995345} + - {x: -0.8457655, y: 0.35474658, z: 2.9969788} + - {x: -0.787012, y: 0.37800574, z: 2.9979696} + - {x: -0.6901561, y: 0.39573073, z: 2.998479} + - {x: -0.54974425, y: 0.40702748, z: 2.9986668} + - {x: -0.3603233, y: 0.411, z: 2.9986935} + m_Parameters: + serializedVersion: 2 + widthMultiplier: 0.01 + widthCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + colorGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + numCornerVertices: 8 + numCapVertices: 8 + alignment: 0 + textureMode: 0 + generateLightingData: 0 + m_UseWorldSpace: 1 + m_Loop: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Spline ToolTip.prefab.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Spline ToolTip.prefab.meta new file mode 100644 index 00000000..ce148caf --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs/UX/Tooltips/Spline ToolTip.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f1082556747e4e0799c1d1252e819601 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles.meta new file mode 100644 index 00000000..2f327961 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 18601e615c54e4248a4ffe9e23495c05 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem.meta new file mode 100644 index 00000000..1c2ed876 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8be920408fad5a94bb003422cda445ac +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraDataProviderProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraDataProviderProfile.asset new file mode 100644 index 00000000..8eeaef9d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraDataProviderProfile.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 00d813fd5a164e19a160f322b2926006, type: 3} + m_Name: MixedRealityCameraDataProviderProfile + m_EditorClassIdentifier: + isCameraPersistent: 1 + nearClipPlaneOpaqueDisplay: 0.1 + cameraClearFlagsOpaqueDisplay: 1 + backgroundColorOpaqueDisplay: {r: 0, g: 0, b: 0, a: 1} + opaqueQualityLevel: 5 + nearClipPlaneTransparentDisplay: 0.2 + cameraClearFlagsTransparentDisplay: 2 + backgroundColorTransparentDisplay: {r: 0, g: 0, b: 0, a: 0} + transparentQualityLevel: 0 + cameraRigType: + reference: 8e0ee4fc-c8a5-4b10-9fca-ee55b6d421ff + defaultHeadHeight: 1.6 + bodyAdjustmentAngle: 60 + bodyAdjustmentSpeed: 1 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraDataProviderProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraDataProviderProfile.asset.meta new file mode 100644 index 00000000..ab743fde --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraDataProviderProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c02516a14adf1ff45b2e6feaefd1d090 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraSystemProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraSystemProfile.asset new file mode 100644 index 00000000..241d1c28 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraSystemProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 50519740e1dd4b5f97f104c7dc8d6ae6, type: 3} + m_Name: MixedRealityCameraSystemProfile + m_EditorClassIdentifier: + configurations: + - instancedType: + reference: ea4c0c19-e533-4ae8-91a2-6998cb8905bb + name: Default Camera Data Provider + priority: 0 + platformEntries: + runtimePlatforms: + - reference: dac9ead8-54f9-4935-a27f-9f82f465c972 + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: bcac2cef-e793-47b8-9db7-116af668cb66 + - reference: 97344133-03b4-4314-9581-e42d1aac91ba + - reference: a2ffb628-3ce7-4759-9c66-8f2ba8d16fc2 + - reference: 58de2d2a-db5f-4090-a949-4028b8ea3afd + profile: {fileID: 11400000, guid: c02516a14adf1ff45b2e6feaefd1d090, type: 2} + globalCameraProfile: {fileID: 11400000, guid: c02516a14adf1ff45b2e6feaefd1d090, + type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraSystemProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraSystemProfile.asset.meta new file mode 100644 index 00000000..ee931376 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/CameraSystem/MixedRealityCameraSystemProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2b0ab6f5348646cebf8585d46c3a3edc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Diagnostics.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Diagnostics.meta new file mode 100644 index 00000000..b9c5e38a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Diagnostics.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 663dd3fb6fa514c48b1dfe6e00040d6d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Diagnostics/MixedRealityDiagnosticsSystemProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Diagnostics/MixedRealityDiagnosticsSystemProfile.asset new file mode 100644 index 00000000..b762970e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Diagnostics/MixedRealityDiagnosticsSystemProfile.asset @@ -0,0 +1,42 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1564b9320d5f4bdf9823a35bb66d61a7, type: 3} + m_Name: MixedRealityDiagnosticsSystemProfile + m_EditorClassIdentifier: + configurations: + - instancedType: + reference: 9f9c6912-dd68-4010-8b4a-b7b01b6ad77b + name: Memory Diagnostics Data Provider + priority: 0 + platformEntries: + runtimePlatforms: + - reference: c6bf6315-2e9c-4602-827d-2d4871d29422 + profile: {fileID: 0} + - instancedType: + reference: 1b5e5a67-864c-4a3d-a099-5a46ead399a8 + name: Frame Diagnostics Data Provider + priority: 1 + platformEntries: + runtimePlatforms: + - reference: c6bf6315-2e9c-4602-827d-2d4871d29422 + profile: {fileID: 0} + - instancedType: + reference: 06916f29-4640-475e-8bf6-313c6b831fcf + name: Console Diagnostics Data Provider + priority: 2 + platformEntries: + runtimePlatforms: + - reference: c6bf6315-2e9c-4602-827d-2d4871d29422 + profile: {fileID: 0} + diagnosticsWindowPrefab: {fileID: 2161880003638299081, guid: be9153b959e0d4d4aa50a4a1a6617daa, + type: 3} + showDiagnosticsWindowOnStart: 1 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Diagnostics/MixedRealityDiagnosticsSystemProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Diagnostics/MixedRealityDiagnosticsSystemProfile.asset.meta new file mode 100644 index 00000000..72c924c9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Diagnostics/MixedRealityDiagnosticsSystemProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4f3217bd00647e147a746a49f672b6d8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input.meta new file mode 100644 index 00000000..72d5f97b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c78102387f014344695ecc96a5861b78 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers.meta new file mode 100644 index 00000000..e5644243 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23d58571cdc59ee4aa5103ef3f00881f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/LeftControllerVisualizer.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/LeftControllerVisualizer.asset new file mode 100644 index 00000000..35446865 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/LeftControllerVisualizer.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b7926164960ef644850207ccce1b07e, type: 3} + m_Name: LeftControllerVisualizer + m_EditorClassIdentifier: + controllerVisualizationType: + reference: ea41f336-8b46-4aea-a8b4-8b93b52e67a9 + useDefaultModels: 1 + model: {fileID: 1370450866519632, guid: ee0e0dd1dc6d457794091bf89f804f8f, type: 3} + pointerPose: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + alternatePointerPose: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/LeftControllerVisualizer.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/LeftControllerVisualizer.asset.meta new file mode 100644 index 00000000..74450d50 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/LeftControllerVisualizer.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fe125eaaf5547684d8506b794c5a6016 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/RightControllerVisualizer.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/RightControllerVisualizer.asset new file mode 100644 index 00000000..3c75f8bf --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/RightControllerVisualizer.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b7926164960ef644850207ccce1b07e, type: 3} + m_Name: RightControllerVisualizer + m_EditorClassIdentifier: + controllerVisualizationType: + reference: ea41f336-8b46-4aea-a8b4-8b93b52e67a9 + useDefaultModels: 1 + model: {fileID: 1370450866519632, guid: ee0e0dd1dc6d457794091bf89f804f8f, type: 3} + pointerPose: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + alternatePointerPose: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/RightControllerVisualizer.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/RightControllerVisualizer.asset.meta new file mode 100644 index 00000000..f1e28680 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/ControllerVisualizers/RightControllerVisualizer.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5ee67c77447ce88409a3e04e57806963 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders.meta new file mode 100644 index 00000000..b8d2e928 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e5b2e8ebbc995940a500467c42cdc15 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController.meta new file mode 100644 index 00000000..1b1f5a28 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 60bb0afa85bab324cb05f3760c273626 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left.meta new file mode 100644 index 00000000..1ddaaacd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 515ab6858236cff4689ec533da0d48cb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/GripTriggerPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/GripTriggerPositionProfile.asset new file mode 100644 index 00000000..762e1d87 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/GripTriggerPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: GripTriggerPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Trigger Position + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 7 + description: Grip Strength + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_11 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/GripTriggerPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/GripTriggerPositionProfile.asset.meta new file mode 100644 index 00000000..00cecd46 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/GripTriggerPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c26314cd36c65284e8544b41c7191b83 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/InvertDualAxisProcessor.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/InvertDualAxisProcessor.asset new file mode 100644 index 00000000..cad2e406 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/InvertDualAxisProcessor.asset @@ -0,0 +1,16 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bf89b42d98d441ee99759646f3ab757d, type: 3} + m_Name: InvertDualAxisProcessor + m_EditorClassIdentifier: + invertX: 0 + invertY: 1 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/InvertDualAxisProcessor.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/InvertDualAxisProcessor.asset.meta new file mode 100644 index 00000000..2cccf478 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/InvertDualAxisProcessor.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4c86d09b4c5d8bb4b821a1ea89855739 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialGripProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialGripProfile.asset new file mode 100644 index 00000000..0eb3e268 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialGripProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialGripProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Grip + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialGripProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialGripProfile.asset.meta new file mode 100644 index 00000000..e98a7629 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialGripProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 95bb957ff19b7ea4f82fbc5b7c316172 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialPointerProfile.asset new file mode 100644 index 00000000..8e35daa3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialPointerProfile.asset @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 9e0e4acc675a18b4b9c65e9ff85cfe58, type: 2} + - {fileID: 11400000, guid: d3736f91cbeeb284fb90b9d389b7fe33, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..cb09138f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6d2b2ed5b19c2c54ea634665a6528cc8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPositionProfile.asset new file mode 100644 index 00000000..f36e8816 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPositionProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Trackpad-ThumbstickPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trackpad-Thumbstick Position + stateChangeType: 0 + axisType: 4 + inputType: 21 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 5 + description: Teleport Direction + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: AXIS_1 + axisCodeY: AXIS_2 + inputProcessors: + - {fileID: 11400000, guid: 4c86d09b4c5d8bb4b821a1ea89855739, type: 2} + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPositionProfile.asset.meta new file mode 100644 index 00000000..7cee2a79 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4af4e345ac5f4b74e8ea970ba5e82ea2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPressProfile.asset new file mode 100644 index 00000000..80db921e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Trackpad-ThumbstickPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trackpad-Thumbstick Press + stateChangeType: 0 + axisType: 2 + inputType: 24 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 338 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPressProfile.asset.meta new file mode 100644 index 00000000..7600039f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e2b4ed92629e244c94589fdbece2888 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickTouchProfile.asset new file mode 100644 index 00000000..84af7b5f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Trackpad-ThumbstickTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trackpad-Thumbstick Touch + stateChangeType: 0 + axisType: 2 + inputType: 22 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 346 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickTouchProfile.asset.meta new file mode 100644 index 00000000..d3f9a944 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/Trackpad-ThumbstickTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3fd3da07ab9a1db43a939dc4e34a860a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPositionProfile.asset new file mode 100644 index 00000000..f2edfde1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Position + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_9 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPositionProfile.asset.meta new file mode 100644 index 00000000..17fd7944 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: adc7180895c13b54d963bbfbc70a6cae +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPress(Select)Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPress(Select)Profile.asset new file mode 100644 index 00000000..6a4134fb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPress(Select)Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPress(Select)Profile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Press (Select) + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: AXIS_9 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPress(Select)Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPress(Select)Profile.asset.meta new file mode 100644 index 00000000..852e7a40 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerPress(Select)Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e07e68458dbcfe741971c4174d2f33db +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerTouchProfile.asset new file mode 100644 index 00000000..6c810dd0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Touch + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 344 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerTouchProfile.asset.meta new file mode 100644 index 00000000..abb48419 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/TriggerTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 20cb5e7bfb5533240b548d57b8c060c9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId2Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId2Profile.asset new file mode 100644 index 00000000..9157b4e5 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId2Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: UnityButtonId2Profile + m_EditorClassIdentifier: + interactionMapping: + description: Unity Button Id 2 + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 332 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId2Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId2Profile.asset.meta new file mode 100644 index 00000000..728bdf7a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId2Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2443ec0cb7620944283baf577922b287 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId3Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId3Profile.asset new file mode 100644 index 00000000..94a3c103 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId3Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: UnityButtonId3Profile + m_EditorClassIdentifier: + interactionMapping: + description: Unity Button Id 3 + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 333 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId3Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId3Profile.asset.meta new file mode 100644 index 00000000..e860400e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/UnityButtonId3Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 910c04dccf7ee9142b108a03e27ed3e6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadPositionProfile.asset new file mode 100644 index 00000000..3f7b0eab --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: WMRTouchpadPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: WMR Touchpad Position + stateChangeType: 0 + axisType: 4 + inputType: 21 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: AXIS_17 + axisCodeY: AXIS_18 + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadPositionProfile.asset.meta new file mode 100644 index 00000000..7b672719 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c51c84e09e92d0042867a21d8be15987 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadTouchProfile.asset new file mode 100644 index 00000000..dd3f0238 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: WMRTouchpadTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: WMR Touchpad Touch + stateChangeType: 0 + axisType: 2 + inputType: 22 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 348 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadTouchProfile.asset.meta new file mode 100644 index 00000000..32a2d2ae --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Left/WMRTouchpadTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 89f21e31659b1fb44bd5ce3879f18930 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/LeftGenericOpenVRControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/LeftGenericOpenVRControllerProfile.asset new file mode 100644 index 00000000..e1988880 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/LeftGenericOpenVRControllerProfile.asset @@ -0,0 +1,34 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: LeftGenericOpenVRControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 8de3a393-71f8-47a4-89fe-7927b034deab + handedness: 1 + visualizationProfile: {fileID: 11400000, guid: fe125eaaf5547684d8506b794c5a6016, + type: 2} + useCustomInteractions: 1 + interactionMappingProfiles: + - {fileID: 11400000, guid: 6d2b2ed5b19c2c54ea634665a6528cc8, type: 2} + - {fileID: 11400000, guid: 95bb957ff19b7ea4f82fbc5b7c316172, type: 2} + - {fileID: 11400000, guid: adc7180895c13b54d963bbfbc70a6cae, type: 2} + - {fileID: 11400000, guid: e07e68458dbcfe741971c4174d2f33db, type: 2} + - {fileID: 11400000, guid: 20cb5e7bfb5533240b548d57b8c060c9, type: 2} + - {fileID: 11400000, guid: c26314cd36c65284e8544b41c7191b83, type: 2} + - {fileID: 11400000, guid: 4af4e345ac5f4b74e8ea970ba5e82ea2, type: 2} + - {fileID: 11400000, guid: 3fd3da07ab9a1db43a939dc4e34a860a, type: 2} + - {fileID: 11400000, guid: 6e2b4ed92629e244c94589fdbece2888, type: 2} + - {fileID: 11400000, guid: 2443ec0cb7620944283baf577922b287, type: 2} + - {fileID: 11400000, guid: 910c04dccf7ee9142b108a03e27ed3e6, type: 2} + - {fileID: 11400000, guid: 89f21e31659b1fb44bd5ce3879f18930, type: 2} + - {fileID: 11400000, guid: c51c84e09e92d0042867a21d8be15987, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/LeftGenericOpenVRControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/LeftGenericOpenVRControllerProfile.asset.meta new file mode 100644 index 00000000..805af5c6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/LeftGenericOpenVRControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ab6b31d38d8d43e4ea4ac70f9230a85f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right.meta new file mode 100644 index 00000000..ef6367e4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9b0fa35a07893a244881aff3a80f2c84 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/GripTriggerPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/GripTriggerPositionProfile.asset new file mode 100644 index 00000000..351969f4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/GripTriggerPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: GripTriggerPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Trigger Position + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 7 + description: Grip Strength + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_12 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/GripTriggerPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/GripTriggerPositionProfile.asset.meta new file mode 100644 index 00000000..b50d36b5 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/GripTriggerPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a909ea0255f767445a1bdb7870e5ff05 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/InvertDualAxisProcessor.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/InvertDualAxisProcessor.asset new file mode 100644 index 00000000..cad2e406 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/InvertDualAxisProcessor.asset @@ -0,0 +1,16 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bf89b42d98d441ee99759646f3ab757d, type: 3} + m_Name: InvertDualAxisProcessor + m_EditorClassIdentifier: + invertX: 0 + invertY: 1 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/InvertDualAxisProcessor.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/InvertDualAxisProcessor.asset.meta new file mode 100644 index 00000000..32734c92 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/InvertDualAxisProcessor.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5a9647490dc779a4b8da4cd98fb264e2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialGripProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialGripProfile.asset new file mode 100644 index 00000000..0eb3e268 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialGripProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialGripProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Grip + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialGripProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialGripProfile.asset.meta new file mode 100644 index 00000000..a54ed5ce --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialGripProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 09bbe246c181a104483505dbe8702b72 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialPointerProfile.asset new file mode 100644 index 00000000..8e35daa3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialPointerProfile.asset @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 9e0e4acc675a18b4b9c65e9ff85cfe58, type: 2} + - {fileID: 11400000, guid: d3736f91cbeeb284fb90b9d389b7fe33, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..6029c554 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f651088a6bc26a49a5f0da9e1e1fa9a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPositionProfile.asset new file mode 100644 index 00000000..118fbe14 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPositionProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Trackpad-ThumbstickPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trackpad-Thumbstick Position + stateChangeType: 0 + axisType: 4 + inputType: 21 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 5 + description: Teleport Direction + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: AXIS_4 + axisCodeY: AXIS_5 + inputProcessors: + - {fileID: 11400000, guid: 5a9647490dc779a4b8da4cd98fb264e2, type: 2} + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPositionProfile.asset.meta new file mode 100644 index 00000000..2bd98bdb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c18e9bbf923010b4293189a2923e8e29 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPressProfile.asset new file mode 100644 index 00000000..c949ab73 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Trackpad-ThumbstickPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trackpad-Thumbstick Press + stateChangeType: 0 + axisType: 2 + inputType: 24 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 339 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPressProfile.asset.meta new file mode 100644 index 00000000..56a359d5 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0f52b8ad48bad9d4483f3c5e09f507f6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickTouchProfile.asset new file mode 100644 index 00000000..be132e50 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Trackpad-ThumbstickTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trackpad-Thumbstick Touch + stateChangeType: 0 + axisType: 2 + inputType: 22 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 347 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickTouchProfile.asset.meta new file mode 100644 index 00000000..0588fa52 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/Trackpad-ThumbstickTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9a4725bc0eaa7f347bbc36a16b3a42c1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPositionProfile.asset new file mode 100644 index 00000000..5b46845b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Position + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_10 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPositionProfile.asset.meta new file mode 100644 index 00000000..398e6340 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9aaa4a2052f469144bbab9b38a0d8182 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPress(Select)Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPress(Select)Profile.asset new file mode 100644 index 00000000..b35be76d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPress(Select)Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPress(Select)Profile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Press (Select) + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: AXIS_10 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPress(Select)Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPress(Select)Profile.asset.meta new file mode 100644 index 00000000..6aed1454 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerPress(Select)Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 36ffc57c4d8a73e48adb58ed3a856915 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerTouchProfile.asset new file mode 100644 index 00000000..b0406995 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Touch + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 345 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerTouchProfile.asset.meta new file mode 100644 index 00000000..01c2648b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/TriggerTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ff44627970aeceb48916084b298447d5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId0Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId0Profile.asset new file mode 100644 index 00000000..0bb6487f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId0Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: UnityButtonId0Profile + m_EditorClassIdentifier: + interactionMapping: + description: Unity Button Id 0 + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 330 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId0Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId0Profile.asset.meta new file mode 100644 index 00000000..c87117ca --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId0Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 12fd0edf2bcf77f4996812ce38010915 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId1Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId1Profile.asset new file mode 100644 index 00000000..b04e0d2f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId1Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: UnityButtonId1Profile + m_EditorClassIdentifier: + interactionMapping: + description: Unity Button Id 1 + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 331 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId1Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId1Profile.asset.meta new file mode 100644 index 00000000..1ddb3d96 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/UnityButtonId1Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9b2a48f5c5bf99741b2ef2f600bb897e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadPositionProfile.asset new file mode 100644 index 00000000..89b20eb3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: WMRTouchpadPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: WMR Touchpad Position + stateChangeType: 0 + axisType: 4 + inputType: 21 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: AXIS_19 + axisCodeY: AXIS_20 + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadPositionProfile.asset.meta new file mode 100644 index 00000000..3ad03a41 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e0d7ff47fb7f5ae429dc98e70e1a63fc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadTouchProfile.asset new file mode 100644 index 00000000..5af8c111 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: WMRTouchpadTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: WMR Touchpad Touch + stateChangeType: 0 + axisType: 2 + inputType: 22 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 349 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadTouchProfile.asset.meta new file mode 100644 index 00000000..2a9625e6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/Right/WMRTouchpadTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4ff06011130eaae4dac0f8d69ce379c2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/RightGenericOpenVRControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/RightGenericOpenVRControllerProfile.asset new file mode 100644 index 00000000..2c9f7eae --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/RightGenericOpenVRControllerProfile.asset @@ -0,0 +1,34 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: RightGenericOpenVRControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 8de3a393-71f8-47a4-89fe-7927b034deab + handedness: 2 + visualizationProfile: {fileID: 11400000, guid: 5ee67c77447ce88409a3e04e57806963, + type: 2} + useCustomInteractions: 1 + interactionMappingProfiles: + - {fileID: 11400000, guid: 6f651088a6bc26a49a5f0da9e1e1fa9a, type: 2} + - {fileID: 11400000, guid: 09bbe246c181a104483505dbe8702b72, type: 2} + - {fileID: 11400000, guid: 9aaa4a2052f469144bbab9b38a0d8182, type: 2} + - {fileID: 11400000, guid: 36ffc57c4d8a73e48adb58ed3a856915, type: 2} + - {fileID: 11400000, guid: ff44627970aeceb48916084b298447d5, type: 2} + - {fileID: 11400000, guid: a909ea0255f767445a1bdb7870e5ff05, type: 2} + - {fileID: 11400000, guid: c18e9bbf923010b4293189a2923e8e29, type: 2} + - {fileID: 11400000, guid: 9a4725bc0eaa7f347bbc36a16b3a42c1, type: 2} + - {fileID: 11400000, guid: 0f52b8ad48bad9d4483f3c5e09f507f6, type: 2} + - {fileID: 11400000, guid: 12fd0edf2bcf77f4996812ce38010915, type: 2} + - {fileID: 11400000, guid: 9b2a48f5c5bf99741b2ef2f600bb897e, type: 2} + - {fileID: 11400000, guid: 4ff06011130eaae4dac0f8d69ce379c2, type: 2} + - {fileID: 11400000, guid: e0d7ff47fb7f5ae429dc98e70e1a63fc, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/RightGenericOpenVRControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/RightGenericOpenVRControllerProfile.asset.meta new file mode 100644 index 00000000..91ed1912 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/GenericOpenVRController/RightGenericOpenVRControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3a70179079110bd468574c6c58fff352 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers.meta new file mode 100644 index 00000000..7906e64e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9f29ae64cfd526e4ab7d209402914b05 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles.meta new file mode 100644 index 00000000..f9fab82d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0e7abf5aec7c6524fa57575b2d4d88d3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripInteractionMappingProfile.asset new file mode 100644 index 00000000..47ebd98e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftHandGripInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 16 + description: Grip Press + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..f39006d8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8e01cb476d731534093fe5edd227c54c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..73d87443 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripPoseInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftHandGripPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Pose + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..c2f1b30e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandGripPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b24f94bd93cab98498809436cb5b685f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandIndexFingerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandIndexFingerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..a6f161b4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandIndexFingerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftHandIndexFingerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Index Finger Pose + stateChangeType: 0 + axisType: 7 + inputType: 33 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 15 + description: Index Finger Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 57fc2b172a8871344b147342d8444217, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandIndexFingerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandIndexFingerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..2a0ca347 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandIndexFingerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 80556dee026997f4ba146ffda4710f79 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandPointInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandPointInteractionMappingProfile.asset new file mode 100644 index 00000000..5da71197 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandPointInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftHandPointInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Point + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandPointInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandPointInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..0d37b8d8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandPointInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 96140c34e5c8322468a744646a7b64fe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSelectInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSelectInteractionMappingProfile.asset new file mode 100644 index 00000000..ae7878a3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSelectInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftHandSelectInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Select + stateChangeType: 0 + axisType: 2 + inputType: 25 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSelectInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSelectInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..ff6b109c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSelectInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ac477884d2650664bab2f52184673eee +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSpatialPointerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSpatialPointerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..a46141c2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSpatialPointerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftHandSpatialPointerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer Pose + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: aa72cf2eb48c6fe44a827f7d68ce3e44, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSpatialPointerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSpatialPointerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..9cba6c1c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/LeftHandSpatialPointerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b7f65e3d3581e3d46ba01ecb4fedd827 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripInteractionMappingProfile.asset new file mode 100644 index 00000000..0b2b6ede --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightHandGripInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 16 + description: Grip Press + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..911d00ca --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ff17201622b23b64f8065fd2e8a79b5a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..71208b33 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripPoseInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightHandGripPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Pose + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..b72bc06c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandGripPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 31223e437c1f97a498a229666eb1d6e2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandIndexFingerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandIndexFingerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..0a01bce6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandIndexFingerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightHandIndexFingerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Index Finger Pose + stateChangeType: 0 + axisType: 7 + inputType: 33 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 15 + description: Index Finger Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 57fc2b172a8871344b147342d8444217, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandIndexFingerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandIndexFingerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..30caa74a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandIndexFingerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5e2b50bb0283a7a46aa1cb475066855f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandPointInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandPointInteractionMappingProfile.asset new file mode 100644 index 00000000..e307bde8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandPointInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightHandPointInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Point + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandPointInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandPointInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..74b98367 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandPointInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 118d8e619c1393b49bbf1d387651668c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSelectInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSelectInteractionMappingProfile.asset new file mode 100644 index 00000000..bded999e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSelectInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightHandSelectInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Select + stateChangeType: 0 + axisType: 2 + inputType: 25 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSelectInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSelectInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..4452bab2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSelectInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1fd0c5cd50876514bb0027af902ed920 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSpatialPointerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSpatialPointerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..89f0eb06 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSpatialPointerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightHandSpatialPointerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer Pose + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: aa72cf2eb48c6fe44a827f7d68ce3e44, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSpatialPointerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSpatialPointerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..27727289 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/CommonInteractionMappingProfiles/RightHandSpatialPointerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e47d35b7a8a79774c8f8386e9350cb41 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftHandVisualizationProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftHandVisualizationProfile.asset new file mode 100644 index 00000000..a57f6a18 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftHandVisualizationProfile.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b7926164960ef644850207ccce1b07e, type: 3} + m_Name: LeftHandVisualizationProfile + m_EditorClassIdentifier: + controllerVisualizationType: + reference: 5d844e0b-f913-46b8-bc3b-fa6429e62c60 + useDefaultModels: 0 + model: {fileID: 7398244499265140811, guid: 61feeca21178ba54682d3c61ff5f89a1, type: 3} + pointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + alternatePointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftHandVisualizationProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftHandVisualizationProfile.asset.meta new file mode 100644 index 00000000..a5fb64c8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftHandVisualizationProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d03625d21fb0bfb41b6642f492e27754 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftMixedRealityHandControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftMixedRealityHandControllerProfile.asset new file mode 100644 index 00000000..66a4f22d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftMixedRealityHandControllerProfile.asset @@ -0,0 +1,27 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: LeftMixedRealityHandControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: b18a9a6c-e5fd-40ae-89e9-9822415ec62b + handedness: 1 + visualizationProfile: {fileID: 11400000, guid: d03625d21fb0bfb41b6642f492e27754, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: b7f65e3d3581e3d46ba01ecb4fedd827, type: 2} + - {fileID: 11400000, guid: ac477884d2650664bab2f52184673eee, type: 2} + - {fileID: 11400000, guid: 96140c34e5c8322468a744646a7b64fe, type: 2} + - {fileID: 11400000, guid: 8e01cb476d731534093fe5edd227c54c, type: 2} + - {fileID: 11400000, guid: b24f94bd93cab98498809436cb5b685f, type: 2} + - {fileID: 11400000, guid: 80556dee026997f4ba146ffda4710f79, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftMixedRealityHandControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftMixedRealityHandControllerProfile.asset.meta new file mode 100644 index 00000000..1934929a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/LeftMixedRealityHandControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dd499836e4b82f14da2f414aad1fed8b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses.meta new file mode 100644 index 00000000..ccff31dd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 291e2a85143ebca4db3d98cfb2e44dcf +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPose.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPose.asset new file mode 100644 index 00000000..4f4d5c5d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPose.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 67355724a5b4fd841bbf691ac44ad25d, type: 3} + m_Name: FlatHandPose + m_EditorClassIdentifier: + id: flat + description: Flat hand with fingers spread out. + isDefault: 0 + keyCode: 49 + data: {fileID: 4900000, guid: d01fab68eb29b1743b37beb044cfebe1, type: 3} + didBake: 1 + isGripping: 0 + fingerCurlStrengths: + - 0.1894797 + - 0.010929594 + - 0.0030815455 + - 0.007151756 + - 0.012282488 + gripStrength: 0.0039188415 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPose.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPose.asset.meta new file mode 100644 index 00000000..fe187166 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPose.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 287ec39181134fc4eaee0a3a5e47ab9f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPoseData.json b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPoseData.json new file mode 100644 index 00000000..98eca9ad --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPoseData.json @@ -0,0 +1,420 @@ +{ + "joints": [ + { + "joint": 0, + "pose": { + "position": { + "x": 0.06179157271981239, + "y": -0.15333214402198792, + "z": -0.0469515398144722 + }, + "rotation": { + "x": -0.5501163005828857, + "y": -0.11712269484996796, + "z": 0.001836930401623249, + "w": 0.8265576958656311 + } + } + }, + { + "joint": 1, + "pose": { + "position": { + "x": 0.05801215022802353, + "y": -0.1058567613363266, + "z": -0.02556976117193699 + }, + "rotation": { + "x": -0.5501163005828857, + "y": -0.11712269484996796, + "z": 0.001836930401623249, + "w": 0.8265576958656311 + } + } + }, + { + "joint": 2, + "pose": { + "position": { + "x": 0.03695414960384369, + "y": -0.1407443881034851, + "z": -0.03328647091984749 + }, + "rotation": { + "x": -0.5855690240859985, + "y": -0.10429229587316513, + "z": 0.5890942811965942, + "w": 0.547493577003479 + } + } + }, + { + "joint": 3, + "pose": { + "position": { + "x": 0.00045104348100721836, + "y": -0.11720659583806992, + "z": -0.01997363194823265 + }, + "rotation": { + "x": -0.5386121273040772, + "y": 0.04485885053873062, + "z": 0.5422580242156982, + "w": 0.6437124609947205 + } + } + }, + { + "joint": 4, + "pose": { + "position": { + "x": -0.016296127811074258, + "y": -0.09359179437160492, + "z": -0.006718119606375694 + }, + "rotation": { + "x": -0.6040476560592651, + "y": -0.08891747146844864, + "z": 0.5752687454223633, + "w": 0.5448194742202759 + } + } + }, + { + "joint": 5, + "pose": { + "position": { + "x": -0.03216664865612984, + "y": -0.08244754374027252, + "z": -0.001603197306394577 + }, + "rotation": { + "x": -0.6040476560592651, + "y": -0.08891747146844864, + "z": 0.5752687454223633, + "w": 0.5448194742202759 + } + } + }, + { + "joint": 6, + "pose": { + "position": { + "x": 0.04794362187385559, + "y": -0.13700048625469209, + "z": -0.03438100963830948 + }, + "rotation": { + "x": -0.534980297088623, + "y": -0.28449201583862307, + "z": -0.061086010187864307, + "w": 0.7931764721870422 + } + } + }, + { + "joint": 7, + "pose": { + "position": { + "x": 0.023209279403090478, + "y": -0.08038382232189179, + "z": -0.017351558431982995 + }, + "rotation": { + "x": -0.599485456943512, + "y": -0.1474478840827942, + "z": 0.04840812832117081, + "w": 0.7852058410644531 + } + } + }, + { + "joint": 8, + "pose": { + "position": { + "x": 0.009743190370500088, + "y": -0.03727291524410248, + "z": -0.006295463070273399 + }, + "rotation": { + "x": -0.6344203948974609, + "y": -0.08629350364208222, + "z": 0.11939872056245804, + "w": 0.7588865756988525 + } + } + }, + { + "joint": 9, + "pose": { + "position": { + "x": 0.0026917937211692335, + "y": -0.013759316876530648, + "z": -0.0017971978522837163 + }, + "rotation": { + "x": -0.6451734304428101, + "y": -0.12336783856153488, + "z": 0.00809548981487751, + "w": 0.7542511224746704 + } + } + }, + { + "joint": 10, + "pose": { + "position": { + "x": -0.0002534952946007252, + "y": 0.0007631087210029364, + "z": 0.0002575620310381055 + }, + "rotation": { + "x": -0.6451734304428101, + "y": -0.12336783856153488, + "z": 0.00809548981487751, + "w": 0.7542511224746704 + } + } + }, + { + "joint": 11, + "pose": { + "position": { + "x": 0.056570135056972507, + "y": -0.13634957373142243, + "z": -0.03486650064587593 + }, + "rotation": { + "x": -0.6017327308654785, + "y": -0.1049300879240036, + "z": 0.008752312511205674, + "w": 0.7917264699935913 + } + } + }, + { + "joint": 12, + "pose": { + "position": { + "x": 0.045069482177495959, + "y": -0.07444917410612107, + "z": -0.018345370888710023 + }, + "rotation": { + "x": -0.5885983109474182, + "y": -0.10035836696624756, + "z": 0.025189023464918138, + "w": 0.8017893433570862 + } + } + }, + { + "joint": 13, + "pose": { + "position": { + "x": 0.035030756145715716, + "y": -0.025001518428325654, + "z": -0.0032290546223521234 + }, + "rotation": { + "x": -0.6631931662559509, + "y": -0.09005288034677506, + "z": -0.0027521485462784769, + "w": 0.7431085109710693 + } + } + }, + { + "joint": 14, + "pose": { + "position": { + "x": 0.031546302139759067, + "y": 0.0013798222644254566, + "z": -0.0004363078624010086 + }, + "rotation": { + "x": -0.6468731164932251, + "y": -0.11953263729810715, + "z": -0.06937266886234284, + "w": 0.7504633665084839 + } + } + }, + { + "joint": 15, + "pose": { + "position": { + "x": 0.030048875138163568, + "y": 0.017790958285331727, + "z": 0.0018172836862504483 + }, + "rotation": { + "x": -0.6468731164932251, + "y": -0.11953263729810715, + "z": -0.06937266886234284, + "w": 0.7504633665084839 + } + } + }, + { + "joint": 16, + "pose": { + "position": { + "x": 0.06806596368551254, + "y": -0.13525664806365968, + "z": -0.034837257117033008 + }, + "rotation": { + "x": -0.5803540945053101, + "y": 0.014031633734703064, + "z": 0.05480925738811493, + "w": 0.8123965859413147 + } + } + }, + { + "joint": 17, + "pose": { + "position": { + "x": 0.06544187664985657, + "y": -0.07453925907611847, + "z": -0.013881120830774308 + }, + "rotation": { + "x": -0.6466344594955444, + "y": -0.03600946068763733, + "z": 0.02467469871044159, + "w": 0.7615609765052795 + } + } + }, + { + "joint": 18, + "pose": { + "position": { + "x": 0.06159381568431854, + "y": -0.03093438223004341, + "z": -0.006733019836246967 + }, + "rotation": { + "x": -0.6550348401069641, + "y": -0.06099399924278259, + "z": -0.04121965169906616, + "w": 0.7520787715911865 + } + } + }, + { + "joint": 19, + "pose": { + "position": { + "x": 0.06070023775100708, + "y": -0.007464663125574589, + "z": -0.003544492181390524 + }, + "rotation": { + "x": -0.6712727546691895, + "y": -0.05777180939912796, + "z": -0.05727298930287361, + "w": 0.7370488047599793 + } + } + }, + { + "joint": 20, + "pose": { + "position": { + "x": 0.060552775859832767, + "y": 0.010114867240190506, + "z": -0.0019072332652285696 + }, + "rotation": { + "x": -0.6712727546691895, + "y": -0.05777180939912796, + "z": -0.05727298930287361, + "w": 0.7370488047599793 + } + } + }, + { + "joint": 21, + "pose": { + "position": { + "x": 0.07710164040327072, + "y": -0.13650110363960267, + "z": -0.032643478363752368 + }, + "rotation": { + "x": -0.5344982147216797, + "y": 0.1545339822769165, + "z": 0.10820292681455612, + "w": 0.8238464593887329 + } + } + }, + { + "joint": 22, + "pose": { + "position": { + "x": 0.08530370891094208, + "y": -0.08254323154687882, + "z": -0.010162543505430222 + }, + "rotation": { + "x": -0.6702333688735962, + "y": 0.05704934149980545, + "z": 0.006686835549771786, + "w": 0.7399358749389648 + } + } + }, + { + "joint": 23, + "pose": { + "position": { + "x": 0.08779342472553253, + "y": -0.049793362617492679, + "z": -0.0070251524448394779 + }, + "rotation": { + "x": -0.6393072605133057, + "y": 0.030266048386693, + "z": -0.15569603443145753, + "w": 0.7524937987327576 + } + } + }, + { + "joint": 24, + "pose": { + "position": { + "x": 0.09219621121883393, + "y": -0.03264733776450157, + "z": -0.0037694787606596948 + }, + "rotation": { + "x": -0.6555882692337036, + "y": -0.0018634665757417679, + "z": -0.09289215505123139, + "w": 0.7497090101242065 + } + } + }, + { + "joint": 25, + "pose": { + "position": { + "x": 0.09392204880714417, + "y": -0.018381092697381974, + "z": -0.0017222119495272637 + }, + "rotation": { + "x": -0.6555882692337036, + "y": -0.0018634665757417679, + "z": -0.09289215505123139, + "w": 0.7497090101242065 + } + } + } + ] +} \ No newline at end of file diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPoseData.json.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPoseData.json.meta new file mode 100644 index 00000000..b93abeae --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/FlatHandPoseData.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d01fab68eb29b1743b37beb044cfebe1 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPose.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPose.asset new file mode 100644 index 00000000..205a9286 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPose.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 67355724a5b4fd841bbf691ac44ad25d, type: 3} + m_Name: GrabHandPose + m_EditorClassIdentifier: + id: grab + description: Grab with whole hand, fist shape. + isDefault: 0 + keyCode: 50 + data: {fileID: 4900000, guid: 99870b188ec58c949b89786e62a77394, type: 3} + didBake: 1 + isGripping: 1 + fingerCurlStrengths: + - 1 + - 1 + - 1 + - 1 + - 1 + gripStrength: 1 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPose.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPose.asset.meta new file mode 100644 index 00000000..8c3314cb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPose.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d3d67de686d952849b6771a111518e0d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPoseData.json b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPoseData.json new file mode 100644 index 00000000..8aa4dda8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPoseData.json @@ -0,0 +1,420 @@ +{ + "joints": [ + { + "joint": 0, + "pose": { + "position": { + "x": 0.059647563844919208, + "y": -0.018170714378356935, + "z": -0.07320141047239304 + }, + "rotation": { + "x": -0.44069746136665347, + "y": -0.3151600956916809, + "z": -0.029152734205126764, + "w": 0.8398429155349731 + } + } + }, + { + "joint": 1, + "pose": { + "position": { + "x": 0.040150947868824008, + "y": 0.022433746606111528, + "z": -0.04928050562739372 + }, + "rotation": { + "x": -0.44069746136665347, + "y": -0.3151600956916809, + "z": -0.029152734205126764, + "w": 0.8398429155349731 + } + } + }, + { + "joint": 2, + "pose": { + "position": { + "x": 0.033823080360889438, + "y": -0.014000600203871727, + "z": -0.06483504176139832 + }, + "rotation": { + "x": 0.46251192688941958, + "y": 0.15892137587070466, + "z": -0.748396635055542, + "w": -0.44902268052101138 + } + } + }, + { + "joint": 3, + "pose": { + "position": { + "x": -0.0048112208023667339, + "y": -0.005827075336128473, + "z": -0.04063580185174942 + }, + "rotation": { + "x": 0.32614850997924807, + "y": -0.017511412501335145, + "z": -0.7735356688499451, + "w": -0.5439797639846802 + } + } + }, + { + "joint": 4, + "pose": { + "position": { + "x": -0.02188277430832386, + "y": 0.0075818500481545929, + "z": -0.01290540024638176 + }, + "rotation": { + "x": 0.22856087982654572, + "y": -0.09300848096609116, + "z": -0.7769821286201477, + "w": -0.5795565247535706 + } + } + }, + { + "joint": 5, + "pose": { + "position": { + "x": -0.026505667716264726, + "y": 0.015197398141026497, + "z": 0.0034610535949468614 + }, + "rotation": { + "x": 0.22856087982654572, + "y": -0.09300848096609116, + "z": -0.7769821286201477, + "w": -0.5795565247535706 + } + } + }, + { + "joint": 6, + "pose": { + "position": { + "x": 0.04238410294055939, + "y": -0.007463002577424049, + "z": -0.06319385766983032 + }, + "rotation": { + "x": -0.420803427696228, + "y": -0.44982725381851199, + "z": -0.04907778277993202, + "w": 0.7862387895584106 + } + } + }, + { + "joint": 7, + "pose": { + "position": { + "x": -0.0008817678317427635, + "y": 0.03838954120874405, + "z": -0.04752813279628754 + }, + "rotation": { + "x": 0.004830620251595974, + "y": 0.18448397517204286, + "z": -0.1560613363981247, + "w": -0.9703620672225952 + } + } + }, + { + "joint": 8, + "pose": { + "position": { + "x": -0.014839660376310349, + "y": 0.03651837632060051, + "z": -0.01135229505598545 + }, + "rotation": { + "x": -0.5098936557769775, + "y": 0.03039226494729519, + "z": -0.30394697189331057, + "w": -0.8042332530021668 + } + } + }, + { + "joint": 9, + "pose": { + "position": { + "x": -0.008270945399999619, + "y": 0.015406630001962185, + "z": 0.0006891884841024876 + }, + "rotation": { + "x": -0.7222777009010315, + "y": -0.08202659338712692, + "z": -0.2391108274459839, + "w": -0.6440979242324829 + } + } + }, + { + "joint": 10, + "pose": { + "position": { + "x": -0.0009594520088285208, + "y": 0.000933439121581614, + "z": -0.00021468542399816215 + }, + "rotation": { + "x": -0.7222777009010315, + "y": -0.08202659338712692, + "z": -0.2391108274459839, + "w": -0.6440979242324829 + } + } + }, + { + "joint": 11, + "pose": { + "position": { + "x": 0.04958740621805191, + "y": -0.004707379266619682, + "z": -0.06129273772239685 + }, + "rotation": { + "x": -0.5128890872001648, + "y": -0.29369285702705386, + "z": 0.018453821539878846, + "w": 0.8064419627189636 + } + } + }, + { + "joint": 12, + "pose": { + "position": { + "x": 0.020074930042028428, + "y": 0.04420189931988716, + "z": -0.04323747381567955 + }, + "rotation": { + "x": -0.07308150827884674, + "y": 0.17278942465782166, + "z": -0.10241489112377167, + "w": -0.9769001603126526 + } + } + }, + { + "joint": 13, + "pose": { + "position": { + "x": 0.005748542491346598, + "y": 0.0362907275557518, + "z": -0.001959702931344509 + }, + "rotation": { + "x": -0.7482351660728455, + "y": 0.06403420120477677, + "z": -0.2061866670846939, + "w": -0.6274414658546448 + } + } + }, + { + "joint": 14, + "pose": { + "position": { + "x": 0.012452101334929467, + "y": 0.007901951670646668, + "z": -0.0057104239240288738 + }, + "rotation": { + "x": -0.9225407838821411, + "y": -0.07818678766489029, + "z": -0.1428528130054474, + "w": -0.3514384627342224 + } + } + }, + { + "joint": 15, + "pose": { + "position": { + "x": 0.01802952028810978, + "y": -0.003061514813452959, + "z": -0.01820256933569908 + }, + "rotation": { + "x": -0.9225407838821411, + "y": -0.07818678766489029, + "z": -0.1428528130054474, + "w": -0.3514384627342224 + } + } + }, + { + "joint": 16, + "pose": { + "position": { + "x": 0.05912885442376137, + "y": -0.0009383354336023331, + "z": -0.05809984356164932 + }, + "rotation": { + "x": -0.49521127343177798, + "y": -0.17924758791923524, + "z": 0.07874160259962082, + "w": 0.846425473690033 + } + } + }, + { + "joint": 17, + "pose": { + "position": { + "x": 0.038666337728500369, + "y": 0.04252086579799652, + "z": -0.03421220928430557 + }, + "rotation": { + "x": -0.1513676941394806, + "y": 0.15960678458213807, + "z": -0.05129222199320793, + "w": -0.9741657376289368 + } + } + }, + { + "joint": 18, + "pose": { + "position": { + "x": 0.02693704515695572, + "y": 0.030163494870066644, + "z": 0.0016453623538836837 + }, + "rotation": { + "x": -0.8552912473678589, + "y": 0.0920121893286705, + "z": -0.11032526195049286, + "w": -0.4979609251022339 + } + } + }, + { + "joint": 19, + "pose": { + "position": { + "x": 0.029263043776154519, + "y": 0.009234108030796051, + "z": -0.009864533320069313 + }, + "rotation": { + "x": -0.9685380458831787, + "y": -0.018125316128134729, + "z": -0.094183549284935, + "w": -0.23075833916664124 + } + } + }, + { + "joint": 20, + "pose": { + "position": { + "x": 0.032915160059928897, + "y": 0.0007288604974746704, + "z": -0.02667597308754921 + }, + "rotation": { + "x": -0.9685380458831787, + "y": -0.018125316128134729, + "z": -0.094183549284935, + "w": -0.23075833916664124 + } + } + }, + { + "joint": 21, + "pose": { + "position": { + "x": 0.0675557404756546, + "y": -0.0004099104553461075, + "z": -0.05376683175563812 + }, + "rotation": { + "x": -0.44121748208999636, + "y": -0.05341072380542755, + "z": 0.14569664001464845, + "w": 0.8838818073272705 + } + } + }, + { + "joint": 22, + "pose": { + "position": { + "x": 0.05575947463512421, + "y": 0.04002845287322998, + "z": -0.02176406979560852 + }, + "rotation": { + "x": -0.2122899889945984, + "y": 0.1802181601524353, + "z": 0.03122050315141678, + "w": -0.959945559501648 + } + } + }, + { + "joint": 23, + "pose": { + "position": { + "x": 0.046450983732938769, + "y": 0.029760107398033143, + "z": 0.0001273825764656067 + }, + "rotation": { + "x": -0.8192430138587952, + "y": 0.16303858160972596, + "z": -0.0602981373667717, + "w": -0.5465834140777588 + } + } + }, + { + "joint": 24, + "pose": { + "position": { + "x": 0.044868819415569308, + "y": 0.011532457545399666, + "z": -0.007741663604974747 + }, + "rotation": { + "x": -0.9710148572921753, + "y": 0.04234015569090843, + "z": 0.042903631925582889, + "w": -0.23259779810905457 + } + } + }, + { + "joint": 25, + "pose": { + "position": { + "x": 0.04328276216983795, + "y": 0.004625056870281696, + "z": -0.0214386023581028 + }, + "rotation": { + "x": -0.9710148572921753, + "y": 0.04234015569090843, + "z": 0.042903631925582889, + "w": -0.23259779810905457 + } + } + } + ] +} \ No newline at end of file diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPoseData.json.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPoseData.json.meta new file mode 100644 index 00000000..0dafe8e0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/GrabHandPoseData.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 99870b188ec58c949b89786e62a77394 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPose.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPose.asset new file mode 100644 index 00000000..368391bb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPose.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 67355724a5b4fd841bbf691ac44ad25d, type: 3} + m_Name: OpenHandPose + m_EditorClassIdentifier: + id: open + description: Relaxed hand pose. + isDefault: 1 + keyCode: 0 + data: {fileID: 4900000, guid: f5a9db29d9d2bd741b793a18dac228d6, type: 3} + didBake: 1 + isGripping: 0 + fingerCurlStrengths: + - 0.6183342 + - 0.12485591 + - 0.88863266 + - 1 + - 0.9942756 + gripStrength: 0.8003202 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPose.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPose.asset.meta new file mode 100644 index 00000000..d0797026 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPose.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5269abf28f233044d9ec71f10b94552d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPoseData.json b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPoseData.json new file mode 100644 index 00000000..e8e62afe --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPoseData.json @@ -0,0 +1,420 @@ +{ + "joints": [ + { + "joint": 0, + "pose": { + "position": { + "x": 0.07397598028182984, + "y": -0.1239677220582962, + "z": -0.05636374652385712 + }, + "rotation": { + "x": -0.5306746959686279, + "y": -0.24036270380020142, + "z": -0.0010364949703216553, + "w": 0.8126773834228516 + } + } + }, + { + "joint": 1, + "pose": { + "position": { + "x": 0.06148417666554451, + "y": -0.08249785006046295, + "z": -0.04003134369850159 + }, + "rotation": { + "x": -0.5306746959686279, + "y": -0.24036270380020142, + "z": -0.0010364949703216553, + "w": 0.8126773834228516 + } + } + }, + { + "joint": 2, + "pose": { + "position": { + "x": 0.05004027485847473, + "y": -0.1168040931224823, + "z": -0.046657364815473559 + }, + "rotation": { + "x": -0.5606539249420166, + "y": -0.098196841776371, + "z": 0.670694887638092, + "w": 0.4761941432952881 + } + } + }, + { + "joint": 3, + "pose": { + "position": { + "x": 0.014790681190788746, + "y": -0.1000247374176979, + "z": -0.031946491450071338 + }, + "rotation": { + "x": -0.5155644416809082, + "y": -0.0010041594505310059, + "z": 0.6619959473609924, + "w": 0.5445378422737122 + } + } + }, + { + "joint": 4, + "pose": { + "position": { + "x": -0.0062080565840005878, + "y": -0.0828109011054039, + "z": -0.01753186620771885 + }, + "rotation": { + "x": -0.5490170121192932, + "y": -0.08343470841646195, + "z": 0.6728134751319885, + "w": 0.48939600586891177 + } + } + }, + { + "joint": 5, + "pose": { + "position": { + "x": -0.02095535211265087, + "y": -0.07516473531723023, + "z": -0.010627731680870057 + }, + "rotation": { + "x": -0.5490170121192932, + "y": -0.08343470841646195, + "z": 0.6728134751319885, + "w": 0.48939600586891177 + } + } + }, + { + "joint": 6, + "pose": { + "position": { + "x": 0.058891069144010547, + "y": -0.11150021106004715, + "z": -0.047359079122543338 + }, + "rotation": { + "x": -0.5242606997489929, + "y": -0.3638727068901062, + "z": 0.0003723353147506714, + "w": 0.7699006795883179 + } + } + }, + { + "joint": 7, + "pose": { + "position": { + "x": 0.025922514498233796, + "y": -0.06404880434274674, + "z": -0.036451879888772967 + }, + "rotation": { + "x": -0.5153175592422485, + "y": -0.13684964179992677, + "z": 0.0975230410695076, + "w": 0.840372622013092 + } + } + }, + { + "joint": 8, + "pose": { + "position": { + "x": 0.012116845697164536, + "y": -0.028988275676965715, + "z": -0.0184309259057045 + }, + "rotation": { + "x": -0.5083625912666321, + "y": -0.08690404891967774, + "z": 0.1772240400314331, + "w": 0.8382880687713623 + } + } + }, + { + "joint": 9, + "pose": { + "position": { + "x": 0.0047910469584167, + "y": -0.01052884478121996, + "z": -0.007911253720521927 + }, + "rotation": { + "x": -0.4986042380332947, + "y": -0.10437075048685074, + "z": 0.07316453754901886, + "w": 0.8577484488487244 + } + } + }, + { + "joint": 10, + "pose": { + "position": { + "x": 0.0011067038867622614, + "y": 0.0017288230592384935, + "z": -0.0008905145805329084 + }, + "rotation": { + "x": -0.4986042380332947, + "y": -0.10437075048685074, + "z": 0.07316453754901886, + "w": 0.8577484488487244 + } + } + }, + { + "joint": 11, + "pose": { + "position": { + "x": 0.06627093255519867, + "y": -0.1093648374080658, + "z": -0.04731958359479904 + }, + "rotation": { + "x": -0.5980523824691773, + "y": -0.19373856484889985, + "z": 0.061999037861824039, + "w": 0.7752125859260559 + } + } + }, + { + "joint": 12, + "pose": { + "position": { + "x": 0.04579643905162811, + "y": -0.05998942255973816, + "z": -0.035861626267433169 + }, + "rotation": { + "x": 0.07707051932811737, + "y": 0.09493987262248993, + "z": -0.06967925280332566, + "w": -0.9900561571121216 + } + } + }, + { + "joint": 13, + "pose": { + "position": { + "x": 0.03759719431400299, + "y": -0.054239436984062198, + "z": 0.004158938303589821 + }, + "rotation": { + "x": -0.5364435911178589, + "y": 0.035090312361717227, + "z": -0.1292860358953476, + "w": -0.8333183526992798 + } + } + }, + { + "joint": 14, + "pose": { + "position": { + "x": 0.039636775851249698, + "y": -0.07725092768669129, + "z": 0.014920881018042565 + }, + "rotation": { + "x": -0.7898687720298767, + "y": -0.05351902171969414, + "z": -0.050689004361629489, + "w": -0.6095116138458252 + } + } + }, + { + "joint": 15, + "pose": { + "position": { + "x": 0.04198702797293663, + "y": -0.09284322708845139, + "z": 0.010831182822585106 + }, + "rotation": { + "x": -0.7898687720298767, + "y": -0.05351902171969414, + "z": -0.050689004361629489, + "w": -0.6095116138458252 + } + } + }, + { + "joint": 16, + "pose": { + "position": { + "x": 0.07596171647310257, + "y": -0.10612225532531738, + "z": -0.04667811840772629 + }, + "rotation": { + "x": -0.5675100088119507, + "y": -0.08019199222326279, + "z": 0.10617346316576004, + "w": 0.8125444054603577 + } + } + }, + { + "joint": 17, + "pose": { + "position": { + "x": 0.06377431005239487, + "y": -0.06213853880763054, + "z": -0.030012063682079316 + }, + "rotation": { + "x": -0.03975258022546768, + "y": 0.09559198468923569, + "z": -0.024301081895828248, + "w": -0.9943375587463379 + } + } + }, + { + "joint": 18, + "pose": { + "position": { + "x": 0.056988153606653216, + "y": -0.06515654176473618, + "z": 0.005276134237647057 + }, + "rotation": { + "x": -0.7588484287261963, + "y": 0.0701710507273674, + "z": -0.045488141477108, + "w": -0.6459669470787048 + } + } + }, + { + "joint": 19, + "pose": { + "position": { + "x": 0.05652663856744766, + "y": -0.08611556887626648, + "z": 0.0018516592681407929 + }, + "rotation": { + "x": -0.9129649996757507, + "y": -0.005179869011044502, + "z": -0.007560268044471741, + "w": -0.408629447221756 + } + } + }, + { + "joint": 20, + "pose": { + "position": { + "x": 0.056841082870960239, + "y": -0.09943331778049469, + "z": -0.010053567588329316 + }, + "rotation": { + "x": -0.9129649996757507, + "y": -0.005179869011044502, + "z": -0.007560268044471741, + "w": -0.408629447221756 + } + } + }, + { + "joint": 21, + "pose": { + "position": { + "x": 0.08423660695552826, + "y": -0.10567539930343628, + "z": -0.044220417737960818 + }, + "rotation": { + "x": -0.5077040791511536, + "y": 0.04072892665863037, + "z": 0.1517779380083084, + "w": 0.8470779657363892 + } + } + }, + { + "joint": 22, + "pose": { + "position": { + "x": 0.0801829993724823, + "y": -0.06412312388420105, + "z": -0.021305494010448457 + }, + "rotation": { + "x": -0.08299122005701065, + "y": 0.1249239444732666, + "z": 0.04155319184064865, + "w": -0.9878235459327698 + } + } + }, + { + "joint": 23, + "pose": { + "position": { + "x": 0.07411551475524903, + "y": -0.0677957683801651, + "z": 0.0015332028269767762 + }, + "rotation": { + "x": -0.715654730796814, + "y": 0.1371033787727356, + "z": 0.001321159303188324, + "w": -0.6849520206451416 + } + } + }, + { + "joint": 24, + "pose": { + "position": { + "x": 0.07075578719377518, + "y": -0.08515383303165436, + "z": 0.00044181570410728455 + }, + "rotation": { + "x": -0.8999292254447937, + "y": 0.06855495274066925, + "z": 0.11455988883972168, + "w": -0.41592133045196535 + } + } + }, + { + "joint": 25, + "pose": { + "position": { + "x": 0.0670883059501648, + "y": -0.09537018835544586, + "z": -0.008319821208715439 + }, + "rotation": { + "x": -0.8999292254447937, + "y": 0.06855495274066925, + "z": 0.11455988883972168, + "w": -0.41592133045196535 + } + } + } + ] +} \ No newline at end of file diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPoseData.json.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPoseData.json.meta new file mode 100644 index 00000000..ef0464a3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/OpenHandPoseData.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f5a9db29d9d2bd741b793a18dac228d6 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPose.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPose.asset new file mode 100644 index 00000000..09a51ca4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPose.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 67355724a5b4fd841bbf691ac44ad25d, type: 3} + m_Name: PinchHandPose + m_EditorClassIdentifier: + id: pinch + description: Index finger and Thumb touching, index tip does not move. + isDefault: 0 + keyCode: 323 + data: {fileID: 4900000, guid: c39432faae5de8245a47d3fb3d0a6a3d, type: 3} + didBake: 1 + isGripping: 0 + fingerCurlStrengths: + - 1 + - 0.65910643 + - 0.9230474 + - 0.98393315 + - 1 + gripStrength: 0.96465635 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPose.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPose.asset.meta new file mode 100644 index 00000000..a82883f4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPose.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ece078ec16cbbd44bb7eba974dca862 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPoseData.json b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPoseData.json new file mode 100644 index 00000000..20ab6794 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPoseData.json @@ -0,0 +1,420 @@ +{ + "joints": [ + { + "joint": 0, + "pose": { + "position": { + "x": 0.09497044235467911, + "y": -0.07192057371139527, + "z": -0.04324067756533623 + }, + "rotation": { + "x": -0.5712693333625794, + "y": -0.40886738896369936, + "z": -0.1171460971236229, + "w": 0.7017942667007446 + } + } + }, + { + "joint": 1, + "pose": { + "position": { + "x": 0.07844693213701248, + "y": -0.02523619495332241, + "z": -0.038608603179454806 + }, + "rotation": { + "x": -0.5712693333625794, + "y": -0.40886738896369936, + "z": -0.1171460971236229, + "w": 0.7017942667007446 + } + } + }, + { + "joint": 2, + "pose": { + "position": { + "x": 0.07043883949518204, + "y": -0.06346303224563599, + "z": -0.04465595260262489 + }, + "rotation": { + "x": 0.5995731949806213, + "y": 0.05699071288108826, + "z": -0.661469042301178, + "w": -0.44784826040267947 + } + } + }, + { + "joint": 3, + "pose": { + "position": { + "x": 0.030931103974580766, + "y": -0.041895948350429538, + "z": -0.031732141971588138 + }, + "rotation": { + "x": 0.48144450783729555, + "y": -0.07798700034618378, + "z": -0.6672651767730713, + "w": -0.5636534690856934 + } + } + }, + { + "joint": 4, + "pose": { + "position": { + "x": 0.011377684772014618, + "y": -0.01910964772105217, + "z": -0.013179950416088105 + }, + "rotation": { + "x": 0.48974254727363589, + "y": -0.04340343177318573, + "z": -0.678149402141571, + "w": -0.5469872951507568 + } + } + }, + { + "joint": 5, + "pose": { + "position": { + "x": -0.0005400769878178835, + "y": -0.007630650419741869, + "z": -0.0031634948682039978 + }, + "rotation": { + "x": 0.48974254727363589, + "y": -0.04340343177318573, + "z": -0.678149402141571, + "w": -0.5469872951507568 + } + } + }, + { + "joint": 6, + "pose": { + "position": { + "x": 0.07907166332006455, + "y": -0.05782192200422287, + "z": -0.04244212433695793 + }, + "rotation": { + "x": -0.5483980774879456, + "y": -0.5408281683921814, + "z": -0.10956580191850662, + "w": 0.6282992959022522 + } + } + }, + { + "joint": 7, + "pose": { + "position": { + "x": 0.04231342673301697, + "y": -0.004755572881549597, + "z": -0.05469445511698723 + }, + "rotation": { + "x": 0.33803752064704897, + "y": 0.3461552560329437, + "z": -0.07535676658153534, + "w": -0.8719203472137451 + } + } + }, + { + "joint": 8, + "pose": { + "position": { + "x": 0.01564139500260353, + "y": 0.017137302085757257, + "z": -0.0330251045525074 + }, + "rotation": { + "x": 0.011520777828991413, + "y": 0.23532292246818543, + "z": -0.26723867654800417, + "w": -0.9344292879104614 + } + } + }, + { + "joint": 9, + "pose": { + "position": { + "x": 0.004365644417703152, + "y": 0.014503425918519497, + "z": -0.010553261265158654 + }, + "rotation": { + "x": -0.18848013877868653, + "y": 0.1752738356590271, + "z": -0.23216751217842103, + "w": -0.938201367855072 + } + } + }, + { + "joint": 10, + "pose": { + "position": { + "x": 0.0005400769878178835, + "y": 0.007630650419741869, + "z": 0.0031634948682039978 + }, + "rotation": { + "x": -0.18848013877868653, + "y": 0.1752738356590271, + "z": -0.23216751217842103, + "w": -0.938201367855072 + } + } + }, + { + "joint": 11, + "pose": { + "position": { + "x": 0.08557399362325669, + "y": -0.05548100546002388, + "z": -0.03908822312951088 + }, + "rotation": { + "x": -0.6404632925987244, + "y": -0.373137503862381, + "z": -0.08211363852024079, + "w": 0.6662076711654663 + } + } + }, + { + "joint": 12, + "pose": { + "position": { + "x": 0.061702992767095569, + "y": 0.00021764193661510944, + "z": -0.045107852667570117 + }, + "rotation": { + "x": 0.1714177131652832, + "y": 0.3295632004737854, + "z": -0.056909773498773578, + "w": -0.9267067909240723 + } + } + }, + { + "joint": 13, + "pose": { + "position": { + "x": 0.03364700824022293, + "y": 0.012689230032265187, + "z": -0.012882571667432785 + }, + "rotation": { + "x": -0.5295533537864685, + "y": 0.20503298938274384, + "z": -0.28541553020477297, + "w": -0.7721519470214844 + } + } + }, + { + "joint": 14, + "pose": { + "position": { + "x": 0.033218998461961749, + "y": -0.01466647069901228, + "z": -0.00248397677205503 + }, + "rotation": { + "x": -0.8061169385910034, + "y": 0.037188127636909488, + "z": -0.2547818720340729, + "w": -0.5337793231010437 + } + } + }, + { + "joint": 15, + "pose": { + "position": { + "x": 0.039724528789520267, + "y": -0.030166195705533029, + "z": -0.007772216107696295 + }, + "rotation": { + "x": -0.8061169385910034, + "y": 0.037188127636909488, + "z": -0.2547818720340729, + "w": -0.5337793231010437 + } + } + }, + { + "joint": 16, + "pose": { + "position": { + "x": 0.09404698014259339, + "y": -0.0519840344786644, + "z": -0.03407851234078407 + }, + "rotation": { + "x": -0.6309950351715088, + "y": -0.2576797306537628, + "z": -0.04002552852034569, + "w": 0.7306466698646545 + } + } + }, + { + "joint": 17, + "pose": { + "position": { + "x": 0.07623305171728134, + "y": -0.0004766823258250952, + "z": -0.030205076560378076 + }, + "rotation": { + "x": 0.06152142584323883, + "y": 0.3274478316307068, + "z": -0.026347285136580468, + "w": -0.9425047636032105 + } + } + }, + { + "joint": 18, + "pose": { + "position": { + "x": 0.05164350941777229, + "y": 0.003435472259297967, + "z": 0.0006257446948438883 + }, + "rotation": { + "x": -0.7006344199180603, + "y": 0.22492779791355134, + "z": -0.23193849623203278, + "w": -0.6362745761871338 + } + } + }, + { + "joint": 19, + "pose": { + "position": { + "x": 0.05256718769669533, + "y": -0.020418396219611169, + "z": -0.0013549791183322669 + }, + "rotation": { + "x": -0.8894772529602051, + "y": 0.06817293167114258, + "z": -0.23703967034816743, + "w": -0.38538727164268496 + } + } + }, + { + "joint": 20, + "pose": { + "position": { + "x": 0.05969690904021263, + "y": -0.03429318964481354, + "z": -0.012785671278834343 + }, + "rotation": { + "x": -0.8894772529602051, + "y": 0.06817293167114258, + "z": -0.23703967034816743, + "w": -0.38538727164268496 + } + } + }, + { + "joint": 21, + "pose": { + "position": { + "x": 0.10081055015325546, + "y": -0.05098910629749298, + "z": -0.027507970109581949 + }, + "rotation": { + "x": -0.5876141786575317, + "y": -0.13647006452083589, + "z": 0.010980717837810517, + "w": 0.7974740862846375 + } + } + }, + { + "joint": 22, + "pose": { + "position": { + "x": 0.08843587338924408, + "y": -0.0008491657208651304, + "z": -0.012900425121188164 + }, + "rotation": { + "x": -0.015533886849880219, + "y": 0.36132562160491946, + "z": 0.04475637152791023, + "w": -0.9312441349029541 + } + } + }, + { + "joint": 23, + "pose": { + "position": { + "x": 0.07108605653047562, + "y": -0.000761339208111167, + "z": 0.006097117438912392 + }, + "rotation": { + "x": -0.6863744854927063, + "y": 0.3016105890274048, + "z": -0.18428879976272584, + "w": -0.6356791257858276 + } + } + }, + { + "joint": 24, + "pose": { + "position": { + "x": 0.06850060820579529, + "y": -0.02024311013519764, + "z": 0.0036448633763939144 + }, + "rotation": { + "x": -0.9307159781455994, + "y": 0.13045383989810944, + "z": -0.11257931590080261, + "w": -0.32351988554000857 + } + } + }, + { + "joint": 25, + "pose": { + "position": { + "x": 0.0704517737030983, + "y": -0.030086854472756387, + "z": -0.008287815377116204 + }, + "rotation": { + "x": -0.9307159781455994, + "y": 0.13045383989810944, + "z": -0.11257931590080261, + "w": -0.32351988554000857 + } + } + } + ] +} \ No newline at end of file diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPoseData.json.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPoseData.json.meta new file mode 100644 index 00000000..a5052801 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchHandPoseData.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c39432faae5de8245a47d3fb3d0a6a3d +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPose.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPose.asset new file mode 100644 index 00000000..623513fd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPose.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 67355724a5b4fd841bbf691ac44ad25d, type: 3} + m_Name: PinchSteadyWristHandPose + m_EditorClassIdentifier: + id: pinch-steady-wrist + description: Index finger and Thumb touching, wrist does not move. + isDefault: 0 + keyCode: 51 + data: {fileID: 4900000, guid: 8eaebf41206ee3546aed07b9a58f6a40, type: 3} + didBake: 1 + isGripping: 0 + fingerCurlStrengths: + - 0.973506 + - 0.7414424 + - 0.89368385 + - 0.9511476 + - 0.9382899 + gripStrength: 0.9429617 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPose.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPose.asset.meta new file mode 100644 index 00000000..4a23d556 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPose.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9fba060de129a9d4ea929a0d74fdc3fa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPoseData.json b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPoseData.json new file mode 100644 index 00000000..a1f72a29 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPoseData.json @@ -0,0 +1,420 @@ +{ + "joints": [ + { + "joint": 0, + "pose": { + "position": { + "x": 0.09835253655910492, + "y": -0.13776640594005586, + "z": -0.039533719420433047 + }, + "rotation": { + "x": -0.5504903793334961, + "y": -0.3628506064414978, + "z": 0.009051494300365448, + "w": 0.7516400218009949 + } + } + }, + { + "joint": 1, + "pose": { + "position": { + "x": 0.0762285590171814, + "y": -0.0935618057847023, + "z": -0.03025330975651741 + }, + "rotation": { + "x": -0.5504903793334961, + "y": -0.3628506064414978, + "z": 0.009051494300365448, + "w": 0.7516400218009949 + } + } + }, + { + "joint": 2, + "pose": { + "position": { + "x": 0.0726172998547554, + "y": -0.13283079862594605, + "z": -0.03489827364683151 + }, + "rotation": { + "x": 0.5268919467926025, + "y": 0.07137523591518402, + "z": -0.7376347184181213, + "w": -0.4172084629535675 + } + } + }, + { + "joint": 3, + "pose": { + "position": { + "x": 0.033425573259592059, + "y": -0.11720558255910874, + "z": -0.01445704698562622 + }, + "rotation": { + "x": 0.434413880109787, + "y": -0.0821000337600708, + "z": -0.7344200611114502, + "w": -0.5157689452171326 + } + } + }, + { + "joint": 4, + "pose": { + "position": { + "x": 0.014360085129737854, + "y": -0.09762166440486908, + "z": 0.006609674543142319 + }, + "rotation": { + "x": 0.4773363769054413, + "y": 0.019135713577270509, + "z": -0.7483649849891663, + "w": -0.4610738456249237 + } + } + }, + { + "joint": 5, + "pose": { + "position": { + "x": -0.00011064158752560616, + "y": -0.08949866145849228, + "z": 0.017393887042999269 + }, + "rotation": { + "x": 0.4773363769054413, + "y": 0.019135713577270509, + "z": -0.7483649849891663, + "w": -0.4610738456249237 + } + } + }, + { + "joint": 6, + "pose": { + "position": { + "x": 0.08073623478412628, + "y": -0.125896617770195, + "z": -0.034658633172512057 + }, + "rotation": { + "x": -0.5162340998649597, + "y": -0.5017301440238953, + "z": 0.006298713386058807, + "w": 0.6940672993659973 + } + } + }, + { + "joint": 7, + "pose": { + "position": { + "x": 0.03474228084087372, + "y": -0.0794244259595871, + "z": -0.03704426437616348 + }, + "rotation": { + "x": 0.24844542145729066, + "y": 0.2553045451641083, + "z": -0.1957876831293106, + "w": -0.9136616587638855 + } + } + }, + { + "joint": 8, + "pose": { + "position": { + "x": 0.011708781123161316, + "y": -0.06496208906173706, + "z": -0.006560325622558594 + }, + "rotation": { + "x": -0.07294681668281555, + "y": 0.11601599305868149, + "z": -0.3479400873184204, + "w": -0.9274918437004089 + } + } + }, + { + "joint": 9, + "pose": { + "position": { + "x": 0.007551820017397404, + "y": -0.07041776180267334, + "z": 0.017747312784194948 + }, + "rotation": { + "x": -0.23120707273483277, + "y": 0.04230353981256485, + "z": -0.283862441778183, + "w": -0.9298091530799866 + } + } + }, + { + "joint": 10, + "pose": { + "position": { + "x": 0.008366326801478863, + "y": -0.07753925025463104, + "z": 0.03171003982424736 + }, + "rotation": { + "x": -0.23120707273483277, + "y": 0.04230353981256485, + "z": -0.283862441778183, + "w": -0.9298091530799866 + } + } + }, + { + "joint": 11, + "pose": { + "position": { + "x": 0.08751480281352997, + "y": -0.12250128388404846, + "z": -0.03293202817440033 + }, + "rotation": { + "x": -0.6167790293693543, + "y": -0.3379325270652771, + "z": 0.047245174646377566, + "w": 0.7093328237533569 + } + } + }, + { + "joint": 12, + "pose": { + "position": { + "x": 0.05473826080560684, + "y": -0.07110955566167832, + "z": -0.03227551281452179 + }, + "rotation": { + "x": 0.14497825503349305, + "y": 0.23276910185813905, + "z": -0.15017877519130708, + "w": -0.9498769640922546 + } + } + }, + { + "joint": 13, + "pose": { + "position": { + "x": 0.03288401663303375, + "y": -0.061863791197538379, + "z": 0.005947750061750412 + }, + "rotation": { + "x": -0.529046893119812, + "y": 0.08228799700737, + "z": -0.27945762872695925, + "w": -0.7971096038818359 + } + } + }, + { + "joint": 14, + "pose": { + "position": { + "x": 0.03765859827399254, + "y": -0.08771546185016632, + "z": 0.018359089270234109 + }, + "rotation": { + "x": -0.7883356809616089, + "y": -0.06667964905500412, + "z": -0.20251651108264924, + "w": -0.5779290795326233 + } + } + }, + { + "joint": 15, + "pose": { + "position": { + "x": 0.044593729078769687, + "y": -0.10324498265981674, + "z": 0.013978719711303711 + }, + "rotation": { + "x": -0.7883356809616089, + "y": -0.06667964905500412, + "z": -0.20251651108264924, + "w": -0.5779290795326233 + } + } + }, + { + "joint": 16, + "pose": { + "position": { + "x": 0.09642073512077332, + "y": -0.11764736473560333, + "z": -0.03004951775074005 + }, + "rotation": { + "x": -0.6103544235229492, + "y": -0.2158902883529663, + "z": 0.09254944324493408, + "w": 0.756500780582428 + } + } + }, + { + "joint": 17, + "pose": { + "position": { + "x": 0.07221101969480515, + "y": -0.06899281591176987, + "z": -0.021143771708011628 + }, + "rotation": { + "x": 0.05531589314341545, + "y": 0.22126297652721406, + "z": -0.10504759848117829, + "w": -0.9679690599441528 + } + } + }, + { + "joint": 18, + "pose": { + "position": { + "x": 0.05479241907596588, + "y": -0.06659357994794846, + "z": 0.014326661825180054 + }, + "rotation": { + "x": -0.7176058888435364, + "y": 0.09858439117670059, + "z": -0.19834160804748536, + "w": -0.6603801846504211 + } + } + }, + { + "joint": 19, + "pose": { + "position": { + "x": 0.05848679319024086, + "y": -0.09022481739521027, + "z": 0.013152096420526505 + }, + "rotation": { + "x": -0.902705729007721, + "y": -0.04138700291514397, + "z": -0.16108426451683045, + "w": -0.39749816060066225 + } + } + }, + { + "joint": 20, + "pose": { + "position": { + "x": 0.0647393986582756, + "y": -0.10384124517440796, + "z": 0.000916551798582077 + }, + "rotation": { + "x": -0.902705729007721, + "y": -0.04138700291514397, + "z": -0.16108426451683045, + "w": -0.39749816060066225 + } + } + }, + { + "joint": 21, + "pose": { + "position": { + "x": 0.10431554913520813, + "y": -0.11550788581371308, + "z": -0.02525215595960617 + }, + "rotation": { + "x": -0.5731514096260071, + "y": -0.08393544703722, + "z": 0.14239011704921723, + "w": 0.8026066422462463 + } + } + }, + { + "joint": 22, + "pose": { + "position": { + "x": 0.08813987672328949, + "y": -0.06685832887887955, + "z": -0.0073963552713394169 + }, + "rotation": { + "x": 0.004650826565921307, + "y": 0.2523718476295471, + "z": -0.022669829428195955, + "w": -0.967362105846405 + } + } + }, + { + "joint": 23, + "pose": { + "position": { + "x": 0.07569940388202667, + "y": -0.066920705139637, + "z": 0.014825716614723206 + }, + "rotation": { + "x": -0.6876563429832459, + "y": 0.1765523999929428, + "z": -0.14831064641475678, + "w": -0.6885376572608948 + } + } + }, + { + "joint": 24, + "pose": { + "position": { + "x": 0.0749262273311615, + "y": -0.08663906902074814, + "z": 0.014672402292490006 + }, + "rotation": { + "x": -0.927348792552948, + "y": 0.0344926156103611, + "z": -0.02340996265411377, + "w": -0.37271565198898318 + } + } + }, + { + "joint": 25, + "pose": { + "position": { + "x": 0.07520446181297302, + "y": -0.09743660688400269, + "z": 0.0034288540482521059 + }, + "rotation": { + "x": -0.927348792552948, + "y": 0.0344926156103611, + "z": -0.02340996265411377, + "w": -0.37271565198898318 + } + } + } + ] +} \ No newline at end of file diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPoseData.json.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPoseData.json.meta new file mode 100644 index 00000000..bd6f9de0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PinchSteadyWristHandPoseData.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8eaebf41206ee3546aed07b9a58f6a40 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPose.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPose.asset new file mode 100644 index 00000000..1eeaddd2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPose.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 67355724a5b4fd841bbf691ac44ad25d, type: 3} + m_Name: PokeHandPose + m_EditorClassIdentifier: + id: poke + description: Index finger stretched out. + isDefault: 0 + keyCode: 324 + data: {fileID: 4900000, guid: 5f148c90347c0dc47bbfd1ed7a2d4334, type: 3} + didBake: 1 + isGripping: 0 + fingerCurlStrengths: + - 0.96689564 + - 0.17719902 + - 0.6713774 + - 0.83242744 + - 0.8090317 + gripStrength: 0.6932526 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPose.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPose.asset.meta new file mode 100644 index 00000000..890d51f2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPose.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1251200226ad995498472e45aaf12178 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPoseData.json b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPoseData.json new file mode 100644 index 00000000..36c5ca0e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPoseData.json @@ -0,0 +1,420 @@ +{ + "joints": [ + { + "joint": 0, + "pose": { + "position": { + "x": 0.042526353150606158, + "y": -0.05274807661771774, + "z": -0.002824799157679081 + }, + "rotation": { + "x": -0.3676998019218445, + "y": -0.23572500050067902, + "z": -0.11507342755794525, + "w": 0.8920522332191467 + } + } + }, + { + "joint": 1, + "pose": { + "position": { + "x": 0.03201436251401901, + "y": -0.019188636913895608, + "z": 0.02868746407330036 + }, + "rotation": { + "x": -0.3676998019218445, + "y": -0.23572500050067902, + "z": -0.11507342755794525, + "w": 0.8920522332191467 + } + } + }, + { + "joint": 2, + "pose": { + "position": { + "x": 0.020570117980241777, + "y": -0.04709470272064209, + "z": 0.006985310930758715 + }, + "rotation": { + "x": 0.3615202307701111, + "y": 0.20331884920597077, + "z": -0.6839582324028015, + "w": -0.6008830666542053 + } + } + }, + { + "joint": 3, + "pose": { + "position": { + "x": -0.009850621223449707, + "y": -0.04070408642292023, + "z": 0.034042149782180789 + }, + "rotation": { + "x": 0.21800242364406587, + "y": 0.02305757999420166, + "z": -0.7068297266960144, + "w": -0.673233151435852 + } + } + }, + { + "joint": 4, + "pose": { + "position": { + "x": -0.02049688994884491, + "y": -0.03254491835832596, + "z": 0.06248035654425621 + }, + "rotation": { + "x": 0.258157342672348, + "y": 0.0635419636964798, + "z": -0.7039065957069397, + "w": -0.6593562960624695 + } + } + }, + { + "joint": 5, + "pose": { + "position": { + "x": -0.028410332277417184, + "y": -0.028122693300247194, + "z": 0.07770571112632752 + }, + "rotation": { + "x": 0.258157342672348, + "y": 0.0635419636964798, + "z": -0.7039065957069397, + "w": -0.6593562960624695 + } + } + }, + { + "joint": 6, + "pose": { + "position": { + "x": 0.029027197510004045, + "y": -0.042809583246707919, + "z": 0.009094133973121643 + }, + "rotation": { + "x": -0.3631853759288788, + "y": -0.3677399158477783, + "z": -0.1473514586687088, + "w": 0.8432979583740234 + } + } + }, + { + "joint": 7, + "pose": { + "position": { + "x": -0.0017803632654249669, + "y": 0.0004678480327129364, + "z": 0.03705211728811264 + }, + "rotation": { + "x": -0.27657586336135867, + "y": -0.15855258703231812, + "z": 0.0009860674617812038, + "w": 0.947831392288208 + } + } + }, + { + "joint": 8, + "pose": { + "position": { + "x": -0.014122002758085728, + "y": 0.021943308413028718, + "z": 0.06970683485269547 + }, + "rotation": { + "x": -0.2553846836090088, + "y": -0.12617842853069306, + "z": 0.09538201987743378, + "w": 0.9538831114768982 + } + } + }, + { + "joint": 9, + "pose": { + "position": { + "x": -0.020550768822431566, + "y": 0.0322258397936821, + "z": 0.08830686658620835 + }, + "rotation": { + "x": -0.30963119864463808, + "y": -0.11118883639574051, + "z": -0.031351685523986819, + "w": 0.9441277980804443 + } + } + }, + { + "joint": 10, + "pose": { + "position": { + "x": -0.02332291379570961, + "y": 0.04081675410270691, + "z": 0.09968645870685578 + }, + "rotation": { + "x": -0.30963119864463808, + "y": -0.11118883639574051, + "z": -0.031351685523986819, + "w": 0.9441277980804443 + } + } + }, + { + "joint": 11, + "pose": { + "position": { + "x": 0.035866666585206988, + "y": -0.041708216071128848, + "z": 0.010740639641880989 + }, + "rotation": { + "x": -0.43399062752723696, + "y": -0.2068476676940918, + "z": -0.05406999588012695, + "w": 0.8751816153526306 + } + } + }, + { + "joint": 12, + "pose": { + "position": { + "x": 0.018060242757201196, + "y": 0.002479703165590763, + "z": 0.04112553596496582 + }, + "rotation": { + "x": 0.005038086324930191, + "y": 0.1527022123336792, + "z": 0.021530797705054284, + "w": -0.9880359768867493 + } + } + }, + { + "joint": 13, + "pose": { + "position": { + "x": 0.005449346732348204, + "y": 0.0031707696616649629, + "z": 0.08099328726530075 + }, + "rotation": { + "x": -0.49786925315856936, + "y": 0.13922974467277528, + "z": -0.07507844269275665, + "w": -0.8527824878692627 + } + } + }, + { + "joint": 14, + "pose": { + "position": { + "x": 0.0013555703917518259, + "y": -0.01869615726172924, + "z": 0.09269960224628449 + }, + "rotation": { + "x": -0.7163864970207214, + "y": 0.07041004300117493, + "z": -0.030646607279777528, + "w": -0.6939578652381897 + } + } + }, + { + "joint": 15, + "pose": { + "position": { + "x": 0.0004728742642328143, + "y": -0.03479576110839844, + "z": 0.09213778376579285 + }, + "rotation": { + "x": -0.7163864970207214, + "y": 0.07041004300117493, + "z": -0.030646607279777528, + "w": -0.6939578652381897 + } + } + }, + { + "joint": 16, + "pose": { + "position": { + "x": 0.044932689517736438, + "y": -0.04016602039337158, + "z": 0.013597620651125908 + }, + "rotation": { + "x": -0.3939853310585022, + "y": -0.10114617645740509, + "z": 0.016117071732878686, + "w": 0.9133923053741455 + } + } + }, + { + "joint": 17, + "pose": { + "position": { + "x": 0.03491469845175743, + "y": -0.003818823955953121, + "z": 0.047541361302137378 + }, + "rotation": { + "x": -0.11738020181655884, + "y": 0.15373656153678895, + "z": 0.05639626830816269, + "w": -0.9795019030570984 + } + } + }, + { + "joint": 18, + "pose": { + "position": { + "x": 0.023768775165081025, + "y": -0.01135534793138504, + "z": 0.08033758401870728 + }, + "rotation": { + "x": -0.7923092842102051, + "y": 0.16401034593582154, + "z": -0.02978098951280117, + "w": -0.5869977474212647 + } + } + }, + { + "joint": 19, + "pose": { + "position": { + "x": 0.02067880891263485, + "y": -0.031320542097091678, + "z": 0.0737735852599144 + }, + "rotation": { + "x": -0.9346709847450256, + "y": 0.0874316394329071, + "z": -0.023773543536663057, + "w": -0.344605952501297 + } + } + }, + { + "joint": 20, + "pose": { + "position": { + "x": 0.020386409014463426, + "y": -0.04289411008358002, + "z": 0.06018315628170967 + }, + "rotation": { + "x": -0.9346709847450256, + "y": 0.0874316394329071, + "z": -0.023773543536663057, + "w": -0.344605952501297 + } + } + }, + { + "joint": 21, + "pose": { + "position": { + "x": 0.05288681760430336, + "y": -0.041848354041576388, + "z": 0.01654883660376072 + }, + "rotation": { + "x": -0.33144858479499819, + "y": 0.002071807160973549, + "z": 0.085218146443367, + "w": 0.9396145343780518 + } + } + }, + { + "joint": 22, + "pose": { + "position": { + "x": 0.050300415605306628, + "y": -0.011202438734471798, + "z": 0.054917603731155398 + }, + "rotation": { + "x": -0.16419324278831483, + "y": 0.1696346402168274, + "z": 0.12252454459667206, + "w": -0.9639865159988403 + } + } + }, + { + "joint": 23, + "pose": { + "position": { + "x": 0.04166591167449951, + "y": -0.017666997388005258, + "z": 0.07580538094043732 + }, + "rotation": { + "x": -0.7474591135978699, + "y": 0.20672142505645753, + "z": 0.04626481607556343, + "w": -0.6297129392623901 + } + } + }, + { + "joint": 24, + "pose": { + "position": { + "x": 0.03587989881634712, + "y": -0.03386271744966507, + "z": 0.0722469910979271 + }, + "rotation": { + "x": -0.928327202796936, + "y": 0.13445810973644257, + "z": 0.1272566169500351, + "w": -0.3232197165489197 + } + } + }, + { + "joint": 25, + "pose": { + "position": { + "x": 0.03135494887828827, + "y": -0.04178089275956154, + "z": 0.06164591759443283 + }, + "rotation": { + "x": -0.928327202796936, + "y": 0.13445810973644257, + "z": 0.1272566169500351, + "w": -0.3232197165489197 + } + } + } + ] +} \ No newline at end of file diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPoseData.json.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPoseData.json.meta new file mode 100644 index 00000000..f04b091d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/PokeHandPoseData.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5f148c90347c0dc47bbfd1ed7a2d4334 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPose.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPose.asset new file mode 100644 index 00000000..1f5fb68c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPose.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 67355724a5b4fd841bbf691ac44ad25d, type: 3} + m_Name: ThumbsUpHandPose + m_EditorClassIdentifier: + id: thumbs-up + description: OK sign. + isDefault: 0 + keyCode: 52 + data: {fileID: 4900000, guid: f8236cb3fbe55ed499df0418bb28c0cd, type: 3} + didBake: 1 + isGripping: 1 + fingerCurlStrengths: + - 0.29784977 + - 0.85514337 + - 0.86561483 + - 0.83954275 + - 0.8154361 + gripStrength: 0.9714226 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPose.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPose.asset.meta new file mode 100644 index 00000000..e42e6d8b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPose.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5e6bcc3863bdc634d82a8a59598a070b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPoseData.json b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPoseData.json new file mode 100644 index 00000000..7f20400e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPoseData.json @@ -0,0 +1,420 @@ +{ + "joints": [ + { + "joint": 0, + "pose": { + "position": { + "x": 0.08615099638700485, + "y": -0.024168234318494798, + "z": 0.034818120300769809 + }, + "rotation": { + "x": -0.24332590401172639, + "y": 0.6052875518798828, + "z": 0.5141062140464783, + "w": -0.5566452741622925 + } + } + }, + { + "joint": 1, + "pose": { + "position": { + "x": 0.03520287200808525, + "y": -0.010816145688295365, + "z": 0.04648737236857414 + }, + "rotation": { + "x": -0.24332590401172639, + "y": 0.6052875518798828, + "z": 0.5141062140464783, + "w": -0.5566452741622925 + } + } + }, + { + "joint": 2, + "pose": { + "position": { + "x": 0.06692907959222794, + "y": -0.0030839829705655576, + "z": 0.020349422469735147 + }, + "rotation": { + "x": 0.39406728744506838, + "y": 0.7213952541351318, + "z": 0.33115363121032717, + "w": -0.46385547518730166 + } + } + }, + { + "joint": 3, + "pose": { + "position": { + "x": 0.048644911497831348, + "y": 0.034663256257772449, + "z": 0.004639927297830582 + }, + "rotation": { + "x": 0.34302714467048647, + "y": 0.719179630279541, + "z": 0.2980014383792877, + "w": -0.5261238217353821 + } + } + }, + { + "joint": 4, + "pose": { + "position": { + "x": 0.030924495309591295, + "y": 0.05998371168971062, + "z": -0.004000300541520119 + }, + "rotation": { + "x": 0.4403221607208252, + "y": 0.6942930817604065, + "z": 0.3865111470222473, + "w": -0.4186002314090729 + } + } + }, + { + "joint": 5, + "pose": { + "position": { + "x": 0.02607334591448307, + "y": 0.07819978147745133, + "z": -0.011070644482970238 + }, + "rotation": { + "x": 0.4403221607208252, + "y": 0.6942930817604065, + "z": 0.3865111470222473, + "w": -0.4186002314090729 + } + } + }, + { + "joint": 6, + "pose": { + "position": { + "x": 0.06430374830961228, + "y": -0.01019766554236412, + "z": 0.02929815649986267 + }, + "rotation": { + "x": -0.22792501747608186, + "y": 0.6316274404525757, + "z": 0.5866482257843018, + "w": -0.45270389318466189 + } + } + }, + { + "joint": 7, + "pose": { + "position": { + "x": 0.011573880910873413, + "y": 0.02339656837284565, + "z": 0.03546718880534172 + }, + "rotation": { + "x": 0.3942926526069641, + "y": -0.7424762845039368, + "z": -0.21414896845817567, + "w": 0.49741214513778689 + } + } + }, + { + "joint": 8, + "pose": { + "position": { + "x": -0.021892068907618524, + "y": 0.020658958703279496, + "z": 0.020219745114445688 + }, + "rotation": { + "x": 0.5834210515022278, + "y": -0.7061115503311157, + "z": 0.3634859323501587, + "w": 0.17027443647384644 + } + } + }, + { + "joint": 9, + "pose": { + "position": { + "x": -0.017463261261582376, + "y": 0.00348295527510345, + "z": 0.0038637774996459486 + }, + "rotation": { + "x": 0.6371655464172363, + "y": -0.4360961318016052, + "z": 0.6206539869308472, + "w": -0.13840782642364503 + } + } + }, + { + "joint": 10, + "pose": { + "position": { + "x": -0.001938387518748641, + "y": -0.0027357139624655248, + "z": 0.0005815188633278012 + }, + "rotation": { + "x": 0.6371655464172363, + "y": -0.4360961318016052, + "z": 0.6206539869308472, + "w": -0.13840782642364503 + } + } + }, + { + "joint": 11, + "pose": { + "position": { + "x": 0.06397924572229386, + "y": -0.016921602189540864, + "z": 0.03521520271897316 + }, + "rotation": { + "x": -0.16760338842868806, + "y": 0.5928976535797119, + "z": 0.5015624761581421, + "w": -0.6073026657104492 + } + } + }, + { + "joint": 12, + "pose": { + "position": { + "x": 0.01083554606884718, + "y": 0.006482137367129326, + "z": 0.049619730561971667 + }, + "rotation": { + "x": 0.5027921199798584, + "y": -0.7059369087219238, + "z": -0.16476257145404817, + "w": 0.4708792269229889 + } + } + }, + { + "joint": 13, + "pose": { + "position": { + "x": -0.025254713371396066, + "y": -0.003984889946877956, + "z": 0.02779259905219078 + }, + "rotation": { + "x": 0.6809582710266113, + "y": -0.6233372688293457, + "z": 0.3824990391731262, + "w": -0.039771441370248798 + } + } + }, + { + "joint": 14, + "pose": { + "position": { + "x": -0.00917090568691492, + "y": -0.015904264524579049, + "z": 0.007921875454485417 + }, + "rotation": { + "x": 0.6229440569877625, + "y": -0.2391648292541504, + "z": 0.642637312412262, + "w": -0.37781840562820437 + } + } + }, + { + "joint": 15, + "pose": { + "position": { + "x": 0.008252275176346302, + "y": -0.013008372858166695, + "z": 0.009888304397463799 + }, + "rotation": { + "x": 0.6229440569877625, + "y": -0.2391648292541504, + "z": 0.642637312412262, + "w": -0.37781840562820437 + } + } + }, + { + "joint": 16, + "pose": { + "position": { + "x": 0.06303475052118302, + "y": -0.02612213045358658, + "z": 0.04269380867481232 + }, + "rotation": { + "x": -0.18103565275669099, + "y": 0.5941647887229919, + "z": 0.39771339297294619, + "w": -0.6752913594245911 + } + } + }, + { + "joint": 17, + "pose": { + "position": { + "x": 0.010207276791334153, + "y": -0.013390008360147477, + "z": 0.055441394448280337 + }, + "rotation": { + "x": 0.5632884502410889, + "y": -0.6713510751724243, + "z": -0.15870888531208039, + "w": 0.45477786660194399 + } + } + }, + { + "joint": 18, + "pose": { + "position": { + "x": -0.01994304731488228, + "y": -0.024818312376737596, + "z": 0.03496982902288437 + }, + "rotation": { + "x": 0.7331446409225464, + "y": -0.5462665557861328, + "z": 0.3692132830619812, + "w": -0.16697438061237336 + } + } + }, + { + "joint": 19, + "pose": { + "position": { + "x": -0.0031065356452018024, + "y": -0.028507214039564134, + "z": 0.019337791949510576 + }, + "rotation": { + "x": 0.6351615786552429, + "y": -0.23133434355258943, + "z": 0.5935887098312378, + "w": -0.43731656670570376 + } + } + }, + { + "joint": 20, + "pose": { + "position": { + "x": 0.015546157956123352, + "y": -0.023027585819363595, + "z": 0.021024812012910844 + }, + "rotation": { + "x": 0.6351615786552429, + "y": -0.23133434355258943, + "z": 0.5935887098312378, + "w": -0.43731656670570376 + } + } + }, + { + "joint": 21, + "pose": { + "position": { + "x": 0.06254640221595764, + "y": -0.034929849207401279, + "z": 0.04593820124864578 + }, + "rotation": { + "x": -0.19249169528484345, + "y": 0.581859290599823, + "z": 0.2601516842842102, + "w": -0.7461285591125488 + } + } + }, + { + "joint": 22, + "pose": { + "position": { + "x": 0.009921858087182045, + "y": -0.03408779203891754, + "z": 0.05945640057325363 + }, + "rotation": { + "x": 0.6286200881004334, + "y": -0.6190594434738159, + "z": -0.18423764407634736, + "w": 0.43321672081947329 + } + } + }, + { + "joint": 23, + "pose": { + "position": { + "x": -0.007876850664615631, + "y": -0.041423700749874118, + "z": 0.04655241593718529 + }, + "rotation": { + "x": 0.7744045257568359, + "y": -0.5470465421676636, + "z": 0.2698802649974823, + "w": -0.1682688444852829 + } + } + }, + { + "joint": 24, + "pose": { + "position": { + "x": 0.0036155348643660547, + "y": -0.042087383568286899, + "z": 0.03132062032818794 + }, + "rotation": { + "x": 0.7368069291114807, + "y": -0.19751593470573426, + "z": 0.4435950815677643, + "w": -0.47120407223701479 + } + } + }, + { + "joint": 25, + "pose": { + "position": { + "x": 0.016652610152959825, + "y": -0.034032851457595828, + "z": 0.02879030816257 + }, + "rotation": { + "x": 0.7368069291114807, + "y": -0.19751593470573426, + "z": 0.4435950815677643, + "w": -0.47120407223701479 + } + } + } + ] +} \ No newline at end of file diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPoseData.json.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPoseData.json.meta new file mode 100644 index 00000000..c57a2d04 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/ThumbsUpHandPoseData.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f8236cb3fbe55ed499df0418bb28c0cd +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPose.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPose.asset new file mode 100644 index 00000000..35ea60f1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPose.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 67355724a5b4fd841bbf691ac44ad25d, type: 3} + m_Name: VictoryHandPose + m_EditorClassIdentifier: + id: victory + description: Victory sign. + isDefault: 0 + keyCode: 53 + data: {fileID: 4900000, guid: f7b9fdc8704378f4a8e1f18c99edb3ac, type: 3} + didBake: 1 + isGripping: 0 + fingerCurlStrengths: + - 1 + - 0.06573929 + - 0.06283465 + - 0.39798924 + - 0.3726366 + gripStrength: 0.30365536 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPose.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPose.asset.meta new file mode 100644 index 00000000..85818380 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPose.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2f6c29c72cd30c74f9717c932bd87a4a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPoseData.json b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPoseData.json new file mode 100644 index 00000000..d88bb5e8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPoseData.json @@ -0,0 +1,420 @@ +{ + "joints": [ + { + "joint": 0, + "pose": { + "position": { + "x": 0.07915662229061127, + "y": -0.13887012004852296, + "z": -0.010340530425310135 + }, + "rotation": { + "x": -0.5914298295974731, + "y": -0.2676140367984772, + "z": -0.06283169984817505, + "w": 0.7577439546585083 + } + } + }, + { + "joint": 1, + "pose": { + "position": { + "x": 0.06830108910799027, + "y": -0.09366560727357865, + "z": -0.0000256318598985672 + }, + "rotation": { + "x": -0.5914298295974731, + "y": -0.2676140367984772, + "z": -0.06283169984817505, + "w": 0.7577439546585083 + } + } + }, + { + "joint": 2, + "pose": { + "position": { + "x": 0.05787024274468422, + "y": -0.12883375585079194, + "z": -0.005382232367992401 + }, + "rotation": { + "x": 0.4801919758319855, + "y": -0.04491055756807327, + "z": -0.7443504333496094, + "w": -0.4627794027328491 + } + } + }, + { + "joint": 3, + "pose": { + "position": { + "x": 0.030012525618076326, + "y": -0.10770050436258316, + "z": 0.016813457012176515 + }, + "rotation": { + "x": 0.312323659658432, + "y": -0.2742984890937805, + "z": -0.6935320496559143, + "w": -0.5894817113876343 + } + } + }, + { + "joint": 4, + "pose": { + "position": { + "x": 0.026396021246910096, + "y": -0.08305369317531586, + "z": 0.03835996612906456 + }, + "rotation": { + "x": 0.26157766580581667, + "y": -0.3302468955516815, + "z": -0.6686716675758362, + "w": -0.6136223673820496 + } + } + }, + { + "joint": 5, + "pose": { + "position": { + "x": 0.027343440800905229, + "y": -0.07000578194856644, + "z": 0.04939644783735275 + }, + "rotation": { + "x": 0.26157766580581667, + "y": -0.3302468955516815, + "z": -0.6686716675758362, + "w": -0.6136223673820496 + } + } + }, + { + "joint": 6, + "pose": { + "position": { + "x": 0.06611358374357224, + "y": -0.12426556646823883, + "z": -0.0055283233523368839 + }, + "rotation": { + "x": -0.5613270998001099, + "y": -0.42208683490753176, + "z": -0.06766947358846665, + "w": 0.7086432576179504 + } + } + }, + { + "joint": 7, + "pose": { + "position": { + "x": 0.034438081085681918, + "y": -0.0725482851266861, + "z": -0.004708992317318916 + }, + "rotation": { + "x": -0.6286489963531494, + "y": -0.2787279188632965, + "z": 0.040076885372400287, + "w": 0.7249277830123901 + } + } + }, + { + "joint": 8, + "pose": { + "position": { + "x": 0.015563697554171086, + "y": -0.03562714159488678, + "z": -0.0024565430358052255 + }, + "rotation": { + "x": -0.6645650863647461, + "y": -0.2075067013502121, + "z": 0.10458821058273316, + "w": 0.7102522253990173 + } + } + }, + { + "joint": 9, + "pose": { + "position": { + "x": 0.005756473168730736, + "y": -0.015270628966391087, + "z": -0.0017626225017011166 + }, + "rotation": { + "x": -0.6223592162132263, + "y": -0.24349386990070344, + "z": 0.01842544600367546, + "w": 0.7439839839935303 + } + } + }, + { + "joint": 10, + "pose": { + "position": { + "x": 0.00011674128472805023, + "y": -0.0018588211387395859, + "z": -0.00020025699632242322 + }, + "rotation": { + "x": -0.6223592162132263, + "y": -0.24349386990070344, + "z": 0.01842544600367546, + "w": 0.7439839839935303 + } + } + }, + { + "joint": 11, + "pose": { + "position": { + "x": 0.07268297672271729, + "y": -0.12254584580659867, + "z": -0.004201311618089676 + }, + "rotation": { + "x": -0.6534333825111389, + "y": -0.22906279563903809, + "z": -0.018352244049310685, + "w": 0.7212615013122559 + } + } + }, + { + "joint": 12, + "pose": { + "position": { + "x": 0.054447855800390246, + "y": -0.06595612317323685, + "z": -0.0017550308257341385 + }, + "rotation": { + "x": -0.5899049043655396, + "y": -0.16088859736919404, + "z": -0.018363818526268007, + "w": 0.7910826206207275 + } + } + }, + { + "joint": 13, + "pose": { + "position": { + "x": 0.04355549067258835, + "y": -0.022029317915439607, + "z": 0.010043984279036522 + }, + "rotation": { + "x": -0.6020974516868591, + "y": -0.14070262014865876, + "z": -0.036361001431941989, + "w": 0.7852000594139099 + } + } + }, + { + "joint": 14, + "pose": { + "position": { + "x": 0.03923114016652107, + "y": 0.0012873951345682145, + "z": 0.015791211277246476 + }, + "rotation": { + "x": -0.5366969108581543, + "y": -0.17153941094875337, + "z": -0.09987709671258927, + "w": 0.8206644058227539 + } + } + }, + { + "joint": 15, + "pose": { + "position": { + "x": 0.03647539019584656, + "y": 0.015714645385742189, + "z": 0.021557386964559556 + }, + "rotation": { + "x": -0.5366969108581543, + "y": -0.17153941094875337, + "z": -0.09987709671258927, + "w": 0.8206644058227539 + } + } + }, + { + "joint": 16, + "pose": { + "position": { + "x": 0.08137646317481995, + "y": -0.11985518038272858, + "z": -0.00190657377243042 + }, + "rotation": { + "x": -0.6267969012260437, + "y": -0.10518965870141983, + "z": 0.02498382329940796, + "w": 0.7716453075408936 + } + } + }, + { + "joint": 17, + "pose": { + "position": { + "x": 0.07067620009183884, + "y": -0.06669728457927704, + "z": 0.008708799257874489 + }, + "rotation": { + "x": 0.40646883845329287, + "y": 0.1807955503463745, + "z": 0.030094729736447336, + "w": -0.8951042294502258 + } + } + }, + { + "joint": 18, + "pose": { + "position": { + "x": 0.060088954865932468, + "y": -0.04056686535477638, + "z": 0.03008754923939705 + }, + "rotation": { + "x": -0.2107616662979126, + "y": 0.18913404643535615, + "z": -0.04620787873864174, + "w": -0.9580028653144836 + } + } + }, + { + "joint": 19, + "pose": { + "position": { + "x": 0.0528024360537529, + "y": -0.0495174415409565, + "z": 0.047927625477313998 + }, + "rotation": { + "x": -0.449715256690979, + "y": 0.15903393924236298, + "z": -0.020673276856541635, + "w": -0.8789007067680359 + } + } + }, + { + "joint": 20, + "pose": { + "position": { + "x": 0.048170287162065509, + "y": -0.06364263594150543, + "z": 0.05758979544043541 + }, + "rotation": { + "x": -0.449715256690979, + "y": 0.15903393924236298, + "z": -0.020673276856541635, + "w": -0.8789007067680359 + } + } + }, + { + "joint": 21, + "pose": { + "position": { + "x": 0.08909709751605988, + "y": -0.11985252797603607, + "z": 0.001964922994375229 + }, + "rotation": { + "x": -0.5780324339866638, + "y": -0.0013396204449236394, + "z": 0.06318691372871399, + "w": 0.8135625720024109 + } + } + }, + { + "joint": 22, + "pose": { + "position": { + "x": 0.0851951465010643, + "y": -0.07107751816511154, + "z": 0.019172409549355508 + }, + "rotation": { + "x": 0.31776368618011477, + "y": 0.2502634525299072, + "z": 0.05463750660419464, + "w": -0.9129235744476318 + } + } + }, + { + "joint": 23, + "pose": { + "position": { + "x": 0.07433749735355377, + "y": -0.055455759167671207, + "z": 0.03647337108850479 + }, + "rotation": { + "x": -0.17528946697711945, + "y": 0.2344343513250351, + "z": 0.019245747476816179, + "w": -0.9560556411743164 + } + } + }, + { + "joint": 24, + "pose": { + "position": { + "x": 0.06645255535840988, + "y": -0.06111001968383789, + "z": 0.050835996866226199 + }, + "rotation": { + "x": -0.4488738477230072, + "y": 0.26990553736686709, + "z": 0.08396486192941666, + "w": -0.8479632139205933 + } + } + }, + { + "joint": 25, + "pose": { + "position": { + "x": 0.05911727994680405, + "y": -0.07095448672771454, + "z": 0.05705229192972183 + }, + "rotation": { + "x": -0.4488738477230072, + "y": 0.26990553736686709, + "z": 0.08396486192941666, + "w": -0.8479632139205933 + } + } + } + ] +} \ No newline at end of file diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPoseData.json.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPoseData.json.meta new file mode 100644 index 00000000..57825829 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RecordedPoses/VictoryHandPoseData.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f7b9fdc8704378f4a8e1f18c99edb3ac +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightHandVisulaizationProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightHandVisulaizationProfile.asset new file mode 100644 index 00000000..68f31a64 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightHandVisulaizationProfile.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b7926164960ef644850207ccce1b07e, type: 3} + m_Name: RightHandVisulaizationProfile + m_EditorClassIdentifier: + controllerVisualizationType: + reference: 5d844e0b-f913-46b8-bc3b-fa6429e62c60 + useDefaultModels: 0 + model: {fileID: 7709636661657395508, guid: 79eeb06cd1ed4224eb6387ce28855a3c, type: 3} + pointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + alternatePointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightHandVisulaizationProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightHandVisulaizationProfile.asset.meta new file mode 100644 index 00000000..452617e9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightHandVisulaizationProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9adf8f0578d6fa24c82c170dfc36ae43 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightMixedRealityHandControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightMixedRealityHandControllerProfile.asset new file mode 100644 index 00000000..acf0291d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightMixedRealityHandControllerProfile.asset @@ -0,0 +1,27 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: RightMixedRealityHandControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: b18a9a6c-e5fd-40ae-89e9-9822415ec62b + handedness: 2 + visualizationProfile: {fileID: 11400000, guid: 9adf8f0578d6fa24c82c170dfc36ae43, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: e47d35b7a8a79774c8f8386e9350cb41, type: 2} + - {fileID: 11400000, guid: 1fd0c5cd50876514bb0027af902ed920, type: 2} + - {fileID: 11400000, guid: 118d8e619c1393b49bbf1d387651668c, type: 2} + - {fileID: 11400000, guid: ff17201622b23b64f8065fd2e8a79b5a, type: 2} + - {fileID: 11400000, guid: 31223e437c1f97a498a229666eb1d6e2, type: 2} + - {fileID: 11400000, guid: 5e2b50bb0283a7a46aa1cb475066855f, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightMixedRealityHandControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightMixedRealityHandControllerProfile.asset.meta new file mode 100644 index 00000000..7d7be74a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/RightMixedRealityHandControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 78bf44d2b6970a74ea2721883b0b22bc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated.meta new file mode 100644 index 00000000..7daf7693 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f0e72c6e78ce4e44bd42b599cb1e007 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles.meta new file mode 100644 index 00000000..369193c4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d94db592012096a46b711b69fc044673 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveAway(Depth)Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveAway(Depth)Profile.asset new file mode 100644 index 00000000..d9639f2e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveAway(Depth)Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MoveAway(Depth)Profile + m_EditorClassIdentifier: + interactionMapping: + description: Move Away (Depth) + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 280 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveAway(Depth)Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveAway(Depth)Profile.asset.meta new file mode 100644 index 00000000..28f85dfc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveAway(Depth)Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fe2c817c85de12f45862c078fc767994 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveCloser(Depth)Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveCloser(Depth)Profile.asset new file mode 100644 index 00000000..ccc5d1c0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveCloser(Depth)Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MoveCloser(Depth)Profile + m_EditorClassIdentifier: + interactionMapping: + description: Move Closer (Depth) + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 281 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveCloser(Depth)Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveCloser(Depth)Profile.asset.meta new file mode 100644 index 00000000..d619cd4c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/MoveCloser(Depth)Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8b71ccb1d13b24940886b9129cd99584 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchClockwiseProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchClockwiseProfile.asset new file mode 100644 index 00000000..e848a9d9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchClockwiseProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: PitchClockwiseProfile + m_EditorClassIdentifier: + interactionMapping: + description: Pitch Clockwise + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 102 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchClockwiseProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchClockwiseProfile.asset.meta new file mode 100644 index 00000000..6a67b7f2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchClockwiseProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3265960ea5cd94f499bf02eb746a79af +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchCounterClockwiseProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchCounterClockwiseProfile.asset new file mode 100644 index 00000000..2369785d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchCounterClockwiseProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: PitchCounterClockwiseProfile + m_EditorClassIdentifier: + interactionMapping: + description: Pitch Counter Clockwise + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 114 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchCounterClockwiseProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchCounterClockwiseProfile.asset.meta new file mode 100644 index 00000000..c2122684 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/PitchCounterClockwiseProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8d21414d16a88d647a33e521cfaf2d6e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollClockwiseProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollClockwiseProfile.asset new file mode 100644 index 00000000..2a3e95a4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollClockwiseProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RollClockwiseProfile + m_EditorClassIdentifier: + interactionMapping: + description: Roll Clockwise + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 120 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollClockwiseProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollClockwiseProfile.asset.meta new file mode 100644 index 00000000..3333d6f9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollClockwiseProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ebcc386ca12a0f440b56ea95c751f7ee +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollCounterClockwiseProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollCounterClockwiseProfile.asset new file mode 100644 index 00000000..6e73c67e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollCounterClockwiseProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RollCounterClockwiseProfile + m_EditorClassIdentifier: + interactionMapping: + description: Roll Counter Clockwise + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 122 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollCounterClockwiseProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollCounterClockwiseProfile.asset.meta new file mode 100644 index 00000000..0d9ecbd0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/RollCounterClockwiseProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: baeb171c54652534f80427c4473e14c6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawClockwiseProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawClockwiseProfile.asset new file mode 100644 index 00000000..bc836e6b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawClockwiseProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: YawClockwiseProfile + m_EditorClassIdentifier: + interactionMapping: + description: Yaw Clockwise + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 101 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawClockwiseProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawClockwiseProfile.asset.meta new file mode 100644 index 00000000..e9361180 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawClockwiseProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 65fe769960045eb4284e122669355d0f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawCounterClockwiseProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawCounterClockwiseProfile.asset new file mode 100644 index 00000000..94f4db9d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawCounterClockwiseProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: YawCounterClockwiseProfile + m_EditorClassIdentifier: + interactionMapping: + description: Yaw Counter Clockwise + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 113 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawCounterClockwiseProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawCounterClockwiseProfile.asset.meta new file mode 100644 index 00000000..9179e5ce --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/CommonInteractionMappingProfiles/YawCounterClockwiseProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7a31aa9670c8b0046ab22a9a8c86aabd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/LeftSimulatedMixedRealityHandControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/LeftSimulatedMixedRealityHandControllerProfile.asset new file mode 100644 index 00000000..bb423d7c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/LeftSimulatedMixedRealityHandControllerProfile.asset @@ -0,0 +1,35 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: LeftSimulatedMixedRealityHandControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 435c4f16-8e23-4228-b2b0-5fce09a97043 + handedness: 1 + visualizationProfile: {fileID: 11400000, guid: d03625d21fb0bfb41b6642f492e27754, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: b7f65e3d3581e3d46ba01ecb4fedd827, type: 2} + - {fileID: 11400000, guid: ac477884d2650664bab2f52184673eee, type: 2} + - {fileID: 11400000, guid: 96140c34e5c8322468a744646a7b64fe, type: 2} + - {fileID: 11400000, guid: 8e01cb476d731534093fe5edd227c54c, type: 2} + - {fileID: 11400000, guid: b24f94bd93cab98498809436cb5b685f, type: 2} + - {fileID: 11400000, guid: 80556dee026997f4ba146ffda4710f79, type: 2} + - {fileID: 11400000, guid: 65fe769960045eb4284e122669355d0f, type: 2} + - {fileID: 11400000, guid: 7a31aa9670c8b0046ab22a9a8c86aabd, type: 2} + - {fileID: 11400000, guid: 3265960ea5cd94f499bf02eb746a79af, type: 2} + - {fileID: 11400000, guid: 8d21414d16a88d647a33e521cfaf2d6e, type: 2} + - {fileID: 11400000, guid: ebcc386ca12a0f440b56ea95c751f7ee, type: 2} + - {fileID: 11400000, guid: baeb171c54652534f80427c4473e14c6, type: 2} + - {fileID: 11400000, guid: fe2c817c85de12f45862c078fc767994, type: 2} + - {fileID: 11400000, guid: 8b71ccb1d13b24940886b9129cd99584, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/LeftSimulatedMixedRealityHandControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/LeftSimulatedMixedRealityHandControllerProfile.asset.meta new file mode 100644 index 00000000..5eb83b27 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/LeftSimulatedMixedRealityHandControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4b5c2efa5f88d1548953da2172e3f5d5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/RightSimulatedMixedRealityHandControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/RightSimulatedMixedRealityHandControllerProfile.asset new file mode 100644 index 00000000..a699e90e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/RightSimulatedMixedRealityHandControllerProfile.asset @@ -0,0 +1,35 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: RightSimulatedMixedRealityHandControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 435c4f16-8e23-4228-b2b0-5fce09a97043 + handedness: 2 + visualizationProfile: {fileID: 11400000, guid: 9adf8f0578d6fa24c82c170dfc36ae43, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: e47d35b7a8a79774c8f8386e9350cb41, type: 2} + - {fileID: 11400000, guid: 1fd0c5cd50876514bb0027af902ed920, type: 2} + - {fileID: 11400000, guid: 118d8e619c1393b49bbf1d387651668c, type: 2} + - {fileID: 11400000, guid: ff17201622b23b64f8065fd2e8a79b5a, type: 2} + - {fileID: 11400000, guid: 31223e437c1f97a498a229666eb1d6e2, type: 2} + - {fileID: 11400000, guid: 5e2b50bb0283a7a46aa1cb475066855f, type: 2} + - {fileID: 11400000, guid: 65fe769960045eb4284e122669355d0f, type: 2} + - {fileID: 11400000, guid: 7a31aa9670c8b0046ab22a9a8c86aabd, type: 2} + - {fileID: 11400000, guid: 3265960ea5cd94f499bf02eb746a79af, type: 2} + - {fileID: 11400000, guid: 8d21414d16a88d647a33e521cfaf2d6e, type: 2} + - {fileID: 11400000, guid: ebcc386ca12a0f440b56ea95c751f7ee, type: 2} + - {fileID: 11400000, guid: baeb171c54652534f80427c4473e14c6, type: 2} + - {fileID: 11400000, guid: fe2c817c85de12f45862c078fc767994, type: 2} + - {fileID: 11400000, guid: 8b71ccb1d13b24940886b9129cd99584, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/RightSimulatedMixedRealityHandControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/RightSimulatedMixedRealityHandControllerProfile.asset.meta new file mode 100644 index 00000000..2c02e159 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/RightSimulatedMixedRealityHandControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2713516723d50ce49a834fbee5d64ff4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/SimulatedHandControllerDataProviderProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/SimulatedHandControllerDataProviderProfile.asset new file mode 100644 index 00000000..48e5ce73 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/SimulatedHandControllerDataProviderProfile.asset @@ -0,0 +1,35 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 49a51e5acd0c6c547bfb8f97fcf09037, type: 3} + m_Name: SimulatedHandControllerDataProviderProfile + m_EditorClassIdentifier: + hasSetupDefaults: 1 + controllerMappingProfiles: + - {fileID: 11400000, guid: 4b5c2efa5f88d1548953da2172e3f5d5, type: 2} + - {fileID: 11400000, guid: 2713516723d50ce49a834fbee5d64ff4, type: 2} + simulatedUpdateFrequency: 0 + controllerHideTimeout: 0.2 + defaultDistance: 0.5 + depthMultiplier: 0.5 + jitterAmount: 0 + toggleLeftPersistentKey: 116 + leftControllerTrackedKey: 304 + toggleRightPersistentKey: 121 + rightControllerTrackedKey: 32 + rotationSpeed: 100 + handPoseAnimationSpeed: 8 + gripThreshold: 0.8 + renderingMode: 1 + handPhysicsEnabled: 0 + useTriggers: 0 + boundsMode: 0 + trackedPoses: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/SimulatedHandControllerDataProviderProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/SimulatedHandControllerDataProviderProfile.asset.meta new file mode 100644 index 00000000..12c7e995 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/HandControllers/Simulated/SimulatedHandControllerDataProviderProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6bd4ff02967a9b24197b8cd2593ddfa4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController.meta new file mode 100644 index 00000000..34ba458d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 41cdd22bc515fbc4c80be8f54735a9ea +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/LeftMouseButtonProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/LeftMouseButtonProfile.asset new file mode 100644 index 00000000..1fb78504 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/LeftMouseButtonProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftMouseButtonProfile + m_EditorClassIdentifier: + interactionMapping: + description: Left Mouse Button + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 323 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/LeftMouseButtonProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/LeftMouseButtonProfile.asset.meta new file mode 100644 index 00000000..e68e5bea --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/LeftMouseButtonProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1761708feeca67a46bad7c43e68cd925 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton2Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton2Profile.asset new file mode 100644 index 00000000..d111c5d7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton2Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MouseButton2Profile + m_EditorClassIdentifier: + interactionMapping: + description: Mouse Button 2 + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 325 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton2Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton2Profile.asset.meta new file mode 100644 index 00000000..b6b682eb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton2Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 783119be32701b345adcb6b380373103 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton3Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton3Profile.asset new file mode 100644 index 00000000..ce32dcd8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton3Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MouseButton3Profile + m_EditorClassIdentifier: + interactionMapping: + description: Mouse Button 3 + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 326 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton3Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton3Profile.asset.meta new file mode 100644 index 00000000..f1e069fd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton3Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fc571069ed3eafc4dbca010302bcfffb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton4Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton4Profile.asset new file mode 100644 index 00000000..d3996f0f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton4Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MouseButton4Profile + m_EditorClassIdentifier: + interactionMapping: + description: Mouse Button 4 + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 327 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton4Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton4Profile.asset.meta new file mode 100644 index 00000000..8469e19c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton4Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e57f35d28adbaee4eb8c3d8327de9ba5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton5Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton5Profile.asset new file mode 100644 index 00000000..1026b64c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton5Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MouseButton5Profile + m_EditorClassIdentifier: + interactionMapping: + description: Mouse Button 5 + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 328 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton5Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton5Profile.asset.meta new file mode 100644 index 00000000..358f95a7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton5Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6d778a3c9bb21ce4f8545572854ea17d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton6Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton6Profile.asset new file mode 100644 index 00000000..547849f8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton6Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MouseButton6Profile + m_EditorClassIdentifier: + interactionMapping: + description: Mouse Button 6 + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 329 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton6Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton6Profile.asset.meta new file mode 100644 index 00000000..8b265c2e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseButton6Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a62843b5b9c4fd24c9a6ec63cebd2159 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseControllerProfile.asset new file mode 100644 index 00000000..96a81bd2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseControllerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: MouseControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: a80e17f6-8221-49c3-bc4b-cab495c91d6c + handedness: 7 + visualizationProfile: {fileID: 0} + useCustomInteractions: 1 + interactionMappingProfiles: + - {fileID: 11400000, guid: 4dd348d11c4dd1c49a278635f86bf5b1, type: 2} + - {fileID: 11400000, guid: d5b88eaa28302494987eb8cca1d7e6bf, type: 2} + - {fileID: 11400000, guid: 7547e87574e61b4469153f95bd0bfe5b, type: 2} + - {fileID: 11400000, guid: 1761708feeca67a46bad7c43e68cd925, type: 2} + - {fileID: 11400000, guid: 7e688039fbdb82946a13a2916f9bf3d0, type: 2} + - {fileID: 11400000, guid: 783119be32701b345adcb6b380373103, type: 2} + - {fileID: 11400000, guid: fc571069ed3eafc4dbca010302bcfffb, type: 2} + - {fileID: 11400000, guid: e57f35d28adbaee4eb8c3d8327de9ba5, type: 2} + - {fileID: 11400000, guid: 6d778a3c9bb21ce4f8545572854ea17d, type: 2} + - {fileID: 11400000, guid: a62843b5b9c4fd24c9a6ec63cebd2159, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseControllerProfile.asset.meta new file mode 100644 index 00000000..6c535402 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6fff4a7b0d402fb489a8dfd19d6fee88 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaInvertAxisProcessor.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaInvertAxisProcessor.asset new file mode 100644 index 00000000..296fec07 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaInvertAxisProcessor.asset @@ -0,0 +1,16 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bf89b42d98d441ee99759646f3ab757d, type: 3} + m_Name: MouseDeltaInvertAxisProcessor + m_EditorClassIdentifier: + invertX: 1 + invertY: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaInvertAxisProcessor.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaInvertAxisProcessor.asset.meta new file mode 100644 index 00000000..d6c8a915 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaInvertAxisProcessor.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 476ff3b0213c929489613468c87fba7a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaPositionProfile.asset new file mode 100644 index 00000000..38658014 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaPositionProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MouseDeltaPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Mouse Delta Position + stateChangeType: 0 + axisType: 4 + inputType: 4 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 12 + description: Mouse Delta + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: Mouse Y + axisCodeY: Mouse X + inputProcessors: + - {fileID: 11400000, guid: 476ff3b0213c929489613468c87fba7a, type: 2} + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaPositionProfile.asset.meta new file mode 100644 index 00000000..37fff1ad --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseDeltaPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d5b88eaa28302494987eb8cca1d7e6bf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MousePointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MousePointerProfile.asset new file mode 100644 index 00000000..8519914f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MousePointerProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c156ea3e1a7a493dac236ed84c4a819a, type: 3} + m_Name: MousePointerProfile + m_EditorClassIdentifier: + pointerPrefab: {fileID: 1247086986094436, guid: 58ab5073b9b5477fbda6f619d37be0f0, + type: 3} + pointingExtent: 10 + pointingRaycastLayerMasks: + - serializedVersion: 2 + m_Bits: 4294967291 + drawDebugPointingRays: 0 + debugPointingRayColors: + - {r: 0, g: 1, b: 0, a: 1} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MousePointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MousePointerProfile.asset.meta new file mode 100644 index 00000000..0ec70db3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MousePointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c9b96ce0cb2d7d4459e3ebdfc2736793 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollInvertAxisProcessor.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollInvertAxisProcessor.asset new file mode 100644 index 00000000..8cbeae38 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollInvertAxisProcessor.asset @@ -0,0 +1,16 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bf89b42d98d441ee99759646f3ab757d, type: 3} + m_Name: MouseScrollInvertAxisProcessor + m_EditorClassIdentifier: + invertX: 1 + invertY: 1 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollInvertAxisProcessor.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollInvertAxisProcessor.asset.meta new file mode 100644 index 00000000..b4616438 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollInvertAxisProcessor.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a60378b93aa8c364c8bc97b9a9a7e671 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollPositionProfile.asset new file mode 100644 index 00000000..d46b998b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollPositionProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MouseScrollPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Mouse Scroll Position + stateChangeType: 0 + axisType: 4 + inputType: 50 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 11 + description: Scroll + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: Mouse ScrollWheel + axisCodeY: Mouse ScrollWheel + inputProcessors: + - {fileID: 11400000, guid: a60378b93aa8c364c8bc97b9a9a7e671, type: 2} + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollPositionProfile.asset.meta new file mode 100644 index 00000000..092fe0b6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/MouseScrollPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7547e87574e61b4469153f95bd0bfe5b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/RightMouseButtonProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/RightMouseButtonProfile.asset new file mode 100644 index 00000000..931c6064 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/RightMouseButtonProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightMouseButtonProfile + m_EditorClassIdentifier: + interactionMapping: + description: Right Mouse Button + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 324 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/RightMouseButtonProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/RightMouseButtonProfile.asset.meta new file mode 100644 index 00000000..18683c4f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/RightMouseButtonProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7e688039fbdb82946a13a2916f9bf3d0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/SpatialMousePositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/SpatialMousePositionProfile.asset new file mode 100644 index 00000000..dc6c6430 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/SpatialMousePositionProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialMousePositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Mouse Position + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: c9b96ce0cb2d7d4459e3ebdfc2736793, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/SpatialMousePositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/SpatialMousePositionProfile.asset.meta new file mode 100644 index 00000000..935861ff --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseController/SpatialMousePositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4dd348d11c4dd1c49a278635f86bf5b1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseControllerDataProviderProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseControllerDataProviderProfile.asset new file mode 100644 index 00000000..cb6a06e2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseControllerDataProviderProfile.asset @@ -0,0 +1,17 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 61e2d46e023f80b4fb38f37eb18eff3b, type: 3} + m_Name: MouseControllerDataProviderProfile + m_EditorClassIdentifier: + hasSetupDefaults: 1 + controllerMappingProfiles: + - {fileID: 11400000, guid: 6fff4a7b0d402fb489a8dfd19d6fee88, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseControllerDataProviderProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseControllerDataProviderProfile.asset.meta new file mode 100644 index 00000000..0c5644ab --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/MouseControllerDataProviderProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a2a4350cf0bc6a84cb524749c3c95eae +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController.meta new file mode 100644 index 00000000..ff472f4c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3bc90c9fdd82dbe42b2637415c24340f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/BackProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/BackProfile.asset new file mode 100644 index 00000000..ee178a85 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/BackProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: BackProfile + m_EditorClassIdentifier: + interactionMapping: + description: Back + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 337 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/BackProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/BackProfile.asset.meta new file mode 100644 index 00000000..4e4a2e8e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/BackProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 80c4faa0205406d44bd421b3f33b867f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/OculusGoOpenVRControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/OculusGoOpenVRControllerProfile.asset new file mode 100644 index 00000000..0edd65d5 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/OculusGoOpenVRControllerProfile.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: OculusGoOpenVRControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: f57df6f5-167e-45e8-b3f2-195d2c57a3f4 + handedness: 0 + visualizationProfile: {fileID: 0} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: c3ef6f083176e2b468c485bceaafc039, type: 2} + - {fileID: 11400000, guid: 2de84d4578425754eacb7aa5997d5f17, type: 2} + - {fileID: 11400000, guid: c3569931ac2810d40b478f3b992edf8f, type: 2} + - {fileID: 11400000, guid: d4e8eb8d48d47054cb9842ee376d8bb4, type: 2} + - {fileID: 11400000, guid: 80c4faa0205406d44bd421b3f33b867f, type: 2} + - {fileID: 11400000, guid: b98ba6470da168d459c782d583125b11, type: 2} + - {fileID: 11400000, guid: cd473c66ce7cfab448c60cbff4429164, type: 2} + - {fileID: 11400000, guid: dffbbc70aa5d30a4d9423e2c28b1462a, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/OculusGoOpenVRControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/OculusGoOpenVRControllerProfile.asset.meta new file mode 100644 index 00000000..37a44aea --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/OculusGoOpenVRControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 29e2b3b9e1ae4824e99f34b34c12b76d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadAxisProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadAxisProfile.asset new file mode 100644 index 00000000..035d5efc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadAxisProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: PrimaryTouchpadAxisProfile + m_EditorClassIdentifier: + interactionMapping: + description: PrimaryTouchpad Axis + stateChangeType: 0 + axisType: 4 + inputType: 49 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 5 + description: Teleport Direction + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: AXIS_4 + axisCodeY: AXIS_5 + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadAxisProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadAxisProfile.asset.meta new file mode 100644 index 00000000..3a772f8a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadAxisProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dffbbc70aa5d30a4d9423e2c28b1462a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadClickProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadClickProfile.asset new file mode 100644 index 00000000..a0e04782 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadClickProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: PrimaryTouchpadClickProfile + m_EditorClassIdentifier: + interactionMapping: + description: PrimaryTouchpad Click + stateChangeType: 0 + axisType: 2 + inputType: 24 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 339 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadClickProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadClickProfile.asset.meta new file mode 100644 index 00000000..4f5a30c4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadClickProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cd473c66ce7cfab448c60cbff4429164 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadTouchProfile.asset new file mode 100644 index 00000000..a99c6863 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: PrimaryTouchpadTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: PrimaryTouchpad Touch + stateChangeType: 0 + axisType: 2 + inputType: 22 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 347 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadTouchProfile.asset.meta new file mode 100644 index 00000000..8307218b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/PrimaryTouchpadTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b98ba6470da168d459c782d583125b11 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/SpatialPointerProfile.asset new file mode 100644 index 00000000..8e35daa3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/SpatialPointerProfile.asset @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 9e0e4acc675a18b4b9c65e9ff85cfe58, type: 2} + - {fileID: 11400000, guid: d3736f91cbeeb284fb90b9d389b7fe33, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..19d903d2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c3ef6f083176e2b468c485bceaafc039 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPositionProfile.asset new file mode 100644 index 00000000..5b46845b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Position + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_10 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPositionProfile.asset.meta new file mode 100644 index 00000000..126e2842 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2de84d4578425754eacb7aa5997d5f17 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPressProfile.asset new file mode 100644 index 00000000..22fa585d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Press + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: AXIS_10 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPressProfile.asset.meta new file mode 100644 index 00000000..93d8d95d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c3569931ac2810d40b478f3b992edf8f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerTouchProfile.asset new file mode 100644 index 00000000..b0406995 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Touch + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 345 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerTouchProfile.asset.meta new file mode 100644 index 00000000..b7cf760a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusGoController/TriggerTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d4e8eb8d48d47054cb9842ee376d8bb4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController.meta new file mode 100644 index 00000000..367afe2a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c3f8da1c12ee1184bbc7ced54d0b5a71 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.OneProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.OneProfile.asset new file mode 100644 index 00000000..088abaab --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.OneProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.OneProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.One + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 330 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.OneProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.OneProfile.asset.meta new file mode 100644 index 00000000..c387feaf --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.OneProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7a052b104cebd9d4380814363fa591be +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.TwoProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.TwoProfile.asset new file mode 100644 index 00000000..714a6ace --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.TwoProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.TwoProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Two + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 331 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.TwoProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.TwoProfile.asset.meta new file mode 100644 index 00000000..b1097d3f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/Button.TwoProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3002772c0676ef5418ad0979250b87e7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/D-PadPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/D-PadPositionProfile.asset new file mode 100644 index 00000000..47528ca6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/D-PadPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: D-PadPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: D-Pad Position + stateChangeType: 0 + axisType: 4 + inputType: 49 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 11 + description: Scroll + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: AXIS_5 + axisCodeY: AXIS_6 + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/D-PadPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/D-PadPositionProfile.asset.meta new file mode 100644 index 00000000..6e3f3b27 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/D-PadPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d3d0aec4371c2ee47a243938bfd91ff8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/OculusRemoteOpenVRControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/OculusRemoteOpenVRControllerProfile.asset new file mode 100644 index 00000000..27f4c1df --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/OculusRemoteOpenVRControllerProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: OculusRemoteOpenVRControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 24a7e9ca-43f0-487a-9e2b-609ccedf2756 + handedness: 0 + visualizationProfile: {fileID: 0} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: d3d0aec4371c2ee47a243938bfd91ff8, type: 2} + - {fileID: 11400000, guid: 7a052b104cebd9d4380814363fa591be, type: 2} + - {fileID: 11400000, guid: 3002772c0676ef5418ad0979250b87e7, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/OculusRemoteOpenVRControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/OculusRemoteOpenVRControllerProfile.asset.meta new file mode 100644 index 00000000..8c8a60fb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusRemoteController/OculusRemoteOpenVRControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 717645c99a542d74a9fa4a214d8f894a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController.meta new file mode 100644 index 00000000..388d2929 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d8a714911ce5bec4dbcf80ef40d78e5f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left.meta new file mode 100644 index 00000000..4fd38c53 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 766b73f69c2ec87418a5c622ae4472e9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset new file mode 100644 index 00000000..c7db83b7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.PrimaryHandTriggerPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.PrimaryHandTrigger Press + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 16 + description: Grip Press + axisConstraint: 2 + keyCode: 0 + inputName: LHandTrigger + axisCodeX: AXIS_11 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset.meta new file mode 100644 index 00000000..43c535c8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4e6ca112a89bc8a4da89d367f0972644 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset new file mode 100644 index 00000000..486086e2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.PrimaryHandTriggerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.PrimaryHandTrigger + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 7 + description: Grip Strength + axisConstraint: 3 + keyCode: 0 + inputName: LHandTrigger + axisCodeX: AXIS_11 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset.meta new file mode 100644 index 00000000..d69bc2f9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryHandTriggerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b62bdd20dc750f84e95524a5ed7d4a95 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset new file mode 100644 index 00000000..06b9657c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.PrimaryIndexTriggerNearTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.PrimaryIndexTrigger Near Touch + stateChangeType: 0 + axisType: 2 + inputType: 12 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: LIndexTrigger + axisCodeX: AXIS_13 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset.meta new file mode 100644 index 00000000..e93f4202 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerNearTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9eada80ad9c3f0c478db97cacea7f982 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset new file mode 100644 index 00000000..aa3bcf16 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.PrimaryIndexTriggerPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.PrimaryIndexTrigger Press + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: LIndexTrigger + axisCodeX: AXIS_9 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset.meta new file mode 100644 index 00000000..891d181f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6684da1c5537924408242aeb09a96722 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset new file mode 100644 index 00000000..8ee86c2a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.PrimaryIndexTriggerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.PrimaryIndexTrigger + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: LIndexTrigger + axisCodeX: AXIS_9 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset.meta new file mode 100644 index 00000000..146d2c48 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 078df0b10d3e1074aa9976f4f928f38a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset new file mode 100644 index 00000000..5ba4e703 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.PrimaryIndexTriggerTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.PrimaryIndexTrigger Touch + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 344 + inputName: LIndexTrigger + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset.meta new file mode 100644 index 00000000..6486384b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis1D.PrimaryIndexTriggerTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ba4b36566bff5d4458c382a5f8e2de42 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset new file mode 100644 index 00000000..68ee80d0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis2D.PrimaryThumbRestProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis2D.PrimaryThumbRest + stateChangeType: 0 + axisType: 4 + inputType: 17 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: LTouchpad + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset.meta new file mode 100644 index 00000000..e0dde89b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbRestProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5f2c3f2b7b17e8447b5cb3671f5089f4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset new file mode 100644 index 00000000..07745255 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis2D.PrimaryThumbstickProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis2D.PrimaryThumbstick + stateChangeType: 0 + axisType: 4 + inputType: 17 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 5 + description: Teleport Direction + axisConstraint: 4 + keyCode: 0 + inputName: LThumbstick + axisCodeX: AXIS_1 + axisCodeY: AXIS_2 + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset.meta new file mode 100644 index 00000000..025a3d69 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Axis2D.PrimaryThumbstickProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8d73d3132335ac94b88a13f1de60c5ec +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourPressProfile.asset new file mode 100644 index 00000000..8e89990e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.FourPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Four Press + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 333 + inputName: Y + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourPressProfile.asset.meta new file mode 100644 index 00000000..8cf6fed8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 70d4b454d4d7bd54184fffbfc81f5218 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourTouchProfile.asset new file mode 100644 index 00000000..f408fb87 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.FourTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Four Touch + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 343 + inputName: Y + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourTouchProfile.asset.meta new file mode 100644 index 00000000..3a885b9d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.FourTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 443ada4c65fe2ac4a875bcd77403e738 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset new file mode 100644 index 00000000..bed3cbae --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.PrimaryThumbstickNearTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.PrimaryThumbstick Near Touch + stateChangeType: 0 + axisType: 2 + inputType: 31 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: LThumbstick + axisCodeX: AXIS_15 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset.meta new file mode 100644 index 00000000..9c200691 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickNearTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eef5b794e9afa6d4588670577951c8cf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset new file mode 100644 index 00000000..1c524370 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.PrimaryThumbstickPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.PrimaryThumbstick Press + stateChangeType: 0 + axisType: 2 + inputType: 18 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 338 + inputName: LThumbstick + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset.meta new file mode 100644 index 00000000..92fd666d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 80f56a87a099e6f4281aaa6a6c6bdfaa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset new file mode 100644 index 00000000..34757e3c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.PrimaryThumbstickTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.PrimaryThumbstick Touch + stateChangeType: 0 + axisType: 2 + inputType: 19 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 346 + inputName: LThumbstick + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset.meta new file mode 100644 index 00000000..7aca38f6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.PrimaryThumbstickTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 71af88ada0f87b6408b687dfe017f671 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.StartPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.StartPressProfile.asset new file mode 100644 index 00000000..3a3dcb44 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.StartPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.StartPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Start Press + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 337 + inputName: Start + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.StartPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.StartPressProfile.asset.meta new file mode 100644 index 00000000..ca3d81d0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.StartPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0607425e4bb401441be2af20781aa40a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreePressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreePressProfile.asset new file mode 100644 index 00000000..ba9808c1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreePressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.ThreePressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Three Press + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 332 + inputName: X + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreePressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreePressProfile.asset.meta new file mode 100644 index 00000000..117b4842 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreePressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5d833127727b79d4dbc607a5a365a3f2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreeTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreeTouchProfile.asset new file mode 100644 index 00000000..4bf620b7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreeTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.ThreeTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Three Touch + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 342 + inputName: X + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreeTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreeTouchProfile.asset.meta new file mode 100644 index 00000000..b311c762 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Button.ThreeTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1128cf02f922803459c393066239a212 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/LeftOculusTouchOpenVRGripPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/LeftOculusTouchOpenVRGripPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..e55b7690 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/LeftOculusTouchOpenVRGripPoseInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftOculusTouchOpenVRGripPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Pose + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/LeftOculusTouchOpenVRGripPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/LeftOculusTouchOpenVRGripPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..05c3c3dd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/LeftOculusTouchOpenVRGripPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3e8957221f1e66245be1ecce72ff7360 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/SpatialPointerProfile.asset new file mode 100644 index 00000000..8e35daa3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/SpatialPointerProfile.asset @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 9e0e4acc675a18b4b9c65e9ff85cfe58, type: 2} + - {fileID: 11400000, guid: d3736f91cbeeb284fb90b9d389b7fe33, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..5fe51ddb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 30554a684776dc64d832efa06d8879e6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset new file mode 100644 index 00000000..f92481ea --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Touch.PrimaryThumbRestNearTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touch.PrimaryThumbRest Near Touch + stateChangeType: 0 + axisType: 2 + inputType: 31 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: LThumbRest + axisCodeX: AXIS_17 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset.meta new file mode 100644 index 00000000..77bad1ae --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestNearTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e9709613c576c064dabe0b6962a09252 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset new file mode 100644 index 00000000..64f45b3d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Touch.PrimaryThumbRestTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touch.PrimaryThumbRest Touch + stateChangeType: 0 + axisType: 2 + inputType: 30 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 348 + inputName: LThumbRest + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset.meta new file mode 100644 index 00000000..db8379bb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Left/Touch.PrimaryThumbRestTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9fa15f0e93480ee45b868c815ae0a531 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/LeftOculusTouchOpenVRControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/LeftOculusTouchOpenVRControllerProfile.asset new file mode 100644 index 00000000..0dfc201a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/LeftOculusTouchOpenVRControllerProfile.asset @@ -0,0 +1,40 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: LeftOculusTouchOpenVRControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: f5779130-4990-44f7-a61a-196b34fa3aef + handedness: 1 + visualizationProfile: {fileID: 11400000, guid: fe125eaaf5547684d8506b794c5a6016, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: 30554a684776dc64d832efa06d8879e6, type: 2} + - {fileID: 11400000, guid: 078df0b10d3e1074aa9976f4f928f38a, type: 2} + - {fileID: 11400000, guid: ba4b36566bff5d4458c382a5f8e2de42, type: 2} + - {fileID: 11400000, guid: 9eada80ad9c3f0c478db97cacea7f982, type: 2} + - {fileID: 11400000, guid: 6684da1c5537924408242aeb09a96722, type: 2} + - {fileID: 11400000, guid: b62bdd20dc750f84e95524a5ed7d4a95, type: 2} + - {fileID: 11400000, guid: 4e6ca112a89bc8a4da89d367f0972644, type: 2} + - {fileID: 11400000, guid: 8d73d3132335ac94b88a13f1de60c5ec, type: 2} + - {fileID: 11400000, guid: 71af88ada0f87b6408b687dfe017f671, type: 2} + - {fileID: 11400000, guid: eef5b794e9afa6d4588670577951c8cf, type: 2} + - {fileID: 11400000, guid: 80f56a87a099e6f4281aaa6a6c6bdfaa, type: 2} + - {fileID: 11400000, guid: 5d833127727b79d4dbc607a5a365a3f2, type: 2} + - {fileID: 11400000, guid: 70d4b454d4d7bd54184fffbfc81f5218, type: 2} + - {fileID: 11400000, guid: 0607425e4bb401441be2af20781aa40a, type: 2} + - {fileID: 11400000, guid: 1128cf02f922803459c393066239a212, type: 2} + - {fileID: 11400000, guid: 443ada4c65fe2ac4a875bcd77403e738, type: 2} + - {fileID: 11400000, guid: 9fa15f0e93480ee45b868c815ae0a531, type: 2} + - {fileID: 11400000, guid: e9709613c576c064dabe0b6962a09252, type: 2} + - {fileID: 11400000, guid: 3e8957221f1e66245be1ecce72ff7360, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/LeftOculusTouchOpenVRControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/LeftOculusTouchOpenVRControllerProfile.asset.meta new file mode 100644 index 00000000..9ba6c672 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/LeftOculusTouchOpenVRControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fce2981aedf04434ebf895dfc8efde6c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right.meta new file mode 100644 index 00000000..55935553 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dfdd9c1df9ffaae4e9c819543870a8c4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset new file mode 100644 index 00000000..5dd6e76d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.SecondaryHandTriggerPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.SecondaryHandTrigger Press + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 16 + description: Grip Press + axisConstraint: 2 + keyCode: 0 + inputName: RHandTrigger + axisCodeX: AXIS_12 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset.meta new file mode 100644 index 00000000..438e976b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4c67768e5e360dc4abbbba8e0145cdf1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset new file mode 100644 index 00000000..646b7ebc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.SecondaryHandTriggerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.SecondaryHandTrigger + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 7 + description: Grip Strength + axisConstraint: 3 + keyCode: 0 + inputName: RHandTrigger + axisCodeX: AXIS_12 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset.meta new file mode 100644 index 00000000..93ddc99b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryHandTriggerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c4fd1955456798541b4464d923b5b7e5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset new file mode 100644 index 00000000..af61ce28 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.SecondaryIndexTriggerNearTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.SecondaryIndexTrigger Near Touch + stateChangeType: 0 + axisType: 2 + inputType: 12 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: RIndexTrigger + axisCodeX: AXIS_14 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset.meta new file mode 100644 index 00000000..61d63412 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerNearTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 154f225352d33ad4badc96d265a10380 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset new file mode 100644 index 00000000..c5e7d492 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.SecondaryIndexTriggerPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.SecondaryIndexTrigger Press + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: RIndexTrigger + axisCodeX: AXIS_10 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset.meta new file mode 100644 index 00000000..557129f2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5eb2d7a4736229049bdeee1927419c0d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset new file mode 100644 index 00000000..2e146d28 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.SecondaryIndexTriggerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.SecondaryIndexTrigger + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: RIndexTrigger + axisCodeX: AXIS_10 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset.meta new file mode 100644 index 00000000..118524b3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0d499af05ab248c4fa0b76ca57527b2a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset new file mode 100644 index 00000000..022e72cd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis1D.SecondaryIndexTriggerTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis1D.SecondaryIndexTrigger Touch + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 345 + inputName: RIndexTrigger + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset.meta new file mode 100644 index 00000000..bd152b1e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis1D.SecondaryIndexTriggerTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8ebab325de63c1440bbcd61f35ebd278 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset new file mode 100644 index 00000000..4d65a974 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis2D.SecondaryThumbRestProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis2D.SecondaryThumbRest + stateChangeType: 0 + axisType: 4 + inputType: 17 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: RTouchpad + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset.meta new file mode 100644 index 00000000..7af105a3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbRestProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 87792809226055e40a2b904857601712 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset new file mode 100644 index 00000000..b8a3bde9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Axis2D.SecondaryThumbstickProfile + m_EditorClassIdentifier: + interactionMapping: + description: Axis2D.SecondaryThumbstick + stateChangeType: 0 + axisType: 4 + inputType: 17 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 5 + description: Teleport Direction + axisConstraint: 4 + keyCode: 0 + inputName: RThumbstick + axisCodeX: AXIS_4 + axisCodeY: AXIS_5 + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset.meta new file mode 100644 index 00000000..d0dceea9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Axis2D.SecondaryThumbstickProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 59c9da44d8d7ab54a83b905d5f4265e3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OnePressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OnePressProfile.asset new file mode 100644 index 00000000..460bdcac --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OnePressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.OnePressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.One Press + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 330 + inputName: A + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OnePressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OnePressProfile.asset.meta new file mode 100644 index 00000000..d809233a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OnePressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 888aed8e55b3f584188319372e7a8a55 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OneTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OneTouchProfile.asset new file mode 100644 index 00000000..eec17458 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OneTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.OneTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.One Touch + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 340 + inputName: A + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OneTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OneTouchProfile.asset.meta new file mode 100644 index 00000000..ad6f96fe --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.OneTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f83c259404c1be489a7c9077ebb0b28 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset new file mode 100644 index 00000000..7377f7d8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.SecondaryThumbstickNearTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.SecondaryThumbstick Near Touch + stateChangeType: 0 + axisType: 2 + inputType: 31 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: RThumbstick + axisCodeX: AXIS_16 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset.meta new file mode 100644 index 00000000..5d952b46 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickNearTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1c3202d2b268f8149899c7e1487b656b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset new file mode 100644 index 00000000..fe1ce692 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.SecondaryThumbstickPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.SecondaryThumbstick Press + stateChangeType: 0 + axisType: 2 + inputType: 18 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 339 + inputName: RThumbstick + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset.meta new file mode 100644 index 00000000..7a9318e8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e7124493dc782cf4889645f9ec2c01bf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset new file mode 100644 index 00000000..883bc506 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.SecondaryThumbstickTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.SecondaryThumbstick Touch + stateChangeType: 0 + axisType: 2 + inputType: 19 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 347 + inputName: RThumbstick + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset.meta new file mode 100644 index 00000000..b7b5c610 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.SecondaryThumbstickTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 583a2a4a4d22a63478d0ada16f510874 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoPressProfile.asset new file mode 100644 index 00000000..6022e02d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.TwoPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Two Press + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 331 + inputName: B + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoPressProfile.asset.meta new file mode 100644 index 00000000..421e2994 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 505faf22e96b9404d837af78c42932b2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoTouchProfile.asset new file mode 100644 index 00000000..7f3953c5 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Button.TwoTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Button.Two Touch + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 341 + inputName: B + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoTouchProfile.asset.meta new file mode 100644 index 00000000..fdd3544a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Button.TwoTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5e8424acaef6b4f4f8d91b6e39808752 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/RightOculusTouchOpenVRGripPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/RightOculusTouchOpenVRGripPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..699fbe6a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/RightOculusTouchOpenVRGripPoseInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightOculusTouchOpenVRGripPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Pose + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/RightOculusTouchOpenVRGripPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/RightOculusTouchOpenVRGripPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..52e4a0a3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/RightOculusTouchOpenVRGripPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 415d87c61a9782e43967301589911be4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/SpatialPointerProfile.asset new file mode 100644 index 00000000..8e35daa3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/SpatialPointerProfile.asset @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 9e0e4acc675a18b4b9c65e9ff85cfe58, type: 2} + - {fileID: 11400000, guid: d3736f91cbeeb284fb90b9d389b7fe33, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..dd9b945e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b3dda0b9a337a1b4f8b49b4abe228acb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset new file mode 100644 index 00000000..fc857560 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Touch.SecondaryThumbRestNearTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touch.SecondaryThumbRest Near Touch + stateChangeType: 0 + axisType: 2 + inputType: 31 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: RThumbRest + axisCodeX: AXIS_18 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset.meta new file mode 100644 index 00000000..ef311ddb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestNearTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 44d64e0bc9d128f42b8f4718a6a2484b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset new file mode 100644 index 00000000..1b92e5d7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: Touch.SecondaryThumbRestTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touch.SecondaryThumbRest Touch + stateChangeType: 0 + axisType: 2 + inputType: 30 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 349 + inputName: RThumbRest + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset.meta new file mode 100644 index 00000000..c3bfd483 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/Right/Touch.SecondaryThumbRestTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 881b2d5a2173e8c4e9921ed1e726b45c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/RightOculusTouchOpenVRControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/RightOculusTouchOpenVRControllerProfile.asset new file mode 100644 index 00000000..62889874 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/RightOculusTouchOpenVRControllerProfile.asset @@ -0,0 +1,39 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: RightOculusTouchOpenVRControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: f5779130-4990-44f7-a61a-196b34fa3aef + handedness: 2 + visualizationProfile: {fileID: 11400000, guid: 5ee67c77447ce88409a3e04e57806963, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: b3dda0b9a337a1b4f8b49b4abe228acb, type: 2} + - {fileID: 11400000, guid: 0d499af05ab248c4fa0b76ca57527b2a, type: 2} + - {fileID: 11400000, guid: 8ebab325de63c1440bbcd61f35ebd278, type: 2} + - {fileID: 11400000, guid: 154f225352d33ad4badc96d265a10380, type: 2} + - {fileID: 11400000, guid: 5eb2d7a4736229049bdeee1927419c0d, type: 2} + - {fileID: 11400000, guid: c4fd1955456798541b4464d923b5b7e5, type: 2} + - {fileID: 11400000, guid: 4c67768e5e360dc4abbbba8e0145cdf1, type: 2} + - {fileID: 11400000, guid: 59c9da44d8d7ab54a83b905d5f4265e3, type: 2} + - {fileID: 11400000, guid: 583a2a4a4d22a63478d0ada16f510874, type: 2} + - {fileID: 11400000, guid: 1c3202d2b268f8149899c7e1487b656b, type: 2} + - {fileID: 11400000, guid: e7124493dc782cf4889645f9ec2c01bf, type: 2} + - {fileID: 11400000, guid: 888aed8e55b3f584188319372e7a8a55, type: 2} + - {fileID: 11400000, guid: 505faf22e96b9404d837af78c42932b2, type: 2} + - {fileID: 11400000, guid: 6f83c259404c1be489a7c9077ebb0b28, type: 2} + - {fileID: 11400000, guid: 5e8424acaef6b4f4f8d91b6e39808752, type: 2} + - {fileID: 11400000, guid: 881b2d5a2173e8c4e9921ed1e726b45c, type: 2} + - {fileID: 11400000, guid: 44d64e0bc9d128f42b8f4718a6a2484b, type: 2} + - {fileID: 11400000, guid: 415d87c61a9782e43967301589911be4, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/RightOculusTouchOpenVRControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/RightOculusTouchOpenVRControllerProfile.asset.meta new file mode 100644 index 00000000..2d69517b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OculusTouchController/RightOculusTouchOpenVRControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 16ee8e74564be6d4b8700e72e3fd99b5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OpenVRControllerDataProviderProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OpenVRControllerDataProviderProfile.asset new file mode 100644 index 00000000..a2178385 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OpenVRControllerDataProviderProfile.asset @@ -0,0 +1,26 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e9b4b8c4b4bb39540b39100b619143b9, type: 3} + m_Name: OpenVRControllerDataProviderProfile + m_EditorClassIdentifier: + hasSetupDefaults: 1 + controllerMappingProfiles: + - {fileID: 11400000, guid: ab6b31d38d8d43e4ea4ac70f9230a85f, type: 2} + - {fileID: 11400000, guid: 3a70179079110bd468574c6c58fff352, type: 2} + - {fileID: 11400000, guid: 29e2b3b9e1ae4824e99f34b34c12b76d, type: 2} + - {fileID: 11400000, guid: 717645c99a542d74a9fa4a214d8f894a, type: 2} + - {fileID: 11400000, guid: fce2981aedf04434ebf895dfc8efde6c, type: 2} + - {fileID: 11400000, guid: 16ee8e74564be6d4b8700e72e3fd99b5, type: 2} + - {fileID: 11400000, guid: 63adf1a4ad54244478e37737b585cf07, type: 2} + - {fileID: 11400000, guid: f79d6d785075662408442ad4ecaca186, type: 2} + - {fileID: 11400000, guid: 1b3c5d81cc127d848a6291cae0629e4c, type: 2} + - {fileID: 11400000, guid: 3e8e2b82024558942af774cd27e73514, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OpenVRControllerDataProviderProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OpenVRControllerDataProviderProfile.asset.meta new file mode 100644 index 00000000..f47be61f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/OpenVRControllerDataProviderProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b120d542bee585744b5567157705b9f3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/TouchControllerDataProviderProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/TouchControllerDataProviderProfile.asset new file mode 100644 index 00000000..12afd070 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/TouchControllerDataProviderProfile.asset @@ -0,0 +1,17 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: af747326ba6ad684ca81583e9f35e015, type: 3} + m_Name: TouchControllerDataProviderProfile + m_EditorClassIdentifier: + hasSetupDefaults: 1 + controllerMappingProfiles: + - {fileID: 11400000, guid: e424a8aaee4bd574d9fff3ea51207cc0, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/TouchControllerDataProviderProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/TouchControllerDataProviderProfile.asset.meta new file mode 100644 index 00000000..f134fc10 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/TouchControllerDataProviderProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 30f1afb97be1db54e9e04aa6b965b410 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityInputControllerDataProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityInputControllerDataProfile.asset new file mode 100644 index 00000000..57c28869 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityInputControllerDataProfile.asset @@ -0,0 +1,17 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f98460a8fca343d097417f9fc0cb54a0, type: 3} + m_Name: UnityInputControllerDataProfile + m_EditorClassIdentifier: + hasSetupDefaults: 1 + controllerMappingProfiles: + - {fileID: 11400000, guid: 0d32262d7aa7a67458d247a2709f04d2, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityInputControllerDataProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityInputControllerDataProfile.asset.meta new file mode 100644 index 00000000..a3f2d67d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityInputControllerDataProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 69ab987a62681cf4d9f4042ef17b0ddd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController.meta new file mode 100644 index 00000000..7d892c8e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7962d979a3418ec4f97723d5159391c0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchDragProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchDragProfile.asset new file mode 100644 index 00000000..ab11f45a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchDragProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchDragProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touch Drag + stateChangeType: 0 + axisType: 4 + inputType: 0 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchDragProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchDragProfile.asset.meta new file mode 100644 index 00000000..0f41f153 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchDragProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4331232c046229b4c83e89b8436cc6b5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchHoldProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchHoldProfile.asset new file mode 100644 index 00000000..31929f7d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchHoldProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchHoldProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touch Hold + stateChangeType: 0 + axisType: 2 + inputType: 0 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchHoldProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchHoldProfile.asset.meta new file mode 100644 index 00000000..16ff0c1d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchHoldProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6308250ab784d5f4a887bd06e6fa0716 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerDeltaProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerDeltaProfile.asset new file mode 100644 index 00000000..158add0e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerDeltaProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchPointerDeltaProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touch Pointer Delta + stateChangeType: 0 + axisType: 4 + inputType: 4 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 12 + description: Mouse Delta + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerDeltaProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerDeltaProfile.asset.meta new file mode 100644 index 00000000..bace0f85 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerDeltaProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ebaad6d767178e24b9eb45f27adf6c1a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerPositionProfile.asset new file mode 100644 index 00000000..930c99b6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerPositionProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchPointerPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touch Pointer Position + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: fb98760b7ff06e4458b0431c80d6ea06, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerPositionProfile.asset.meta new file mode 100644 index 00000000..f5a59fa8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPointerPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3b39c5a4424c4ad4c89128c7f86a2d50 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPressProfile.asset new file mode 100644 index 00000000..22209714 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touch Press + stateChangeType: 0 + axisType: 2 + inputType: 6 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPressProfile.asset.meta new file mode 100644 index 00000000..76b1d687 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/TouchPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eddae251e9d60a846b9a81a3c6b683f0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/UnityTouchControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/UnityTouchControllerProfile.asset new file mode 100644 index 00000000..d7fe1db4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/UnityTouchControllerProfile.asset @@ -0,0 +1,25 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: UnityTouchControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 98f97eda-4418-4b4b-88e9-e4f1f0734e4e + handedness: 7 + visualizationProfile: {fileID: 0} + useCustomInteractions: 1 + interactionMappingProfiles: + - {fileID: 11400000, guid: ebaad6d767178e24b9eb45f27adf6c1a, type: 2} + - {fileID: 11400000, guid: 3b39c5a4424c4ad4c89128c7f86a2d50, type: 2} + - {fileID: 11400000, guid: eddae251e9d60a846b9a81a3c6b683f0, type: 2} + - {fileID: 11400000, guid: 6308250ab784d5f4a887bd06e6fa0716, type: 2} + - {fileID: 11400000, guid: 4331232c046229b4c83e89b8436cc6b5, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/UnityTouchControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/UnityTouchControllerProfile.asset.meta new file mode 100644 index 00000000..f25d86b3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/UnityTouchController/UnityTouchControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e424a8aaee4bd574d9fff3ea51207cc0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController.meta new file mode 100644 index 00000000..6b21bbcc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 51100e2f82d068e48986d587eea83146 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left.meta new file mode 100644 index 00000000..54508f5a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5118aa6db518cd243957789eb5cccdd7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/GripPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/GripPressProfile.asset new file mode 100644 index 00000000..915b9fcc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/GripPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: GripPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Press + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 7 + description: Grip Strength + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_11 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/GripPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/GripPressProfile.asset.meta new file mode 100644 index 00000000..3d08b434 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/GripPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 39b7451d02b4c9f4e9231ccd84aee692 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/MenuButtonProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/MenuButtonProfile.asset new file mode 100644 index 00000000..e0230ac6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/MenuButtonProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MenuButtonProfile + m_EditorClassIdentifier: + interactionMapping: + description: Menu Button + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 332 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/MenuButtonProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/MenuButtonProfile.asset.meta new file mode 100644 index 00000000..88026730 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/MenuButtonProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2ed8310b6097ee64090bc06f0c2fc685 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/SpatialPointerProfile.asset new file mode 100644 index 00000000..8e35daa3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/SpatialPointerProfile.asset @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 9e0e4acc675a18b4b9c65e9ff85cfe58, type: 2} + - {fileID: 11400000, guid: d3736f91cbeeb284fb90b9d389b7fe33, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..eecab9b7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b494544118a382d46997c719668ca001 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPositionProfile.asset new file mode 100644 index 00000000..ba3c2b0a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TrackpadPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trackpad Position + stateChangeType: 0 + axisType: 4 + inputType: 21 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: AXIS_1 + axisCodeY: AXIS_2 + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPositionProfile.asset.meta new file mode 100644 index 00000000..f9a6ec15 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2084299549b8c4743b28b47a21dbc394 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPressProfile.asset new file mode 100644 index 00000000..34e42f37 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TrackpadPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trackpad Press + stateChangeType: 0 + axisType: 2 + inputType: 24 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 338 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPressProfile.asset.meta new file mode 100644 index 00000000..90202486 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 99238e116ed361b4b944573b4dea7c00 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadTouchProfile.asset new file mode 100644 index 00000000..abc3737f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TrackpadTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trackpad Touch + stateChangeType: 0 + axisType: 2 + inputType: 22 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 346 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadTouchProfile.asset.meta new file mode 100644 index 00000000..dc56cf69 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TrackpadTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d5834e706274f4942929b982c434d7eb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPositionProfile.asset new file mode 100644 index 00000000..f2edfde1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Position + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_9 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPositionProfile.asset.meta new file mode 100644 index 00000000..dc100b24 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 50425b5c4a6ea7445ac10f0ceff8f2dc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPressProfile.asset new file mode 100644 index 00000000..90e2d0e2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Press + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 344 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPressProfile.asset.meta new file mode 100644 index 00000000..5bf6910f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2b48241d64248ba47a22a9d63c765638 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerTouchProfile.asset new file mode 100644 index 00000000..c6392110 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Touch + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: AXIS_9 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerTouchProfile.asset.meta new file mode 100644 index 00000000..12900a58 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Left/TriggerTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2d19b4663dc82eb49b1c448f096da9f2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/LeftViveWandOpenVRControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/LeftViveWandOpenVRControllerProfile.asset new file mode 100644 index 00000000..da807f6e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/LeftViveWandOpenVRControllerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: LeftViveWandOpenVRControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 506f192f-b93f-43b3-a34f-b15dfd855631 + handedness: 1 + visualizationProfile: {fileID: 11400000, guid: fe125eaaf5547684d8506b794c5a6016, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: b494544118a382d46997c719668ca001, type: 2} + - {fileID: 11400000, guid: 50425b5c4a6ea7445ac10f0ceff8f2dc, type: 2} + - {fileID: 11400000, guid: 2b48241d64248ba47a22a9d63c765638, type: 2} + - {fileID: 11400000, guid: 2d19b4663dc82eb49b1c448f096da9f2, type: 2} + - {fileID: 11400000, guid: 39b7451d02b4c9f4e9231ccd84aee692, type: 2} + - {fileID: 11400000, guid: 2084299549b8c4743b28b47a21dbc394, type: 2} + - {fileID: 11400000, guid: d5834e706274f4942929b982c434d7eb, type: 2} + - {fileID: 11400000, guid: 99238e116ed361b4b944573b4dea7c00, type: 2} + - {fileID: 11400000, guid: 2ed8310b6097ee64090bc06f0c2fc685, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/LeftViveWandOpenVRControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/LeftViveWandOpenVRControllerProfile.asset.meta new file mode 100644 index 00000000..77548685 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/LeftViveWandOpenVRControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 63adf1a4ad54244478e37737b585cf07 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right.meta new file mode 100644 index 00000000..323e16cc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4d35d706c66069341b254fc6b5068f47 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/GripPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/GripPressProfile.asset new file mode 100644 index 00000000..38b54b64 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/GripPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: GripPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Press + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 7 + description: Grip Strength + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_12 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/GripPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/GripPressProfile.asset.meta new file mode 100644 index 00000000..1ca4c124 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/GripPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f3019784c1869244a5ccec7bf13de5a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/MenuButtonProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/MenuButtonProfile.asset new file mode 100644 index 00000000..a42e577d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/MenuButtonProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MenuButtonProfile + m_EditorClassIdentifier: + interactionMapping: + description: Menu Button + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 330 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/MenuButtonProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/MenuButtonProfile.asset.meta new file mode 100644 index 00000000..07814252 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/MenuButtonProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ecd290afe3981c7408f73069f7c3443d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/SpatialPointerProfile.asset new file mode 100644 index 00000000..8e35daa3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/SpatialPointerProfile.asset @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 9e0e4acc675a18b4b9c65e9ff85cfe58, type: 2} + - {fileID: 11400000, guid: d3736f91cbeeb284fb90b9d389b7fe33, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..736c9d23 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e8f7139785de16d4aa3d2737802a730b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPositionProfile.asset new file mode 100644 index 00000000..2c2dd17a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TrackpadPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trackpad Position + stateChangeType: 0 + axisType: 4 + inputType: 21 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 5 + description: Teleport Direction + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: AXIS_4 + axisCodeY: AXIS_5 + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPositionProfile.asset.meta new file mode 100644 index 00000000..251ea00d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6b72992fa3a59964aa49205757050366 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPressProfile.asset new file mode 100644 index 00000000..b8c004ce --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TrackpadPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trackpad Press + stateChangeType: 0 + axisType: 2 + inputType: 24 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 339 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPressProfile.asset.meta new file mode 100644 index 00000000..72c3f54c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 84e70a2c8259b4341954309f59d610bb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadTouchProfile.asset new file mode 100644 index 00000000..5e6be030 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TrackpadTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trackpad Touch + stateChangeType: 0 + axisType: 2 + inputType: 22 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 347 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadTouchProfile.asset.meta new file mode 100644 index 00000000..a1ab1b3d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TrackpadTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: faf920b54ab386a41a82c055912ccdbc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPositionProfile.asset new file mode 100644 index 00000000..5b46845b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Position + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_10 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPositionProfile.asset.meta new file mode 100644 index 00000000..53fe5d8e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 36e7bbfca69e8cb4f9c6348a35886dbc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPressProfile.asset new file mode 100644 index 00000000..af242e62 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Press + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 345 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPressProfile.asset.meta new file mode 100644 index 00000000..b2f13da9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2faa4aa403ddeb940adc602db0760bc5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerTouchProfile.asset new file mode 100644 index 00000000..4df712ee --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Touch + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: AXIS_10 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerTouchProfile.asset.meta new file mode 100644 index 00000000..8fd2b63d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/Right/TriggerTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2c45198f54ef53b4c84f402ec135e826 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/RightViveWandOpenVRControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/RightViveWandOpenVRControllerProfile.asset new file mode 100644 index 00000000..dbc09561 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/RightViveWandOpenVRControllerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: RightViveWandOpenVRControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 506f192f-b93f-43b3-a34f-b15dfd855631 + handedness: 2 + visualizationProfile: {fileID: 11400000, guid: 5ee67c77447ce88409a3e04e57806963, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: e8f7139785de16d4aa3d2737802a730b, type: 2} + - {fileID: 11400000, guid: 36e7bbfca69e8cb4f9c6348a35886dbc, type: 2} + - {fileID: 11400000, guid: 2faa4aa403ddeb940adc602db0760bc5, type: 2} + - {fileID: 11400000, guid: 2c45198f54ef53b4c84f402ec135e826, type: 2} + - {fileID: 11400000, guid: 8f3019784c1869244a5ccec7bf13de5a, type: 2} + - {fileID: 11400000, guid: 6b72992fa3a59964aa49205757050366, type: 2} + - {fileID: 11400000, guid: faf920b54ab386a41a82c055912ccdbc, type: 2} + - {fileID: 11400000, guid: 84e70a2c8259b4341954309f59d610bb, type: 2} + - {fileID: 11400000, guid: ecd290afe3981c7408f73069f7c3443d, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/RightViveWandOpenVRControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/RightViveWandOpenVRControllerProfile.asset.meta new file mode 100644 index 00000000..ebe9f197 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/ViveWandController/RightViveWandOpenVRControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f79d6d785075662408442ad4ecaca186 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController.meta new file mode 100644 index 00000000..480e84d1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4107fc3ebd1ca664189a61cfb66e03d3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left.meta new file mode 100644 index 00000000..968aa694 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e5d2741f23dcb3c49b091a09fc40dbc0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/GripPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/GripPressProfile.asset new file mode 100644 index 00000000..0c7ad693 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/GripPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: GripPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Press + stateChangeType: 0 + axisType: 3 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 7 + description: Grip Strength + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_11 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/GripPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/GripPressProfile.asset.meta new file mode 100644 index 00000000..da3580cd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/GripPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7e4ecf81e5712754c8d245537978d758 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset new file mode 100644 index 00000000..42be6372 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset @@ -0,0 +1,16 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bf89b42d98d441ee99759646f3ab757d, type: 3} + m_Name: InvertDualAxisProcessor + m_EditorClassIdentifier: + invertX: 0 + invertY: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset.meta new file mode 100644 index 00000000..d91c46dc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2158a760049510f429c34a8e131a1e69 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/MenuPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/MenuPressProfile.asset new file mode 100644 index 00000000..a47b8a95 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/MenuPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MenuPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Menu Press + stateChangeType: 0 + axisType: 2 + inputType: 27 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 330 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/MenuPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/MenuPressProfile.asset.meta new file mode 100644 index 00000000..dff31d50 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/MenuPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8374fc38e78c9174f812db35adecc959 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialGripProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialGripProfile.asset new file mode 100644 index 00000000..0eb3e268 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialGripProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialGripProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Grip + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialGripProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialGripProfile.asset.meta new file mode 100644 index 00000000..be86160d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialGripProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b10b88729da78e243b99b30e15b3f810 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialPointerProfile.asset new file mode 100644 index 00000000..8e35daa3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialPointerProfile.asset @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 9e0e4acc675a18b4b9c65e9ff85cfe58, type: 2} + - {fileID: 11400000, guid: d3736f91cbeeb284fb90b9d389b7fe33, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..f3490257 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4eabae8f23a506948894ceab3ed56bed +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset new file mode 100644 index 00000000..8f77241a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: ThumbstickClickProfile + m_EditorClassIdentifier: + interactionMapping: + description: Thumbstick Click + stateChangeType: 0 + axisType: 2 + inputType: 18 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 338 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset.meta new file mode 100644 index 00000000..57842db9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f19cadd37dae8c7449b4bf2a9ec8f262 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset new file mode 100644 index 00000000..646b8b3f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: ThumbstickPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Thumbstick Position + stateChangeType: 0 + axisType: 4 + inputType: 17 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 5 + description: Teleport Direction + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: AXIS_1 + axisCodeY: AXIS_2 + inputProcessors: + - {fileID: 11400000, guid: 2158a760049510f429c34a8e131a1e69, type: 2} + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset.meta new file mode 100644 index 00000000..127a8973 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2394acc9efbc4a649bbc8a4af8279a85 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset new file mode 100644 index 00000000..4a32a196 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Position + stateChangeType: 0 + axisType: 4 + inputType: 21 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: AXIS_17 + axisCodeY: AXIS_18 + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset.meta new file mode 100644 index 00000000..edd4b689 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2e61fbdb1f55b0146a52033f2ebbfbff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPressProfile.asset new file mode 100644 index 00000000..14303be3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Press + stateChangeType: 0 + axisType: 2 + inputType: 24 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 338 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPressProfile.asset.meta new file mode 100644 index 00000000..19883b9d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3070249a19481544a88c8edb12bdb4f1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset new file mode 100644 index 00000000..824022c9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Touch + stateChangeType: 0 + axisType: 2 + inputType: 22 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 346 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset.meta new file mode 100644 index 00000000..364823bc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 49266328add1c764e8b882e1e9bb89d4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPositionProfile.asset new file mode 100644 index 00000000..f2edfde1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Position + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_9 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPositionProfile.asset.meta new file mode 100644 index 00000000..17604e93 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c6849f14c4d742d4e918c4ce1bf2b4b4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset new file mode 100644 index 00000000..a1a78ad6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPress(Select)Profile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Press (Select) + stateChangeType: 0 + axisType: 2 + inputType: 25 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: AXIS_9 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset.meta new file mode 100644 index 00000000..353ff1fd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f244c21bf0106a64a903950d2fbd60f9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchProfile.asset new file mode 100644 index 00000000..6c810dd0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Touch + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 344 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchProfile.asset.meta new file mode 100644 index 00000000..1e474743 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cb57613c9a29a204a9e53a5f084d876b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset new file mode 100644 index 00000000..0068216e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerTouchedProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Touched + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset.meta new file mode 100644 index 00000000..4dea3593 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 20ebd784cd7d33c4c8e046ad905f8fd6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/LeftWMROpenVRControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/LeftWMROpenVRControllerProfile.asset new file mode 100644 index 00000000..14421267 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/LeftWMROpenVRControllerProfile.asset @@ -0,0 +1,33 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: LeftWMROpenVRControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 193f55d4-44e0-4d3b-82fd-0cb417b3668b + handedness: 1 + visualizationProfile: {fileID: 11400000, guid: fe125eaaf5547684d8506b794c5a6016, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: 4eabae8f23a506948894ceab3ed56bed, type: 2} + - {fileID: 11400000, guid: b10b88729da78e243b99b30e15b3f810, type: 2} + - {fileID: 11400000, guid: 7e4ecf81e5712754c8d245537978d758, type: 2} + - {fileID: 11400000, guid: c6849f14c4d742d4e918c4ce1bf2b4b4, type: 2} + - {fileID: 11400000, guid: f244c21bf0106a64a903950d2fbd60f9, type: 2} + - {fileID: 11400000, guid: cb57613c9a29a204a9e53a5f084d876b, type: 2} + - {fileID: 11400000, guid: 2e61fbdb1f55b0146a52033f2ebbfbff, type: 2} + - {fileID: 11400000, guid: 49266328add1c764e8b882e1e9bb89d4, type: 2} + - {fileID: 11400000, guid: 3070249a19481544a88c8edb12bdb4f1, type: 2} + - {fileID: 11400000, guid: 8374fc38e78c9174f812db35adecc959, type: 2} + - {fileID: 11400000, guid: 2394acc9efbc4a649bbc8a4af8279a85, type: 2} + - {fileID: 11400000, guid: f19cadd37dae8c7449b4bf2a9ec8f262, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/LeftWMROpenVRControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/LeftWMROpenVRControllerProfile.asset.meta new file mode 100644 index 00000000..deaaa37a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/LeftWMROpenVRControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1b3c5d81cc127d848a6291cae0629e4c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right.meta new file mode 100644 index 00000000..eac945f4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7b6c25febbe774f4c808d5b48d138001 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/GripPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/GripPressProfile.asset new file mode 100644 index 00000000..6f82c007 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/GripPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: GripPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Press + stateChangeType: 0 + axisType: 3 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 7 + description: Grip Strength + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_12 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/GripPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/GripPressProfile.asset.meta new file mode 100644 index 00000000..40391c04 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/GripPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 57cf8e3c0f0470e418fee2c4919c460a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset new file mode 100644 index 00000000..42be6372 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset @@ -0,0 +1,16 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bf89b42d98d441ee99759646f3ab757d, type: 3} + m_Name: InvertDualAxisProcessor + m_EditorClassIdentifier: + invertX: 0 + invertY: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset.meta new file mode 100644 index 00000000..15898eb8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9c40de59f43b08245b4e74f7dc6b14bc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/MenuPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/MenuPressProfile.asset new file mode 100644 index 00000000..89075340 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/MenuPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MenuPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Menu Press + stateChangeType: 0 + axisType: 2 + inputType: 27 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 332 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/MenuPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/MenuPressProfile.asset.meta new file mode 100644 index 00000000..59bcb22a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/MenuPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4c6a577ebcde56343807fd5d3c50dd77 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialGripProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialGripProfile.asset new file mode 100644 index 00000000..0eb3e268 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialGripProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialGripProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Grip + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialGripProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialGripProfile.asset.meta new file mode 100644 index 00000000..746b9ba5 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialGripProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ee806d7f585c7c34295c77499684b046 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialPointerProfile.asset new file mode 100644 index 00000000..8e35daa3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialPointerProfile.asset @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 9e0e4acc675a18b4b9c65e9ff85cfe58, type: 2} + - {fileID: 11400000, guid: d3736f91cbeeb284fb90b9d389b7fe33, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..e394795e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2383d0f88b769e842b742f8a8b099c6d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset new file mode 100644 index 00000000..c1de0b6d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: ThumbstickClickProfile + m_EditorClassIdentifier: + interactionMapping: + description: Thumbstick Click + stateChangeType: 0 + axisType: 2 + inputType: 18 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 339 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset.meta new file mode 100644 index 00000000..f0bf02ec --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 72cf9cede81a0d6469e667e7f9f4d627 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset new file mode 100644 index 00000000..32c33756 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: ThumbstickPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Thumbstick Position + stateChangeType: 0 + axisType: 4 + inputType: 17 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 5 + description: Teleport Direction + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: AXIS_4 + axisCodeY: AXIS_5 + inputProcessors: + - {fileID: 11400000, guid: 9c40de59f43b08245b4e74f7dc6b14bc, type: 2} + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset.meta new file mode 100644 index 00000000..6044ce2a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1b5e85d560958ac4f8c261cc0700fe68 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset new file mode 100644 index 00000000..38e2e597 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Position + stateChangeType: 0 + axisType: 4 + inputType: 21 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: AXIS_19 + axisCodeY: AXIS_20 + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset.meta new file mode 100644 index 00000000..9c240acf --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 02554fe515e77724899f40f0f966b7f0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPressProfile.asset new file mode 100644 index 00000000..02e7490f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Press + stateChangeType: 0 + axisType: 2 + inputType: 24 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 339 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPressProfile.asset.meta new file mode 100644 index 00000000..afe09970 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f5364f5a5cacf724eb351a12b08175fc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset new file mode 100644 index 00000000..631418dd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Touch + stateChangeType: 0 + axisType: 2 + inputType: 22 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 347 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset.meta new file mode 100644 index 00000000..3f9c4efa --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4719f6b4b88c2f24cb711ef28f16b7ee +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPositionProfile.asset new file mode 100644 index 00000000..5b46845b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Position + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_10 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPositionProfile.asset.meta new file mode 100644 index 00000000..36b380dd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 38db213a242a3864dbb2410d676c2324 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset new file mode 100644 index 00000000..65f89d2e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPress(Select)Profile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Press (Select) + stateChangeType: 0 + axisType: 2 + inputType: 25 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: AXIS_10 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset.meta new file mode 100644 index 00000000..bdfd1ca1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: be34017cfd537b94cbeab39839f72881 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchProfile.asset new file mode 100644 index 00000000..b0406995 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Touch + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 345 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchProfile.asset.meta new file mode 100644 index 00000000..4e8bd414 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cba0ece867acec34eb29efc6f74dc7ff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset new file mode 100644 index 00000000..0068216e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerTouchedProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Touched + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset.meta new file mode 100644 index 00000000..1d3641f7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6b556181d2b71654486e12acfeaf4c70 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/RightWMROpenVRControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/RightWMROpenVRControllerProfile.asset new file mode 100644 index 00000000..b4485c4e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/RightWMROpenVRControllerProfile.asset @@ -0,0 +1,33 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: RightWMROpenVRControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 193f55d4-44e0-4d3b-82fd-0cb417b3668b + handedness: 2 + visualizationProfile: {fileID: 11400000, guid: 5ee67c77447ce88409a3e04e57806963, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: 2383d0f88b769e842b742f8a8b099c6d, type: 2} + - {fileID: 11400000, guid: ee806d7f585c7c34295c77499684b046, type: 2} + - {fileID: 11400000, guid: 57cf8e3c0f0470e418fee2c4919c460a, type: 2} + - {fileID: 11400000, guid: 38db213a242a3864dbb2410d676c2324, type: 2} + - {fileID: 11400000, guid: be34017cfd537b94cbeab39839f72881, type: 2} + - {fileID: 11400000, guid: cba0ece867acec34eb29efc6f74dc7ff, type: 2} + - {fileID: 11400000, guid: 02554fe515e77724899f40f0f966b7f0, type: 2} + - {fileID: 11400000, guid: 4719f6b4b88c2f24cb711ef28f16b7ee, type: 2} + - {fileID: 11400000, guid: f5364f5a5cacf724eb351a12b08175fc, type: 2} + - {fileID: 11400000, guid: 4c6a577ebcde56343807fd5d3c50dd77, type: 2} + - {fileID: 11400000, guid: 1b5e85d560958ac4f8c261cc0700fe68, type: 2} + - {fileID: 11400000, guid: 72cf9cede81a0d6469e667e7f9f4d627, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/RightWMROpenVRControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/RightWMROpenVRControllerProfile.asset.meta new file mode 100644 index 00000000..aa175cd7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/WindowsMixedRealityController/RightWMROpenVRControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3e8e2b82024558942af774cd27e73514 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController.meta new file mode 100644 index 00000000..16b1ffdc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8c1beb88d08001140b64d2994316375e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/AProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/AProfile.asset new file mode 100644 index 00000000..907825fa --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/AProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: AProfile + m_EditorClassIdentifier: + interactionMapping: + description: A + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 330 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/AProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/AProfile.asset.meta new file mode 100644 index 00000000..60b0f256 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/AProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9da59f50e0443cd4aad9188dfbe25ab6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/BProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/BProfile.asset new file mode 100644 index 00000000..1fe5375e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/BProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: BProfile + m_EditorClassIdentifier: + interactionMapping: + description: B + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 331 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/BProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/BProfile.asset.meta new file mode 100644 index 00000000..2367c887 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/BProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 02c0358645dd76043be617a7b9934711 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/D-PadProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/D-PadProfile.asset new file mode 100644 index 00000000..3b48be16 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/D-PadProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: D-PadProfile + m_EditorClassIdentifier: + interactionMapping: + description: D-Pad + stateChangeType: 0 + axisType: 4 + inputType: 49 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: AXIS_6 + axisCodeY: AXIS_7 + inputProcessors: + - {fileID: 11400000, guid: 3aabb0483e0072342affc54e151497a3, type: 2} + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/D-PadProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/D-PadProfile.asset.meta new file mode 100644 index 00000000..d302d45d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/D-PadProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 404ff366a3954604eae12d39c2808ddf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/InvertDualAxisProcessor.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/InvertDualAxisProcessor.asset new file mode 100644 index 00000000..cad2e406 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/InvertDualAxisProcessor.asset @@ -0,0 +1,16 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bf89b42d98d441ee99759646f3ab757d, type: 3} + m_Name: InvertDualAxisProcessor + m_EditorClassIdentifier: + invertX: 0 + invertY: 1 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/InvertDualAxisProcessor.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/InvertDualAxisProcessor.asset.meta new file mode 100644 index 00000000..2d10f83f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/InvertDualAxisProcessor.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3aabb0483e0072342affc54e151497a3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftBumperProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftBumperProfile.asset new file mode 100644 index 00000000..7f8332bb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftBumperProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftBumperProfile + m_EditorClassIdentifier: + interactionMapping: + description: Left Bumper + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 334 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftBumperProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftBumperProfile.asset.meta new file mode 100644 index 00000000..6a07818b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftBumperProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1dbdf1e27c251b8418deb1cf541b4c66 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickClickProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickClickProfile.asset new file mode 100644 index 00000000..b4fb5240 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickClickProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftThumbstickClickProfile + m_EditorClassIdentifier: + interactionMapping: + description: Left Thumbstick Click + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 338 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickClickProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickClickProfile.asset.meta new file mode 100644 index 00000000..13990eba --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickClickProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d6e38258f46b33d4cac726d010a767e1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickProfile.asset new file mode 100644 index 00000000..2a125c31 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftThumbstickProfile + m_EditorClassIdentifier: + interactionMapping: + description: Left Thumbstick + stateChangeType: 0 + axisType: 4 + inputType: 17 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 13 + description: Movement Direction + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: AXIS_1 + axisCodeY: AXIS_2 + inputProcessors: + - {fileID: 11400000, guid: 3aabb0483e0072342affc54e151497a3, type: 2} + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickProfile.asset.meta new file mode 100644 index 00000000..c3b9898a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftThumbstickProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fa37fbe752f84a545bef39fa52fb346a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftTriggerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftTriggerProfile.asset new file mode 100644 index 00000000..97dc9f9b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftTriggerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftTriggerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Left Trigger + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: AXIS_9 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftTriggerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftTriggerProfile.asset.meta new file mode 100644 index 00000000..d2fc7b4d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/LeftTriggerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b487d9a4103754e4ca72981e72e471ed +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/MenuProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/MenuProfile.asset new file mode 100644 index 00000000..e8ffd3dd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/MenuProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MenuProfile + m_EditorClassIdentifier: + interactionMapping: + description: Menu + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 337 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/MenuProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/MenuProfile.asset.meta new file mode 100644 index 00000000..a10a4c07 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/MenuProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 21915c5ab0528574ebde12d40cc3c33f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightBumperProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightBumperProfile.asset new file mode 100644 index 00000000..a78eb086 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightBumperProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightBumperProfile + m_EditorClassIdentifier: + interactionMapping: + description: Right Bumper + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 335 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightBumperProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightBumperProfile.asset.meta new file mode 100644 index 00000000..2029b96f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightBumperProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a4ea655f8e861ff449d65cae1af721ad +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickClickProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickClickProfile.asset new file mode 100644 index 00000000..f31d00a1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickClickProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightThumbstickClickProfile + m_EditorClassIdentifier: + interactionMapping: + description: Right Thumbstick Click + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 339 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickClickProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickClickProfile.asset.meta new file mode 100644 index 00000000..bf8c51a8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickClickProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6a25c3e1e6354c54d875af6e91d64224 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickProfile.asset new file mode 100644 index 00000000..a871595c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightThumbstickProfile + m_EditorClassIdentifier: + interactionMapping: + description: Right Thumbstick + stateChangeType: 0 + axisType: 4 + inputType: 17 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 14 + description: Rotation Direction + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: AXIS_4 + axisCodeY: AXIS_5 + inputProcessors: + - {fileID: 11400000, guid: 3aabb0483e0072342affc54e151497a3, type: 2} + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickProfile.asset.meta new file mode 100644 index 00000000..cbf03844 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightThumbstickProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a97556293acecfa4594ead5be210499e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightTriggerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightTriggerProfile.asset new file mode 100644 index 00000000..c2331d58 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightTriggerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightTriggerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Right Trigger + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: AXIS_10 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightTriggerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightTriggerProfile.asset.meta new file mode 100644 index 00000000..c77ee4c4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/RightTriggerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2339b4bb7fd272d4388f692ee07f2fb8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/SharedTriggerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/SharedTriggerProfile.asset new file mode 100644 index 00000000..4a7ee255 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/SharedTriggerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SharedTriggerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Shared Trigger + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_3 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/SharedTriggerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/SharedTriggerProfile.asset.meta new file mode 100644 index 00000000..b2980dde --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/SharedTriggerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f8e107d80ee9ed143a0b8a8f758e7e36 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/ViewProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/ViewProfile.asset new file mode 100644 index 00000000..1f841dc2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/ViewProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: ViewProfile + m_EditorClassIdentifier: + interactionMapping: + description: View + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 336 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/ViewProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/ViewProfile.asset.meta new file mode 100644 index 00000000..ecb29c4d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/ViewProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 73187389af4fa4c40a12fdeee6ae62d9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XProfile.asset new file mode 100644 index 00000000..dd00424a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: XProfile + m_EditorClassIdentifier: + interactionMapping: + description: X + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 332 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XProfile.asset.meta new file mode 100644 index 00000000..cac93e5c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ea512c92771ff61479464877b8363f46 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XboxControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XboxControllerProfile.asset new file mode 100644 index 00000000..db02bb0f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XboxControllerProfile.asset @@ -0,0 +1,36 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: XboxControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 71e70c1b-9f77-4b69-bfc7-974905bb7702 + handedness: 0 + visualizationProfile: {fileID: 0} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: fa37fbe752f84a545bef39fa52fb346a, type: 2} + - {fileID: 11400000, guid: d6e38258f46b33d4cac726d010a767e1, type: 2} + - {fileID: 11400000, guid: a97556293acecfa4594ead5be210499e, type: 2} + - {fileID: 11400000, guid: 6a25c3e1e6354c54d875af6e91d64224, type: 2} + - {fileID: 11400000, guid: 404ff366a3954604eae12d39c2808ddf, type: 2} + - {fileID: 11400000, guid: f8e107d80ee9ed143a0b8a8f758e7e36, type: 2} + - {fileID: 11400000, guid: b487d9a4103754e4ca72981e72e471ed, type: 2} + - {fileID: 11400000, guid: 2339b4bb7fd272d4388f692ee07f2fb8, type: 2} + - {fileID: 11400000, guid: 73187389af4fa4c40a12fdeee6ae62d9, type: 2} + - {fileID: 11400000, guid: 21915c5ab0528574ebde12d40cc3c33f, type: 2} + - {fileID: 11400000, guid: 1dbdf1e27c251b8418deb1cf541b4c66, type: 2} + - {fileID: 11400000, guid: a4ea655f8e861ff449d65cae1af721ad, type: 2} + - {fileID: 11400000, guid: 9da59f50e0443cd4aad9188dfbe25ab6, type: 2} + - {fileID: 11400000, guid: 02c0358645dd76043be617a7b9934711, type: 2} + - {fileID: 11400000, guid: ea512c92771ff61479464877b8363f46, type: 2} + - {fileID: 11400000, guid: 97af6afd427865841842f6ec39b26ad3, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XboxControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XboxControllerProfile.asset.meta new file mode 100644 index 00000000..0d9e2506 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/XboxControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0d32262d7aa7a67458d247a2709f04d2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/YProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/YProfile.asset new file mode 100644 index 00000000..1ee56682 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/YProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: YProfile + m_EditorClassIdentifier: + interactionMapping: + description: Y + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 333 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/YProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/YProfile.asset.meta new file mode 100644 index 00000000..29bd2a4a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/DataProviders/XboxController/YProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 97af6afd427865841842f6ec39b26ad3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityGesturesProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityGesturesProfile.asset new file mode 100644 index 00000000..d0605d08 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityGesturesProfile.asset @@ -0,0 +1,50 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cc4e210e45f74f1c8729d17634bc5dfd, type: 3} + m_Name: MixedRealityGesturesProfile + m_EditorClassIdentifier: + gestures: + - description: Hold + gestureType: 3 + action: + profileGuid: 47280a6380eb40d5952dc5a5da00a89e + id: 8 + description: Hold Action + axisConstraint: 0 + - description: Navigation + gestureType: 4 + action: + profileGuid: 47280a6380eb40d5952dc5a5da00a89e + id: 10 + description: Navigation Action + axisConstraint: 0 + - description: Manipulation + gestureType: 5 + action: + profileGuid: 47280a6380eb40d5952dc5a5da00a89e + id: 9 + description: Manipulate Action + axisConstraint: 0 + - description: Tap + gestureType: 1 + action: + profileGuid: 47280a6380eb40d5952dc5a5da00a89e + id: 1 + description: Select + axisConstraint: 2 + - description: Double Tap + gestureType: 2 + action: + profileGuid: 47280a6380eb40d5952dc5a5da00a89e + id: 1 + description: Select + axisConstraint: 2 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityGesturesProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityGesturesProfile.asset.meta new file mode 100644 index 00000000..1322937c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityGesturesProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 47280a6380eb40d5952dc5a5da00a89e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputActionsProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputActionsProfile.asset new file mode 100644 index 00000000..5c77f5df --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputActionsProfile.asset @@ -0,0 +1,79 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e7586d5ce1704458aad54224cfafad39, type: 3} + m_Name: MixedRealityInputActionsProfile + m_EditorClassIdentifier: + inputActions: + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 5 + description: Teleport Direction + axisConstraint: 4 + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 8 + description: Hold Action + axisConstraint: 0 + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 9 + description: Manipulate Action + axisConstraint: 0 + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 10 + description: Navigation Action + axisConstraint: 0 + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 11 + description: Scroll + axisConstraint: 4 + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 12 + description: Mouse Delta + axisConstraint: 4 + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 13 + description: Movement Direction + axisConstraint: 4 + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 14 + description: Rotation Direction + axisConstraint: 4 + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 15 + description: Index Finger Pose + axisConstraint: 7 + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 7 + description: Grip Strength + axisConstraint: 3 + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 16 + description: Grip Press + axisConstraint: 2 + - profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputActionsProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputActionsProfile.asset.meta new file mode 100644 index 00000000..4f9ee34c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputActionsProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 399335ccc89c4d12b79f3539ca7771db +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputSystemProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputSystemProfile.asset new file mode 100644 index 00000000..7adfb177 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputSystemProfile.asset @@ -0,0 +1,113 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 96a16673d92d4e8fa24750357b3cf906, type: 3} + m_Name: MixedRealityInputSystemProfile + m_EditorClassIdentifier: + configurations: + - instancedType: + reference: 4d4d36e3-6acb-45e5-8316-0b15a098ea2f + name: Unity Touch Data Provider + priority: 0 + platformEntries: + runtimePlatforms: + - reference: dac9ead8-54f9-4935-a27f-9f82f465c972 + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: bcac2cef-e793-47b8-9db7-116af668cb66 + - reference: 97344133-03b4-4314-9581-e42d1aac91ba + - reference: 7dc72b4e-34f6-4b26-afd7-cde0c51f83a3 + - reference: a2ffb628-3ce7-4759-9c66-8f2ba8d16fc2 + - reference: 58de2d2a-db5f-4090-a949-4028b8ea3afd + profile: {fileID: 11400000, guid: 30f1afb97be1db54e9e04aa6b965b410, type: 2} + - instancedType: + reference: a4d8d13b-253c-469a-a3a2-ecfe16dd969f + name: Unity Joystick Data Provider + priority: 1 + platformEntries: + runtimePlatforms: + - reference: dac9ead8-54f9-4935-a27f-9f82f465c972 + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: bcac2cef-e793-47b8-9db7-116af668cb66 + - reference: 97344133-03b4-4314-9581-e42d1aac91ba + - reference: a2ffb628-3ce7-4759-9c66-8f2ba8d16fc2 + - reference: 58de2d2a-db5f-4090-a949-4028b8ea3afd + profile: {fileID: 11400000, guid: 69ab987a62681cf4d9f4042ef17b0ddd, type: 2} + - instancedType: + reference: 9b116969-7f4b-4cf9-9d5a-4fba7793f50e + name: OpenVR Data Controller Data Provider + priority: 2 + platformEntries: + runtimePlatforms: + - reference: dac9ead8-54f9-4935-a27f-9f82f465c972 + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: 97344133-03b4-4314-9581-e42d1aac91ba + - reference: a2ffb628-3ce7-4759-9c66-8f2ba8d16fc2 + - reference: 58de2d2a-db5f-4090-a949-4028b8ea3afd + profile: {fileID: 11400000, guid: b120d542bee585744b5567157705b9f3, type: 2} + - instancedType: + reference: 07512ffc-5128-434c-b7bf-5cd7ca8ef853 + name: Simulated Hand Controller Data Provider + priority: 3 + platformEntries: + runtimePlatforms: + - reference: 3324b4a2-30f0-4145-bb06-cd65b8945487 + profile: {fileID: 11400000, guid: 6bd4ff02967a9b24197b8cd2593ddfa4, type: 2} + - instancedType: + reference: 12e24f3d-7689-4863-a403-dd7a80da3c25 + name: Windows Speech Data Provider + priority: 4 + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: 7dc72b4e-34f6-4b26-afd7-cde0c51f83a3 + - reference: 58de2d2a-db5f-4090-a949-4028b8ea3afd + profile: {fileID: 0} + - instancedType: + reference: 9d96d660-cb10-48b8-b2a7-3262adb2ab14 + name: Windows Dictation Data Provider + priority: 5 + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: 7dc72b4e-34f6-4b26-afd7-cde0c51f83a3 + - reference: 58de2d2a-db5f-4090-a949-4028b8ea3afd + profile: {fileID: 0} + focusProviderType: + reference: 249d4d78-cadd-45ba-9438-db9fc2509213 + gazeProviderType: + reference: bed2c9a4-48c5-49d2-bca4-3d351153ba75 + gazeCursorPrefab: {fileID: 1000012072213228, guid: 79f96834fcc44889b558cc13518979a0, + type: 3} + pointingExtent: 10 + pointerRaycastLayerMasks: + - serializedVersion: 2 + m_Bits: 4294967291 + drawDebugPointingRays: 1 + debugPointingRayColors: + - {r: 0, g: 1, b: 0, a: 1} + handMeshingEnabled: 1 + handPhysicsEnabled: 0 + useTriggers: 0 + boundsMode: 0 + trackedPoses: + - {fileID: 11400000, guid: 287ec39181134fc4eaee0a3a5e47ab9f, type: 2} + - {fileID: 11400000, guid: d3d67de686d952849b6771a111518e0d, type: 2} + - {fileID: 11400000, guid: 5269abf28f233044d9ec71f10b94552d, type: 2} + - {fileID: 11400000, guid: 0ece078ec16cbbd44bb7eba974dca862, type: 2} + - {fileID: 11400000, guid: 9fba060de129a9d4ea929a0d74fdc3fa, type: 2} + - {fileID: 11400000, guid: 1251200226ad995498472e45aaf12178, type: 2} + - {fileID: 11400000, guid: 5e6bcc3863bdc634d82a8a59598a070b, type: 2} + - {fileID: 11400000, guid: 2f6c29c72cd30c74f9717c932bd87a4a, type: 2} + inputActionsProfile: {fileID: 11400000, guid: 399335ccc89c4d12b79f3539ca7771db, + type: 2} + speechCommandsProfile: {fileID: 11400000, guid: 89759c8b9c98420794a5d650ce3b2f90, + type: 2} + gesturesProfile: {fileID: 11400000, guid: 47280a6380eb40d5952dc5a5da00a89e, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputSystemProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputSystemProfile.asset.meta new file mode 100644 index 00000000..927ed9f1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealityInputSystemProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a176466fbf4e44a087639abca7e5ba47 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealitySpeechCommandsProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealitySpeechCommandsProfile.asset new file mode 100644 index 00000000..5cf15b41 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealitySpeechCommandsProfile.asset @@ -0,0 +1,52 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7108692c36a84dfaaa0984f6c5d6d3a3, type: 3} + m_Name: MixedRealitySpeechCommandsProfile + m_EditorClassIdentifier: + startBehavior: 0 + recognitionConfidenceLevel: 1 + speechCommands: + - keyword: Menu + keyCode: 0 + action: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + - keyword: Toggle Diagnostics + keyCode: 0 + action: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + - keyword: Toggle Frame Rate + keyCode: 0 + action: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + - keyword: Toggle Processor + keyCode: 0 + action: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + - keyword: Toggle Memory + keyCode: 0 + action: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealitySpeechCommandsProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealitySpeechCommandsProfile.asset.meta new file mode 100644 index 00000000..ee526520 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/MixedRealitySpeechCommandsProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 89759c8b9c98420794a5d650ce3b2f90 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers.meta new file mode 100644 index 00000000..9f880326 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 27002ee103a762749bc505490f0c9476 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/ControllerPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/ControllerPointerProfile.asset new file mode 100644 index 00000000..16011baf --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/ControllerPointerProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c156ea3e1a7a493dac236ed84c4a819a, type: 3} + m_Name: ControllerPointerProfile + m_EditorClassIdentifier: + pointerPrefab: {fileID: 1247086986094436, guid: 54d78dc3333741c5b7f30fe3506096ba, + type: 3} + pointingExtent: 10 + pointingRaycastLayerMasks: + - serializedVersion: 2 + m_Bits: 4294967291 + drawDebugPointingRays: 0 + debugPointingRayColors: + - {r: 0, g: 1, b: 0, a: 1} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/ControllerPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/ControllerPointerProfile.asset.meta new file mode 100644 index 00000000..7bde58e7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/ControllerPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9e0e4acc675a18b4b9c65e9ff85cfe58 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerNearPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerNearPointerProfile.asset new file mode 100644 index 00000000..0cd3eecb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerNearPointerProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c156ea3e1a7a493dac236ed84c4a819a, type: 3} + m_Name: HandControllerNearPointerProfile + m_EditorClassIdentifier: + pointerPrefab: {fileID: 7751017874127228719, guid: dffe173621ec68b4abb66b6cfbe5c7f2, + type: 3} + pointingExtent: 0.5 + pointingRaycastLayerMasks: + - serializedVersion: 2 + m_Bits: 4294967291 + drawDebugPointingRays: 0 + debugPointingRayColors: + - {r: 0, g: 1, b: 0, a: 1} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerNearPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerNearPointerProfile.asset.meta new file mode 100644 index 00000000..f81823ed --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerNearPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 57fc2b172a8871344b147342d8444217 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerSpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerSpatialPointerProfile.asset new file mode 100644 index 00000000..8f8cdc31 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerSpatialPointerProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c156ea3e1a7a493dac236ed84c4a819a, type: 3} + m_Name: HandControllerSpatialPointerProfile + m_EditorClassIdentifier: + pointerPrefab: {fileID: 1247086986094436, guid: 3c6b5e276e9a37446b574ff0ee1eee58, + type: 3} + pointingExtent: 10 + pointingRaycastLayerMasks: + - serializedVersion: 2 + m_Bits: 4294967291 + drawDebugPointingRays: 0 + debugPointingRayColors: + - {r: 0, g: 1, b: 0, a: 1} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerSpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerSpatialPointerProfile.asset.meta new file mode 100644 index 00000000..aeaece32 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/HandControllerSpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aa72cf2eb48c6fe44a827f7d68ce3e44 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TeleportPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TeleportPointerProfile.asset new file mode 100644 index 00000000..08de89dd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TeleportPointerProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c156ea3e1a7a493dac236ed84c4a819a, type: 3} + m_Name: TeleportPointerProfile + m_EditorClassIdentifier: + pointerPrefab: {fileID: 1196247974088106, guid: 0c1e5f0d54ce46319152ece13a4b1eeb, + type: 3} + pointingExtent: 10 + pointingRaycastLayerMasks: + - serializedVersion: 2 + m_Bits: 4294967291 + drawDebugPointingRays: 0 + debugPointingRayColors: + - {r: 0, g: 1, b: 0, a: 1} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TeleportPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TeleportPointerProfile.asset.meta new file mode 100644 index 00000000..0f57907a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TeleportPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d3736f91cbeeb284fb90b9d389b7fe33 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TouchPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TouchPointerProfile.asset new file mode 100644 index 00000000..b6c512e6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TouchPointerProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c156ea3e1a7a493dac236ed84c4a819a, type: 3} + m_Name: TouchPointerProfile + m_EditorClassIdentifier: + pointerPrefab: {fileID: 1247086986094436, guid: 11325a842d3c4ffc85c65a6991b8d70e, + type: 3} + pointingExtent: 10 + pointingRaycastLayerMasks: + - serializedVersion: 2 + m_Bits: 4294967291 + drawDebugPointingRays: 0 + debugPointingRayColors: + - {r: 0, g: 1, b: 0, a: 1} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TouchPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TouchPointerProfile.asset.meta new file mode 100644 index 00000000..76d92ae0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Input/Pointers/TouchPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fb98760b7ff06e4458b0431c80d6ea06 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityBoundarySystemProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityBoundarySystemProfile.asset new file mode 100644 index 00000000..78df1726 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityBoundarySystemProfile.asset @@ -0,0 +1,25 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e50d0c2910ab4e8a9d14709c5f17506e, type: 3} + m_Name: MixedRealityBoundarySystemProfile + m_EditorClassIdentifier: + configurations: [] + showBoundary: 0 + boundaryHeight: 3 + boundaryMaterial: {fileID: 0} + physicsLayer: 2 + showFloor: 1 + floorMaterial: {fileID: 2100000, guid: cff739f75e6f4d2aa27638b66200ef95, type: 2} + showWalls: 0 + wallMaterial: {fileID: 0} + showCeiling: 0 + ceilingMaterial: {fileID: 0} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityBoundarySystemProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityBoundarySystemProfile.asset.meta new file mode 100644 index 00000000..8e36dac3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityBoundarySystemProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 66c6942c137e4200b9fa363d94982582 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityRegisteredServiceProvidersProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityRegisteredServiceProvidersProfile.asset new file mode 100644 index 00000000..097ce249 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityRegisteredServiceProvidersProfile.asset @@ -0,0 +1,15 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 48c48e65a9914a9ab61b891d9b405064, type: 3} + m_Name: MixedRealityRegisteredServiceProvidersProfile + m_EditorClassIdentifier: + configurations: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityRegisteredServiceProvidersProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityRegisteredServiceProvidersProfile.asset.meta new file mode 100644 index 00000000..686dc74f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityRegisteredServiceProvidersProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: acea2c25fd504369954fa833a8c4ea5b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityToolkitRootProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityToolkitRootProfile.asset new file mode 100644 index 00000000..3f88cf79 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityToolkitRootProfile.asset @@ -0,0 +1,65 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8053d706eb6545b99330d640fbe7e7d2, type: 3} + m_Name: MixedRealityToolkitRootProfile + m_EditorClassIdentifier: + configurations: + - instancedType: + reference: 5c656ee3-fe7c-4fb3-b3ee-df3fc0d0973d + name: Mixed Reality Camera System + priority: 0 + platformEntries: + runtimePlatforms: + - reference: c6bf6315-2e9c-4602-827d-2d4871d29422 + profile: {fileID: 11400000, guid: 2b0ab6f5348646cebf8585d46c3a3edc, type: 2} + - instancedType: + reference: 18c9caf0-8d36-4add-bb49-cdf7561cf793 + name: Mixed Reality Input System + priority: 1 + platformEntries: + runtimePlatforms: + - reference: c6bf6315-2e9c-4602-827d-2d4871d29422 + profile: {fileID: 11400000, guid: a176466fbf4e44a087639abca7e5ba47, type: 2} + - instancedType: + reference: fe458876-cc0f-4b6f-9459-544ddf6a9263 + name: Mixed Reality Boundary System + priority: 2 + platformEntries: + runtimePlatforms: + - reference: c6bf6315-2e9c-4602-827d-2d4871d29422 + profile: {fileID: 11400000, guid: 66c6942c137e4200b9fa363d94982582, type: 2} + - instancedType: + reference: 05ef9ddc-13c2-47d4-84c5-1c9cb6cc5c1c + name: Mixed Reality Spatial Awareness System + priority: 3 + platformEntries: + runtimePlatforms: + - reference: c6bf6315-2e9c-4602-827d-2d4871d29422 + profile: {fileID: 11400000, guid: 41ce31a4954544c58d16f6b3c4c88f4b, type: 2} + - instancedType: + reference: 2c18630a-9837-46fa-addf-6c8af34d4143 + name: Mixed Reality Teleport System + priority: 4 + platformEntries: + runtimePlatforms: + - reference: c6bf6315-2e9c-4602-827d-2d4871d29422 + profile: {fileID: 11400000, guid: fad2fdb578e49a245ad65bbb8c602fae, type: 2} + - instancedType: + reference: 2044b5ae-8f50-4b66-b508-d8087356c140 + name: Mixed Reality Diagnostics System + priority: 4 + platformEntries: + runtimePlatforms: + - reference: c6bf6315-2e9c-4602-827d-2d4871d29422 + profile: {fileID: 11400000, guid: 4f3217bd00647e147a746a49f672b6d8, type: 2} + registeredServiceProvidersProfile: {fileID: 11400000, guid: acea2c25fd504369954fa833a8c4ea5b, + type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityToolkitRootProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityToolkitRootProfile.asset.meta new file mode 100644 index 00000000..5e145e63 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/MixedRealityToolkitRootProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 99874ef12e4f4f27ae4888ce1c693090 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking.meta new file mode 100644 index 00000000..10daad17 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fddb542416213f045b961dc7e4476a54 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityNetworkingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityNetworkingProfile.asset new file mode 100644 index 00000000..98b7f718 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityNetworkingProfile.asset @@ -0,0 +1,15 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 47c0c9c4be8544379a5571fad761efd8, type: 3} + m_Name: MixedRealityNetworkingProfile + m_EditorClassIdentifier: + configurations: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityNetworkingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityNetworkingProfile.asset.meta new file mode 100644 index 00000000..cd707d26 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityNetworkingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 72aa9c32198a4dce9219e6ab19d5dc6f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityWebRtcNetworkProviderProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityWebRtcNetworkProviderProfile.asset new file mode 100644 index 00000000..a3e6c74f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityWebRtcNetworkProviderProfile.asset @@ -0,0 +1,14 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b7b32ac7ae544be5b412c3ea6864df75, type: 3} + m_Name: MixedRealityWebRtcNetworkProviderProfile + m_EditorClassIdentifier: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityWebRtcNetworkProviderProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityWebRtcNetworkProviderProfile.asset.meta new file mode 100644 index 00000000..9fb3ab72 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Networking/MixedRealityWebRtcNetworkProviderProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 949126836cf44218b3dc32588f7e7a2a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness.meta new file mode 100644 index 00000000..4ce8ef30 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5501262570b5d2245afbfb8fb72481c6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialAwarenessSystemProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialAwarenessSystemProfile.asset new file mode 100644 index 00000000..07003d3e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialAwarenessSystemProfile.asset @@ -0,0 +1,19 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 80a1ad34855542cbbd15a6a6dde2e935, type: 3} + m_Name: MixedRealitySpatialAwarenessSystemProfile + m_EditorClassIdentifier: + configurations: [] + meshDisplayOption: 0 + globalMeshObserverProfile: {fileID: 11400000, guid: 6cbcb6266beaa724780d064525cf2896, + type: 2} + globalSurfaceObserverProfile: {fileID: 0} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialAwarenessSystemProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialAwarenessSystemProfile.asset.meta new file mode 100644 index 00000000..04a5a971 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialAwarenessSystemProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 41ce31a4954544c58d16f6b3c4c88f4b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialMeshObserverProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialMeshObserverProfile.asset new file mode 100644 index 00000000..7f3aeb40 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialMeshObserverProfile.asset @@ -0,0 +1,27 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 34e54930903b41a9bdcbe94df832101b, type: 3} + m_Name: MixedRealitySpatialMeshObserverProfile + m_EditorClassIdentifier: + startupBehavior: 0 + observationExtents: {x: 3, y: 3, z: 3} + isStationaryObserver: 0 + updateInterval: 0.25 + physicsLayer: 31 + meshLevelOfDetail: 1 + meshTrianglesPerCubicMeter: 0 + meshRecalculateNormals: 1 + meshVisibleMaterial: {fileID: 2100000, guid: 58998db165b741089929938ea4d1b249, type: 2} + meshOcclusionMaterial: {fileID: 2100000, guid: 0062b17981f34cf18ad1f9060db0cb2b, + type: 2} + additionalComponents: [] + meshObjectPrefab: {fileID: 0} diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialMeshObserverProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialMeshObserverProfile.asset.meta new file mode 100644 index 00000000..368834b4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/SpatialAwareness/MixedRealitySpatialMeshObserverProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6cbcb6266beaa724780d064525cf2896 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport.meta new file mode 100644 index 00000000..89603f5b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1f7844dcb4b365140a8a6bc3c36d98b4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportSystemProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportSystemProfile.asset new file mode 100644 index 00000000..3afa0efd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportSystemProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 38ec5835eefd4204caf43fed844c7775, type: 3} + m_Name: MixedRealityTeleportSystemProfile + m_EditorClassIdentifier: + configurations: + - instancedType: + reference: 14199fd8-1636-4147-bb08-6475e76ed1cd + name: Mixed Reality Teleport Validation Data Provider + priority: 0 + platformEntries: + runtimePlatforms: + - reference: c6bf6315-2e9c-4602-827d-2d4871d29422 + profile: {fileID: 11400000, guid: f3f7a928ca0f70649a77a0f17e7465ff, type: 2} + teleportProvider: + reference: + teleportAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 5 + description: Teleport Direction + axisConstraint: 4 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportSystemProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportSystemProfile.asset.meta new file mode 100644 index 00000000..ed2fe391 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportSystemProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fad2fdb578e49a245ad65bbb8c602fae +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportValidationDataProviderProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportValidationDataProviderProfile.asset new file mode 100644 index 00000000..0a9dfa04 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportValidationDataProviderProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6c3c644db71fa6140991a685a6b3dbb4, type: 3} + m_Name: MixedRealityTeleportValidationDataProviderProfile + m_EditorClassIdentifier: + validLayers: + serializedVersion: 2 + m_Bits: 4294967291 + invalidLayers: + serializedVersion: 2 + m_Bits: 4 + upDirectionThreshold: 0.2 + maxDistance: 10 + maxHeightDistance: 10 diff --git a/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportValidationDataProviderProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportValidationDataProviderProfile.asset.meta new file mode 100644 index 00000000..dd437e96 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles/Teleport/MixedRealityTeleportValidationDataProviderProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f3f7a928ca0f70649a77a0f17e7465ff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset b/XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset deleted file mode 100644 index 0f9e1d4c..00000000 --- a/XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset +++ /dev/null @@ -1,30 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: ff8a5d57a9af497db320551240c892c2, type: 3} - m_Name: SymbolicLinkSettings - m_EditorClassIdentifier: - symbolicLinks: - - sourceRelativePath: /XRTK.Examples/Library/PackageCache/com.xrtk.sdk@0.2.5/Profiles~ - targetRelativePath: /XRTK.Examples/Assets/XRTK.Generated/SDK/Profiles - isActive: 1 - - sourceRelativePath: /XRTK.Examples/Library/PackageCache/com.xrtk.sdk@0.2.5/Prefabs~ - targetRelativePath: /XRTK.Examples/Assets/XRTK.Generated/SDK/Prefabs - isActive: 1 - - sourceRelativePath: /XRTK.Examples/Library/PackageCache/com.xrtk.lumin@0.2.5/Profiles~ - targetRelativePath: /XRTK.Examples/Assets/XRTK.Generated/Lumin/Profiles - isActive: 1 - - sourceRelativePath: /XRTK.Examples/Library/PackageCache/com.xrtk.oculus@0.2.5/Profiles~ - targetRelativePath: /XRTK.Examples/Assets/XRTK.Generated/Oculus/Profiles - isActive: 1 - - sourceRelativePath: /XRTK.Examples/Library/PackageCache/com.xrtk.wmr@0.2.6/Profiles~ - targetRelativePath: /XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles - isActive: 1 diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality.meta new file mode 100644 index 00000000..c88f9e0d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cf7c095990dd0cc46939a9cd4b523405 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles.meta new file mode 100644 index 00000000..af98bed6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e2d96a38f85f5a34e888cb945cc5155a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/CameraSystem.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/CameraSystem.meta new file mode 100644 index 00000000..72f8a866 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/CameraSystem.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c0d17a28d7f00cd4091c4d89f2c9b8a5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/CameraSystem/WindowsMixedRealityCameraProviderProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/CameraSystem/WindowsMixedRealityCameraProviderProfile.asset new file mode 100644 index 00000000..ac1cba36 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/CameraSystem/WindowsMixedRealityCameraProviderProfile.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 00d813fd5a164e19a160f322b2926006, type: 3} + m_Name: WindowsMixedRealityCameraProviderProfile + m_EditorClassIdentifier: + isCameraPersistent: 1 + nearClipPlaneOpaqueDisplay: 0.1 + cameraClearFlagsOpaqueDisplay: 1 + backgroundColorOpaqueDisplay: {r: 0, g: 0, b: 0, a: 1} + opaqueQualityLevel: 0 + nearClipPlaneTransparentDisplay: 0.05 + cameraClearFlagsTransparentDisplay: 2 + backgroundColorTransparentDisplay: {r: 0, g: 0, b: 0, a: 0} + transparentQualityLevel: 0 + cameraRigType: + reference: 8e0ee4fc-c8a5-4b10-9fca-ee55b6d421ff + defaultHeadHeight: 0 + bodyAdjustmentAngle: 60 + bodyAdjustmentSpeed: 1 diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/CameraSystem/WindowsMixedRealityCameraProviderProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/CameraSystem/WindowsMixedRealityCameraProviderProfile.asset.meta new file mode 100644 index 00000000..ba2725be --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/CameraSystem/WindowsMixedRealityCameraProviderProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 57a7de86787ebb74ead8edbc180d4d14 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers.meta new file mode 100644 index 00000000..8e899012 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3862a866cf146674dad1763af408f608 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController.meta new file mode 100644 index 00000000..19468abb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ab0376c545f221b49a8c5b122004bc20 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left.meta new file mode 100644 index 00000000..821d90a7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c19fd6bdf24b43a428a4fd731513350b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandControllerProfile.asset new file mode 100644 index 00000000..5a415b12 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandControllerProfile.asset @@ -0,0 +1,27 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: LeftWMRHandControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: b18a9a6c-e5fd-40ae-89e9-9822415ec62b + handedness: 1 + visualizationProfile: {fileID: 11400000, guid: 3abd690db72df6441b4b544fa9d4f45c, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: 39ac0e550d1d4bd4ba2332856cf8730d, type: 2} + - {fileID: 11400000, guid: bb9ede70a5842fc48bf57dd2bf5976b8, type: 2} + - {fileID: 11400000, guid: ff5f31010a412aa44a18c14d4e15ec4c, type: 2} + - {fileID: 11400000, guid: 88f4fe6fb92ad794dbaf93a8af391746, type: 2} + - {fileID: 11400000, guid: 2f5396882cd64b343b54395530e552c6, type: 2} + - {fileID: 11400000, guid: d853789019a41714a85a38865620bbee, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandControllerProfile.asset.meta new file mode 100644 index 00000000..58482442 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f296956538cc1d146bc7a7ebab8505b9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripInteractionMappingProfile.asset new file mode 100644 index 00000000..18c09a87 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftWMRHandGripInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 16 + description: Grip Press + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..643ceb15 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 88f4fe6fb92ad794dbaf93a8af391746 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..6df4be32 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripPoseInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftWMRHandGripPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Pose + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..56fafbbd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandGripPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2f5396882cd64b343b54395530e552c6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandIndexFingerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandIndexFingerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..e710fcc5 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandIndexFingerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftWMRHandIndexFingerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Index Finger Pose + stateChangeType: 0 + axisType: 7 + inputType: 33 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 15 + description: Index Finger Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 49d2569fc7d344548a00f3cac945ba20, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandIndexFingerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandIndexFingerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..381ba20b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandIndexFingerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d853789019a41714a85a38865620bbee +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandPointInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandPointInteractionMappingProfile.asset new file mode 100644 index 00000000..a136e60e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandPointInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftWMRHandPointInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Point + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandPointInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandPointInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..cb27e356 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandPointInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ff5f31010a412aa44a18c14d4e15ec4c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSelectInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSelectInteractionMappingProfile.asset new file mode 100644 index 00000000..b94772bf --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSelectInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftWMRHandSelectInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Select + stateChangeType: 0 + axisType: 2 + inputType: 25 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSelectInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSelectInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..0d1f99bd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSelectInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bb9ede70a5842fc48bf57dd2bf5976b8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSpatialPointerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSpatialPointerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..ee1d9a4d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSpatialPointerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: LeftWMRHandSpatialPointerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer Pose + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 7c6a07907a075564a8991de5311592bf, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSpatialPointerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSpatialPointerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..f4274a01 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandSpatialPointerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 39ac0e550d1d4bd4ba2332856cf8730d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandVisualizationProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandVisualizationProfile.asset new file mode 100644 index 00000000..a7ab7f04 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandVisualizationProfile.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b7926164960ef644850207ccce1b07e, type: 3} + m_Name: LeftWMRHandVisualizationProfile + m_EditorClassIdentifier: + controllerVisualizationType: + reference: 5d844e0b-f913-46b8-bc3b-fa6429e62c60 + useDefaultModels: 0 + model: {fileID: 7398244499265140811, guid: 61feeca21178ba54682d3c61ff5f89a1, type: 3} + pointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + alternatePointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandVisualizationProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandVisualizationProfile.asset.meta new file mode 100644 index 00000000..5dc586a0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Left/LeftWMRHandVisualizationProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3abd690db72df6441b4b544fa9d4f45c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right.meta new file mode 100644 index 00000000..1eac7380 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4308edfd0cee1e04990c559fbef07739 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandControllerProfile.asset new file mode 100644 index 00000000..7a190a58 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandControllerProfile.asset @@ -0,0 +1,27 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: RightWMRHandControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: b18a9a6c-e5fd-40ae-89e9-9822415ec62b + handedness: 2 + visualizationProfile: {fileID: 11400000, guid: dc2f190fa2aabbd4187e98726b13bb3c, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: 696cb41dc45525e418b1e4828d196e80, type: 2} + - {fileID: 11400000, guid: 67d7348da0200c94cbbe11eeebd487d7, type: 2} + - {fileID: 11400000, guid: ca7137b450d4efc44970710bf55bc10a, type: 2} + - {fileID: 11400000, guid: ae604e3bd5b58474281e9f6631add5ca, type: 2} + - {fileID: 11400000, guid: 937fab365bbf1d746b2f9c64d3b38699, type: 2} + - {fileID: 11400000, guid: 34c84c3e626affd4db4d4533aa0e3d99, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandControllerProfile.asset.meta new file mode 100644 index 00000000..14c51ea7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3f8ea7a404a0ae14fa71a41b2ed725e3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripInteractionMappingProfile.asset new file mode 100644 index 00000000..a6e34bab --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightWMRHandGripInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip + stateChangeType: 0 + axisType: 2 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 16 + description: Grip Press + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..baa8b4e4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ae604e3bd5b58474281e9f6631add5ca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..837de021 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripPoseInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightWMRHandGripPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Pose + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..2bfd3406 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandGripPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 937fab365bbf1d746b2f9c64d3b38699 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandIndexFingerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandIndexFingerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..ce2289d8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandIndexFingerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightWMRHandIndexFingerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Index Finger Pose + stateChangeType: 0 + axisType: 7 + inputType: 33 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 15 + description: Index Finger Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 49d2569fc7d344548a00f3cac945ba20, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandIndexFingerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandIndexFingerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..cffdba39 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandIndexFingerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 34c84c3e626affd4db4d4533aa0e3d99 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandPointInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandPointInteractionMappingProfile.asset new file mode 100644 index 00000000..c5c81256 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandPointInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightWMRHandPointInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Point + stateChangeType: 0 + axisType: 2 + inputType: 7 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandPointInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandPointInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..cc899ecf --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandPointInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ca7137b450d4efc44970710bf55bc10a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSelectInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSelectInteractionMappingProfile.asset new file mode 100644 index 00000000..f8f6d948 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSelectInteractionMappingProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightWMRHandSelectInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Select + stateChangeType: 0 + axisType: 2 + inputType: 25 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSelectInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSelectInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..fbd66a3c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSelectInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 67d7348da0200c94cbbe11eeebd487d7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSpatialPointerPoseInteractionMappingProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSpatialPointerPoseInteractionMappingProfile.asset new file mode 100644 index 00000000..170a83b8 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSpatialPointerPoseInteractionMappingProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: RightWMRHandSpatialPointerPoseInteractionMappingProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer Pose + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 7c6a07907a075564a8991de5311592bf, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSpatialPointerPoseInteractionMappingProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSpatialPointerPoseInteractionMappingProfile.asset.meta new file mode 100644 index 00000000..7120cd81 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRHandSpatialPointerPoseInteractionMappingProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 696cb41dc45525e418b1e4828d196e80 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRealityHandVisulaizationProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRealityHandVisulaizationProfile.asset new file mode 100644 index 00000000..dfe15594 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRealityHandVisulaizationProfile.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b7926164960ef644850207ccce1b07e, type: 3} + m_Name: RightWMRealityHandVisulaizationProfile + m_EditorClassIdentifier: + controllerVisualizationType: + reference: 5d844e0b-f913-46b8-bc3b-fa6429e62c60 + useDefaultModels: 0 + model: {fileID: 7709636661657395508, guid: 79eeb06cd1ed4224eb6387ce28855a3c, type: 3} + pointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + alternatePointerPose: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRealityHandVisulaizationProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRealityHandVisulaizationProfile.asset.meta new file mode 100644 index 00000000..ca106662 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/Right/RightWMRealityHandVisulaizationProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dc2f190fa2aabbd4187e98726b13bb3c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/WindowsMixedRealityHandControllerDataProviderProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/WindowsMixedRealityHandControllerDataProviderProfile.asset new file mode 100644 index 00000000..f9becec0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/WindowsMixedRealityHandControllerDataProviderProfile.asset @@ -0,0 +1,24 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 29a54eda3f140e7418c5cb5c2bccd329, type: 3} + m_Name: WindowsMixedRealityHandControllerDataProviderProfile + m_EditorClassIdentifier: + hasSetupDefaults: 1 + controllerMappingProfiles: + - {fileID: 11400000, guid: f296956538cc1d146bc7a7ebab8505b9, type: 2} + - {fileID: 11400000, guid: 3f8ea7a404a0ae14fa71a41b2ed725e3, type: 2} + gripThreshold: 0.8 + renderingMode: 1 + handPhysicsEnabled: 0 + useTriggers: 0 + boundsMode: 0 + trackedPoses: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/WindowsMixedRealityHandControllerDataProviderProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/WindowsMixedRealityHandControllerDataProviderProfile.asset.meta new file mode 100644 index 00000000..7c460631 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HandController/WindowsMixedRealityHandControllerDataProviderProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 11ef7a331fa0a164bb9ac3e5cae510ff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController.meta new file mode 100644 index 00000000..392ed934 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d751c2aa6e4649e42b5830b715d16eb9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/AirTapProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/AirTapProfile.asset new file mode 100644 index 00000000..c0d70b6b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/AirTapProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: AirTapProfile + m_EditorClassIdentifier: + interactionMapping: + description: Air Tap + stateChangeType: 0 + axisType: 2 + inputType: 25 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/AirTapProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/AirTapProfile.asset.meta new file mode 100644 index 00000000..0fb1d1c2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/AirTapProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5f74fb8ba2c5a29448299a01af87774b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialGripProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialGripProfile.asset new file mode 100644 index 00000000..0eb3e268 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialGripProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialGripProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Grip + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialGripProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialGripProfile.asset.meta new file mode 100644 index 00000000..3c51f791 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialGripProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f3146fda244cb8d4693c2edc69bdb2c3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialPointerProfile.asset new file mode 100644 index 00000000..3fe99748 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialPointerProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..7b2e626b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/HoloLensController/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 276d084c2bceed04b94fd467c7e5fc14 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/LeftHoloLensControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/LeftHoloLensControllerProfile.asset new file mode 100644 index 00000000..0751ae42 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/LeftHoloLensControllerProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: LeftHoloLensControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 6ce43357-54e7-4471-b1b7-4bf4912984b1 + handedness: 1 + visualizationProfile: {fileID: 0} + useCustomInteractions: 1 + interactionMappingProfiles: + - {fileID: 11400000, guid: 276d084c2bceed04b94fd467c7e5fc14, type: 2} + - {fileID: 11400000, guid: f3146fda244cb8d4693c2edc69bdb2c3, type: 2} + - {fileID: 11400000, guid: 5f74fb8ba2c5a29448299a01af87774b, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/LeftHoloLensControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/LeftHoloLensControllerProfile.asset.meta new file mode 100644 index 00000000..ea215f3a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/LeftHoloLensControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aaa9b82b55ce7834bb43c9d726ff893e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/RightHoloLensControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/RightHoloLensControllerProfile.asset new file mode 100644 index 00000000..c67d7c76 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/RightHoloLensControllerProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: RightHoloLensControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 6ce43357-54e7-4471-b1b7-4bf4912984b1 + handedness: 2 + visualizationProfile: {fileID: 0} + useCustomInteractions: 1 + interactionMappingProfiles: + - {fileID: 11400000, guid: 276d084c2bceed04b94fd467c7e5fc14, type: 2} + - {fileID: 11400000, guid: f3146fda244cb8d4693c2edc69bdb2c3, type: 2} + - {fileID: 11400000, guid: 5f74fb8ba2c5a29448299a01af87774b, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/RightHoloLensControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/RightHoloLensControllerProfile.asset.meta new file mode 100644 index 00000000..d9056a7f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/RightHoloLensControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ff201f2397a3513458d415382ee6f1d0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController.meta new file mode 100644 index 00000000..7fe0835c --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 94af4f07a9a69dc4ba11073dc9267ed9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left.meta new file mode 100644 index 00000000..b8445d59 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e556001044e780a43b929eb51ae23944 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/GripPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/GripPressProfile.asset new file mode 100644 index 00000000..0c7ad693 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/GripPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: GripPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Press + stateChangeType: 0 + axisType: 3 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 7 + description: Grip Strength + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_11 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/GripPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/GripPressProfile.asset.meta new file mode 100644 index 00000000..d4a31068 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/GripPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4cde54435873b4649b69d7f5c77e5fe0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset new file mode 100644 index 00000000..42be6372 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset @@ -0,0 +1,16 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bf89b42d98d441ee99759646f3ab757d, type: 3} + m_Name: InvertDualAxisProcessor + m_EditorClassIdentifier: + invertX: 0 + invertY: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset.meta new file mode 100644 index 00000000..58219312 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/InvertDualAxisProcessor.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 31f74fdbae4feb14fa28be1dd9378cef +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/MenuPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/MenuPressProfile.asset new file mode 100644 index 00000000..a47b8a95 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/MenuPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MenuPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Menu Press + stateChangeType: 0 + axisType: 2 + inputType: 27 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 330 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/MenuPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/MenuPressProfile.asset.meta new file mode 100644 index 00000000..f2635002 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/MenuPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 939aa56150ed8a348b53e8636d4edf7a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialGripProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialGripProfile.asset new file mode 100644 index 00000000..0eb3e268 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialGripProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialGripProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Grip + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialGripProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialGripProfile.asset.meta new file mode 100644 index 00000000..9863b4a7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialGripProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bbf83b0f6936bdf40b55fc01d191c970 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialPointerProfile.asset new file mode 100644 index 00000000..8e35daa3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialPointerProfile.asset @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 9e0e4acc675a18b4b9c65e9ff85cfe58, type: 2} + - {fileID: 11400000, guid: d3736f91cbeeb284fb90b9d389b7fe33, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..d5481f30 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 669d97502770bc241ac25834fa793d8b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset new file mode 100644 index 00000000..8f77241a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: ThumbstickClickProfile + m_EditorClassIdentifier: + interactionMapping: + description: Thumbstick Click + stateChangeType: 0 + axisType: 2 + inputType: 18 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 338 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset.meta new file mode 100644 index 00000000..e3b3fa1f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickClickProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7229007b181ce2c49b64a1cbef700c9c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset new file mode 100644 index 00000000..646b8b3f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: ThumbstickPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Thumbstick Position + stateChangeType: 0 + axisType: 4 + inputType: 17 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 5 + description: Teleport Direction + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: AXIS_1 + axisCodeY: AXIS_2 + inputProcessors: + - {fileID: 11400000, guid: 2158a760049510f429c34a8e131a1e69, type: 2} + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset.meta new file mode 100644 index 00000000..1ae96c2f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/ThumbstickPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 55cf4c87b304d984cb995fad4018170d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset new file mode 100644 index 00000000..4a32a196 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Position + stateChangeType: 0 + axisType: 4 + inputType: 21 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: AXIS_17 + axisCodeY: AXIS_18 + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset.meta new file mode 100644 index 00000000..bdb1e91b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 22a2efc24b920ad4cbcbee8b6e65ac66 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPressProfile.asset new file mode 100644 index 00000000..14303be3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Press + stateChangeType: 0 + axisType: 2 + inputType: 24 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 338 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPressProfile.asset.meta new file mode 100644 index 00000000..31a4a2a4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1884d4e0b33e32d42b5731289987b2de +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset new file mode 100644 index 00000000..824022c9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Touch + stateChangeType: 0 + axisType: 2 + inputType: 22 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 346 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset.meta new file mode 100644 index 00000000..8fffb50e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TouchpadTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e8f950a1a00bbc14e9a42deae23de196 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPositionProfile.asset new file mode 100644 index 00000000..f2edfde1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Position + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_9 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPositionProfile.asset.meta new file mode 100644 index 00000000..7fecbb57 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dc9d8c00038c2d84dbea53fc8935af15 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset new file mode 100644 index 00000000..a1a78ad6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPress(Select)Profile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Press (Select) + stateChangeType: 0 + axisType: 2 + inputType: 25 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: AXIS_9 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset.meta new file mode 100644 index 00000000..482f2809 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerPress(Select)Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d08f6946e2676bb4389eaa9fec6f1267 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchProfile.asset new file mode 100644 index 00000000..6c810dd0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Touch + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 344 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchProfile.asset.meta new file mode 100644 index 00000000..3f0539d7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9133bba4e3a8d0e42864e49a5f6e3416 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset new file mode 100644 index 00000000..0068216e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerTouchedProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Touched + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset.meta new file mode 100644 index 00000000..5e355066 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Left/TriggerTouchedProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4740f843e007bc244aa4ee60fe62e49d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftVisulizationProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftVisulizationProfile.asset new file mode 100644 index 00000000..7b62d0af --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftVisulizationProfile.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b7926164960ef644850207ccce1b07e, type: 3} + m_Name: LeftVisulizationProfile + m_EditorClassIdentifier: + controllerVisualizationType: + reference: 66444029-7951-40bc-b488-429e178b193a + useDefaultModels: 1 + model: {fileID: 1370450866519632, guid: ee0e0dd1dc6d457794091bf89f804f8f, type: 3} + pointerPose: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + alternatePointerPose: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftVisulizationProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftVisulizationProfile.asset.meta new file mode 100644 index 00000000..b3954c03 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftVisulizationProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f381de7e7e4e4974a9c264a1b9453066 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftWMRControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftWMRControllerProfile.asset new file mode 100644 index 00000000..4eeee54f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftWMRControllerProfile.asset @@ -0,0 +1,33 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: LeftWMRControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 37aa1554-3d46-4c72-aac4-31023775f62b + handedness: 1 + visualizationProfile: {fileID: 11400000, guid: f381de7e7e4e4974a9c264a1b9453066, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: 669d97502770bc241ac25834fa793d8b, type: 2} + - {fileID: 11400000, guid: bbf83b0f6936bdf40b55fc01d191c970, type: 2} + - {fileID: 11400000, guid: 4cde54435873b4649b69d7f5c77e5fe0, type: 2} + - {fileID: 11400000, guid: dc9d8c00038c2d84dbea53fc8935af15, type: 2} + - {fileID: 11400000, guid: 4740f843e007bc244aa4ee60fe62e49d, type: 2} + - {fileID: 11400000, guid: d08f6946e2676bb4389eaa9fec6f1267, type: 2} + - {fileID: 11400000, guid: 22a2efc24b920ad4cbcbee8b6e65ac66, type: 2} + - {fileID: 11400000, guid: e8f950a1a00bbc14e9a42deae23de196, type: 2} + - {fileID: 11400000, guid: 1884d4e0b33e32d42b5731289987b2de, type: 2} + - {fileID: 11400000, guid: 939aa56150ed8a348b53e8636d4edf7a, type: 2} + - {fileID: 11400000, guid: 55cf4c87b304d984cb995fad4018170d, type: 2} + - {fileID: 11400000, guid: 7229007b181ce2c49b64a1cbef700c9c, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftWMRControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftWMRControllerProfile.asset.meta new file mode 100644 index 00000000..822c94a1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/LeftWMRControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 752ece58d1e10d4458ac9d6ad664cc58 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right.meta new file mode 100644 index 00000000..4a2ef507 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0bfd33d5f032e0d4da10d7a85399006c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/GripPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/GripPressProfile.asset new file mode 100644 index 00000000..6f82c007 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/GripPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: GripPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Grip Press + stateChangeType: 0 + axisType: 3 + inputType: 13 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 7 + description: Grip Strength + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_12 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/GripPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/GripPressProfile.asset.meta new file mode 100644 index 00000000..8d6a6619 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/GripPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a74a73b1c5abdb049a73a9b44b0b2e98 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset new file mode 100644 index 00000000..42be6372 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset @@ -0,0 +1,16 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bf89b42d98d441ee99759646f3ab757d, type: 3} + m_Name: InvertDualAxisProcessor + m_EditorClassIdentifier: + invertX: 0 + invertY: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset.meta new file mode 100644 index 00000000..4a2a13d7 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/InvertDualAxisProcessor.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 936774fa4f963834a8f2417be8b8d9c1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/MenuPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/MenuPressProfile.asset new file mode 100644 index 00000000..89075340 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/MenuPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: MenuPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Menu Press + stateChangeType: 0 + axisType: 2 + inputType: 27 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 2 + description: Menu + axisConstraint: 2 + keyCode: 332 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/MenuPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/MenuPressProfile.asset.meta new file mode 100644 index 00000000..5ff34ebc --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/MenuPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6b662c7eddb36704581ea73260d9ed0c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialGripProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialGripProfile.asset new file mode 100644 index 00000000..0eb3e268 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialGripProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialGripProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Grip + stateChangeType: 0 + axisType: 7 + inputType: 14 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialGripProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialGripProfile.asset.meta new file mode 100644 index 00000000..04945993 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialGripProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ef9ee042babf1684cbaf525774f40d9d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialPointerProfile.asset new file mode 100644 index 00000000..8e35daa3 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialPointerProfile.asset @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: SpatialPointerProfile + m_EditorClassIdentifier: + interactionMapping: + description: Spatial Pointer + stateChangeType: 0 + axisType: 7 + inputType: 3 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: + - {fileID: 11400000, guid: 9e0e4acc675a18b4b9c65e9ff85cfe58, type: 2} + - {fileID: 11400000, guid: d3736f91cbeeb284fb90b9d389b7fe33, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialPointerProfile.asset.meta new file mode 100644 index 00000000..1dea9efa --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/SpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb4fddd7eb87b124f841b007e0f01ae5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset new file mode 100644 index 00000000..c1de0b6d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: ThumbstickClickProfile + m_EditorClassIdentifier: + interactionMapping: + description: Thumbstick Click + stateChangeType: 0 + axisType: 2 + inputType: 18 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 339 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset.meta new file mode 100644 index 00000000..b4ddc093 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickClickProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f6de46af1ba79f241847d39062c2bb6e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset new file mode 100644 index 00000000..32c33756 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: ThumbstickPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Thumbstick Position + stateChangeType: 0 + axisType: 4 + inputType: 17 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 5 + description: Teleport Direction + axisConstraint: 4 + keyCode: 0 + inputName: + axisCodeX: AXIS_4 + axisCodeY: AXIS_5 + inputProcessors: + - {fileID: 11400000, guid: 9c40de59f43b08245b4e74f7dc6b14bc, type: 2} + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset.meta new file mode 100644 index 00000000..2d9d545d --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/ThumbstickPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7ee0442e6d1cead47a8e89301c4d343f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset new file mode 100644 index 00000000..38e2e597 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Position + stateChangeType: 0 + axisType: 4 + inputType: 21 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: AXIS_19 + axisCodeY: AXIS_20 + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset.meta new file mode 100644 index 00000000..67fdb624 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 171ce182a979c7f4896da13d78d014fe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPressProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPressProfile.asset new file mode 100644 index 00000000..02e7490f --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPressProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadPressProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Press + stateChangeType: 0 + axisType: 2 + inputType: 24 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 339 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPressProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPressProfile.asset.meta new file mode 100644 index 00000000..58609c7b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadPressProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 61ea3544727361e418900f4806d00403 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset new file mode 100644 index 00000000..631418dd --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TouchpadTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Touchpad Touch + stateChangeType: 0 + axisType: 2 + inputType: 22 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 347 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset.meta new file mode 100644 index 00000000..ebbf6f63 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TouchpadTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e2dbd828dced4f14eba72f7870e73bba +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPositionProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPositionProfile.asset new file mode 100644 index 00000000..5b46845b --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPositionProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPositionProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Position + stateChangeType: 0 + axisType: 3 + inputType: 10 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 6 + description: Trigger + axisConstraint: 3 + keyCode: 0 + inputName: + axisCodeX: AXIS_10 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPositionProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPositionProfile.asset.meta new file mode 100644 index 00000000..b94619ad --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPositionProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9ebeb5e994087954bb05781c9c477f3e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset new file mode 100644 index 00000000..65f89d2e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerPress(Select)Profile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Press (Select) + stateChangeType: 0 + axisType: 2 + inputType: 25 + inputAction: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 1 + description: Select + axisConstraint: 2 + keyCode: 0 + inputName: + axisCodeX: AXIS_10 + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset.meta new file mode 100644 index 00000000..75dc7466 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerPress(Select)Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0f2de0b794676bd4c9615ec012cd4457 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchProfile.asset new file mode 100644 index 00000000..b0406995 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerTouchProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Touch + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 345 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchProfile.asset.meta new file mode 100644 index 00000000..e6f99964 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c6ad2eb197ef03f4588c20d33cbb7bc4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset new file mode 100644 index 00000000..0068216e --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3fb79524faca40478c0844c24e542f7, type: 3} + m_Name: TriggerTouchedProfile + m_EditorClassIdentifier: + interactionMapping: + description: Trigger Touched + stateChangeType: 0 + axisType: 2 + inputType: 11 + inputAction: + profileGuid: 00000000000000000000000000000000 + id: 0 + description: None + axisConstraint: 0 + keyCode: 0 + inputName: + axisCodeX: + axisCodeY: + inputProcessors: [] + pointerProfiles: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset.meta new file mode 100644 index 00000000..0149eeab --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/Right/TriggerTouchedProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0d36a94dafc81494c90b9c942153d142 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightVisualizationProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightVisualizationProfile.asset new file mode 100644 index 00000000..1ec03ccb --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightVisualizationProfile.asset @@ -0,0 +1,28 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b7926164960ef644850207ccce1b07e, type: 3} + m_Name: RightVisualizationProfile + m_EditorClassIdentifier: + controllerVisualizationType: + reference: 66444029-7951-40bc-b488-429e178b193a + useDefaultModels: 1 + model: {fileID: 1760394390528354, guid: 3c945620dae24228acea8b9402529ce6, type: 3} + pointerPose: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 4 + description: Pointer Pose + axisConstraint: 7 + alternatePointerPose: + profileGuid: 399335ccc89c4d12b79f3539ca7771db + id: 3 + description: Grip Pose + axisConstraint: 7 diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightVisualizationProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightVisualizationProfile.asset.meta new file mode 100644 index 00000000..0974c0db --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightVisualizationProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6266c5605a2b6b84898b429cb917a3e4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightWMRControllerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightWMRControllerProfile.asset new file mode 100644 index 00000000..2a1e6bae --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightWMRControllerProfile.asset @@ -0,0 +1,33 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d420c170b42dfe0438e2aa2a829775ed, type: 3} + m_Name: RightWMRControllerProfile + m_EditorClassIdentifier: + controllerType: + reference: 37aa1554-3d46-4c72-aac4-31023775f62b + handedness: 2 + visualizationProfile: {fileID: 11400000, guid: 6266c5605a2b6b84898b429cb917a3e4, + type: 2} + useCustomInteractions: 0 + interactionMappingProfiles: + - {fileID: 11400000, guid: eb4fddd7eb87b124f841b007e0f01ae5, type: 2} + - {fileID: 11400000, guid: ef9ee042babf1684cbaf525774f40d9d, type: 2} + - {fileID: 11400000, guid: a74a73b1c5abdb049a73a9b44b0b2e98, type: 2} + - {fileID: 11400000, guid: 9ebeb5e994087954bb05781c9c477f3e, type: 2} + - {fileID: 11400000, guid: 0d36a94dafc81494c90b9c942153d142, type: 2} + - {fileID: 11400000, guid: 0f2de0b794676bd4c9615ec012cd4457, type: 2} + - {fileID: 11400000, guid: 171ce182a979c7f4896da13d78d014fe, type: 2} + - {fileID: 11400000, guid: e2dbd828dced4f14eba72f7870e73bba, type: 2} + - {fileID: 11400000, guid: 61ea3544727361e418900f4806d00403, type: 2} + - {fileID: 11400000, guid: 6b662c7eddb36704581ea73260d9ed0c, type: 2} + - {fileID: 11400000, guid: 7ee0442e6d1cead47a8e89301c4d343f, type: 2} + - {fileID: 11400000, guid: f6de46af1ba79f241847d39062c2bb6e, type: 2} diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightWMRControllerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightWMRControllerProfile.asset.meta new file mode 100644 index 00000000..9573f6f2 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityController/RightWMRControllerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 87a124892ea548a4ea4cbba488e06b5a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityControllerDataProviderProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityControllerDataProviderProfile.asset new file mode 100644 index 00000000..ff4327e4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityControllerDataProviderProfile.asset @@ -0,0 +1,25 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe9eeb08f95b1c1419ad17953d9a48ee, type: 3} + m_Name: WindowsMixedRealityControllerDataProviderProfile + m_EditorClassIdentifier: + hasSetupDefaults: 1 + controllerMappingProfiles: + - {fileID: 11400000, guid: aaa9b82b55ce7834bb43c9d726ff893e, type: 2} + - {fileID: 11400000, guid: ff201f2397a3513458d415382ee6f1d0, type: 2} + - {fileID: 11400000, guid: 752ece58d1e10d4458ac9d6ad664cc58, type: 2} + - {fileID: 11400000, guid: 87a124892ea548a4ea4cbba488e06b5a, type: 2} + manipulationGestures: 0 + navigationGestures: 0 + useRailsNavigation: 0 + railsNavigationGestures: 0 + windowsGestureAutoStart: 0 diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityControllerDataProviderProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityControllerDataProviderProfile.asset.meta new file mode 100644 index 00000000..186230d1 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Contollers/WindowsMixedRealityControllerDataProviderProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8e0139954c0b0ab41a6f5fce7c0594e1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input.meta new file mode 100644 index 00000000..b09d500a --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eecb3dac242c774448b9a7b8cc5b2b3c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers.meta new file mode 100644 index 00000000..18f2c412 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4e59e27d50b31694fb85fd21dc41868a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerNearPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerNearPointerProfile.asset new file mode 100644 index 00000000..8fd30280 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerNearPointerProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c156ea3e1a7a493dac236ed84c4a819a, type: 3} + m_Name: WMRHandControllerNearPointerProfile + m_EditorClassIdentifier: + pointerPrefab: {fileID: 7751017874127228719, guid: dffe173621ec68b4abb66b6cfbe5c7f2, + type: 3} + pointingExtent: 0.5 + pointingRaycastLayerMasks: + - serializedVersion: 2 + m_Bits: 4294967291 + drawDebugPointingRays: 0 + debugPointingRayColors: + - {r: 0, g: 1, b: 0, a: 1} diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerNearPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerNearPointerProfile.asset.meta new file mode 100644 index 00000000..9488abc6 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerNearPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 49d2569fc7d344548a00f3cac945ba20 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerSpatialPointerProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerSpatialPointerProfile.asset new file mode 100644 index 00000000..644e0edf --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerSpatialPointerProfile.asset @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c156ea3e1a7a493dac236ed84c4a819a, type: 3} + m_Name: WMRHandControllerSpatialPointerProfile + m_EditorClassIdentifier: + pointerPrefab: {fileID: 1247086986094436, guid: 3c6b5e276e9a37446b574ff0ee1eee58, + type: 3} + pointingExtent: 10 + pointingRaycastLayerMasks: + - serializedVersion: 2 + m_Bits: 4294967291 + drawDebugPointingRays: 0 + debugPointingRayColors: + - {r: 0, g: 1, b: 0, a: 1} diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerSpatialPointerProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerSpatialPointerProfile.asset.meta new file mode 100644 index 00000000..7f5d5898 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/Input/Pointers/WMRHandControllerSpatialPointerProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7c6a07907a075564a8991de5311592bf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/WindowsMixedRealityPlatformConfigurationsProfile.asset b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/WindowsMixedRealityPlatformConfigurationsProfile.asset new file mode 100644 index 00000000..4cc665b4 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/WindowsMixedRealityPlatformConfigurationsProfile.asset @@ -0,0 +1,64 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: da64fb88269149f8a95f1fb969d6a0b4, type: 3} + m_Name: WindowsMixedRealityPlatformConfigurationsProfile + m_EditorClassIdentifier: + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: 7dc72b4e-34f6-4b26-afd7-cde0c51f83a3 + configurations: + - instancedType: + reference: 0f33b864-e4b9-4697-af40-f7772f3bc596 + name: Windows Mixed Reality Camera Data Provider + priority: 0 + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: 7dc72b4e-34f6-4b26-afd7-cde0c51f83a3 + profile: {fileID: 11400000, guid: 57a7de86787ebb74ead8edbc180d4d14, type: 2} + - instancedType: + reference: e61b047a-56ac-421a-b5f7-683fd44dd33c + name: Windows Mixed Reality Boundary Data Provider + priority: 4 + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: 7dc72b4e-34f6-4b26-afd7-cde0c51f83a3 + profile: {fileID: 0} + - instancedType: + reference: 12e02ef8-4177-46ab-bc50-19af7148bd4a + name: Windows Mixed Reality Controller Data Provider + priority: 1 + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: 7dc72b4e-34f6-4b26-afd7-cde0c51f83a3 + profile: {fileID: 11400000, guid: 8e0139954c0b0ab41a6f5fce7c0594e1, type: 2} + - instancedType: + reference: f2e0d0ef-6393-4f96-90cc-df78ca1dc8a2 + name: Windows Mixed Reality Hand Controller Data Provider + priority: 2 + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: 7dc72b4e-34f6-4b26-afd7-cde0c51f83a3 + profile: {fileID: 11400000, guid: 11ef7a331fa0a164bb9ac3e5cae510ff, type: 2} + - instancedType: + reference: 0861c801-e20e-4e76-8c4e-711c1cb43ddf + name: Windows Mixed Reality Spatial Mesh Observer + priority: 4 + platformEntries: + runtimePlatforms: + - reference: c838c4f5-a87e-48c7-8742-09a4d85fc3bc + - reference: 7dc72b4e-34f6-4b26-afd7-cde0c51f83a3 + profile: {fileID: 0} diff --git a/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/WindowsMixedRealityPlatformConfigurationsProfile.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/WindowsMixedRealityPlatformConfigurationsProfile.asset.meta new file mode 100644 index 00000000..22af2cf9 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/WindowsMixedReality/Profiles/WindowsMixedRealityPlatformConfigurationsProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 890465f9d6c05ef4f9bf4e3aac0d534e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/XRTK.Examples/ProjectSettings/QualitySettings.asset b/XRTK.Examples/ProjectSettings/QualitySettings.asset index 3eacb788..4f8d3e45 100644 --- a/XRTK.Examples/ProjectSettings/QualitySettings.asset +++ b/XRTK.Examples/ProjectSettings/QualitySettings.asset @@ -40,6 +40,7 @@ QualitySettings: asyncUploadBufferSize: 16 asyncUploadPersistentBuffer: 1 resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} excludedTargetPlatforms: [] - serializedVersion: 2 name: Low @@ -75,6 +76,7 @@ QualitySettings: asyncUploadBufferSize: 16 asyncUploadPersistentBuffer: 1 resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} excludedTargetPlatforms: [] - serializedVersion: 2 name: Medium @@ -110,6 +112,7 @@ QualitySettings: asyncUploadBufferSize: 16 asyncUploadPersistentBuffer: 1 resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} excludedTargetPlatforms: [] - serializedVersion: 2 name: High @@ -145,6 +148,7 @@ QualitySettings: asyncUploadBufferSize: 16 asyncUploadPersistentBuffer: 1 resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} excludedTargetPlatforms: [] - serializedVersion: 2 name: Very High @@ -180,6 +184,7 @@ QualitySettings: asyncUploadBufferSize: 16 asyncUploadPersistentBuffer: 1 resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} excludedTargetPlatforms: [] - serializedVersion: 2 name: Ultra @@ -215,9 +220,11 @@ QualitySettings: asyncUploadBufferSize: 16 asyncUploadPersistentBuffer: 1 resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} excludedTargetPlatforms: [] m_PerPlatformDefaultQuality: Android: 2 + Lumin: 0 Nintendo 3DS: 5 Nintendo Switch: 5 PS4: 5 From ed6722bc043a06d33447844829014a5be5b877e8 Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Sun, 25 Apr 2021 16:47:38 -0400 Subject: [PATCH 5/9] Added empty symlink settings asset back in --- .../XRTK.Generated/SymbolicLinkSettings.asset | 15 +++++++++++++++ .../SymbolicLinkSettings.asset.meta | 8 ++++++++ 2 files changed, 23 insertions(+) create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset create mode 100644 XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset.meta diff --git a/XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset b/XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset new file mode 100644 index 00000000..bcbab557 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset @@ -0,0 +1,15 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ff8a5d57a9af497db320551240c892c2, type: 3} + m_Name: SymbolicLinkSettings + m_EditorClassIdentifier: + symbolicLinks: [] diff --git a/XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset.meta b/XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset.meta new file mode 100644 index 00000000..84e08ce0 --- /dev/null +++ b/XRTK.Examples/Assets/XRTK.Generated/SymbolicLinkSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cea629e0b4f853a4484ea99b70d5aa28 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: From d38d5e108f64fbedb16dbb75422d5edb90907a2b Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Sun, 25 Apr 2021 17:06:37 -0400 Subject: [PATCH 6/9] updated azure-pipelines.yml tracking branch --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 16fda9a9..4a1ea64d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,6 +6,7 @@ resources: type: github name: XRTK/AzurePipelines endpoint: XRTK + ref: dev/non-package-build-support variables: project.name: 'Examples' From 6c2adf1852632fc10665766472c313e5e774a33f Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Sun, 25 Apr 2021 21:46:20 -0400 Subject: [PATCH 7/9] Fixed project name --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4a1ea64d..2e69d6b7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -9,7 +9,7 @@ resources: ref: dev/non-package-build-support variables: - project.name: 'Examples' + project.name: 'XRTK.Examples' package.name: '' package.version: '' EditorPath: '' From 013674adf3ca5e146dff65179a85e34898a5499c Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Sun, 25 Apr 2021 22:14:27 -0400 Subject: [PATCH 8/9] updated project settings --- .../ProjectSettings/EditorBuildSettings.asset | 2 +- .../ProjectSettings/GraphicsSettings.asset | 5 +++- .../ProjectSettings/ProjectSettings.asset | 27 ++++++++++++++++++- .../UnityConnectSettings.asset | 2 +- azure-pipelines.yml | 1 - 5 files changed, 32 insertions(+), 5 deletions(-) diff --git a/XRTK.Examples/ProjectSettings/EditorBuildSettings.asset b/XRTK.Examples/ProjectSettings/EditorBuildSettings.asset index e4b136f1..7f67ea73 100644 --- a/XRTK.Examples/ProjectSettings/EditorBuildSettings.asset +++ b/XRTK.Examples/ProjectSettings/EditorBuildSettings.asset @@ -5,7 +5,7 @@ EditorBuildSettings: m_ObjectHideFlags: 0 serializedVersion: 2 m_Scenes: - - enabled: 0 + - enabled: 1 path: Assets/XRTK.Examples/BaseScene.unity guid: 092b39bb8f12afa498a539bd456a71d6 m_configObjects: {} diff --git a/XRTK.Examples/ProjectSettings/GraphicsSettings.asset b/XRTK.Examples/ProjectSettings/GraphicsSettings.asset index 1a6b7d1d..166d4fe3 100644 --- a/XRTK.Examples/ProjectSettings/GraphicsSettings.asset +++ b/XRTK.Examples/ProjectSettings/GraphicsSettings.asset @@ -3,7 +3,7 @@ --- !u!30 &1 GraphicsSettings: m_ObjectHideFlags: 0 - serializedVersion: 12 + serializedVersion: 13 m_Deferred: m_Mode: 1 m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} @@ -38,6 +38,7 @@ GraphicsSettings: - {fileID: 10783, guid: 0000000000000000f000000000000000, type: 0} - {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0} - {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 16001, guid: 0000000000000000f000000000000000, type: 0} m_PreloadedShaders: [] m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} @@ -62,3 +63,5 @@ GraphicsSettings: m_AlbedoSwatchInfos: [] m_LightsUseLinearIntensity: 0 m_LightsUseColorTemperature: 0 + m_LogWhenShaderIsCompiled: 0 + m_AllowEnlightenSupportForUpgradedProject: 1 diff --git a/XRTK.Examples/ProjectSettings/ProjectSettings.asset b/XRTK.Examples/ProjectSettings/ProjectSettings.asset index f6d71315..ba05bca5 100644 --- a/XRTK.Examples/ProjectSettings/ProjectSettings.asset +++ b/XRTK.Examples/ProjectSettings/ProjectSettings.asset @@ -566,6 +566,29 @@ PlayerSettings: ps4attribEyeToEyeDistanceSettingVR: 0 ps4IncludedModules: [] ps4attribVROutputEnabled: 0 + ps5ParamFilePath: + ps5VideoOutPixelFormat: 0 + ps5VideoOutInitialWidth: 1920 + ps5VideoOutOutputMode: 1 + ps5BackgroundImagePath: + ps5StartupImagePath: + ps5Pic2Path: + ps5StartupImagesFolder: + ps5IconImagesFolder: + ps5SaveDataImagePath: + ps5SdkOverride: + ps5BGMPath: + ps5ShareOverlayImagePath: + ps5NPConfigZipPath: + ps5Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ + ps5UseResolutionFallback: 0 + ps5UseAudio3dBackend: 0 + ps5ScriptOptimizationLevel: 2 + ps5Audio3dVirtualSpeakerCount: 14 + ps5UpdateReferencePackage: + ps5disableAutoHideSplash: 0 + ps5OperatingSystemCanDisableSplashScreen: 0 + ps5IncludedModules: [] monoEnv: splashScreenBackgroundSourceLandscape: {fileID: 0} splashScreenBackgroundSourcePortrait: {fileID: 0} @@ -597,6 +620,7 @@ PlayerSettings: additionalIl2CppArgs: scriptingRuntimeVersion: 1 gcIncremental: 0 + assemblyVersionValidation: 1 gcWBarrierValidation: 0 apiCompatibilityLevelPerPlatform: {} m_RenderingPath: 1 @@ -691,6 +715,7 @@ PlayerSettings: XboxOneCapability: [] XboxOneGameRating: {} XboxOneIsContentPackage: 0 + XboxOneEnhancedXboxCompatibilityMode: 0 XboxOneEnableGPUVariability: 0 XboxOneSockets: {} XboxOneSplashScreen: {fileID: 0} @@ -711,7 +736,7 @@ PlayerSettings: m_PortalFolderPath: luminCert: m_CertPath: - m_SignPackage: 1 + m_SignPackage: 0 luminIsChannelApp: 0 luminVersion: m_VersionCode: 1 diff --git a/XRTK.Examples/ProjectSettings/UnityConnectSettings.asset b/XRTK.Examples/ProjectSettings/UnityConnectSettings.asset index c3ae9a02..fa0b1465 100644 --- a/XRTK.Examples/ProjectSettings/UnityConnectSettings.asset +++ b/XRTK.Examples/ProjectSettings/UnityConnectSettings.asset @@ -4,7 +4,7 @@ UnityConnectSettings: m_ObjectHideFlags: 0 serializedVersion: 1 - m_Enabled: 1 + m_Enabled: 0 m_TestMode: 0 m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events m_EventUrl: https://cdp.cloud.unity3d.com/v1/events diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2e69d6b7..54b102be 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -46,7 +46,6 @@ trigger: include: - azure-pipelines.yml - XRTK.Examples/* - - Submodules/* exclude: - '*' From 570f2c565321a0dcb29dd4d8102622f9e943a087 Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Mon, 26 Apr 2021 22:02:27 -0400 Subject: [PATCH 9/9] use main branch for azure pipelines --- azure-pipelines.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 54b102be..1430ac36 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,7 +6,6 @@ resources: type: github name: XRTK/AzurePipelines endpoint: XRTK - ref: dev/non-package-build-support variables: project.name: 'XRTK.Examples'