├── .gitattributes ├── .gitignore ├── Assets ├── .gitignore ├── Misc.meta ├── Misc │ ├── distorted.fbx │ ├── distorted.fbx.meta │ ├── reference.FBX │ └── reference.FBX.meta ├── Pcx.meta ├── Pcx │ ├── Editor.meta │ ├── Editor │ │ ├── Default Point.mat │ │ ├── Default Point.mat.meta │ │ ├── MaterialInspector.cs │ │ ├── MaterialInspector.cs.meta │ │ ├── PlyImporter.cs │ │ ├── PlyImporter.cs.meta │ │ ├── PlyImporterInspector.cs │ │ ├── PlyImporterInspector.cs.meta │ │ ├── PointCloudDataInspector.cs │ │ ├── PointCloudDataInspector.cs.meta │ │ ├── PointCloudRendererInspector.cs │ │ └── PointCloudRendererInspector.cs.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── BakedPointCloud.cs │ │ ├── BakedPointCloud.cs.meta │ │ ├── PointCloudData.cs │ │ ├── PointCloudData.cs.meta │ │ ├── PointCloudRenderer.cs │ │ ├── PointCloudRenderer.cs.meta │ │ ├── Shaders.meta │ │ └── Shaders │ │ ├── Common.cginc │ │ ├── Common.cginc.meta │ │ ├── Disk.cginc │ │ ├── Disk.cginc.meta │ │ ├── Disk.shader │ │ ├── Disk.shader.meta │ │ ├── Point.shader │ │ ├── Point.shader.meta │ │ ├── Square.cginc │ │ ├── Square.cginc.meta │ │ ├── Square.shader │ │ └── Square.shader.meta ├── Plugins.meta ├── Plugins │ ├── GitHub.meta │ └── GitHub │ │ ├── Editor.meta │ │ └── Editor │ │ ├── AsyncBridge.Net35.dll │ │ ├── AsyncBridge.Net35.dll.meta │ │ ├── ExtensionLoader.cs │ │ ├── ExtensionLoader.cs.meta │ │ ├── GitHub.Api.45.dll │ │ ├── GitHub.Api.45.dll.meta │ │ ├── GitHub.Api.dll │ │ ├── GitHub.Api.dll.meta │ │ ├── GitHub.Logging.dll │ │ ├── GitHub.Logging.dll.meta │ │ ├── GitHub.Unity.45.dll │ │ ├── GitHub.Unity.45.dll.meta │ │ ├── GitHub.Unity.dll │ │ ├── GitHub.Unity.dll.meta │ │ ├── GitHub.UnityShim.dll │ │ ├── GitHub.UnityShim.dll.meta │ │ ├── Mono.Posix.dll │ │ ├── Mono.Posix.dll.meta │ │ ├── QuickGuide.pdf │ │ ├── QuickGuide.pdf.meta │ │ ├── ReadOnlyCollectionsInterfaces.dll │ │ ├── ReadOnlyCollectionsInterfaces.dll.meta │ │ ├── System.Threading.dll │ │ ├── System.Threading.dll.meta │ │ ├── UnityAPIWrapper.cs │ │ ├── UnityAPIWrapper.cs.meta │ │ ├── big-logo@2x.png │ │ ├── big-logo@2x.png.meta │ │ ├── credits.txt │ │ ├── credits.txt.meta │ │ ├── eula.txt │ │ ├── eula.txt.meta │ │ ├── libsfw.bundle │ │ ├── libsfw.bundle.meta │ │ ├── libsfw.so │ │ ├── libsfw.so.meta │ │ ├── sfw.net.dll │ │ ├── sfw.net.dll.meta │ │ ├── x64.meta │ │ ├── x64 │ │ ├── pthreadVC2.dll │ │ ├── pthreadVC2.dll.meta │ │ ├── sfw_x64.dll │ │ └── sfw_x64.dll.meta │ │ ├── x86.meta │ │ └── x86 │ │ ├── pthreadVC2.dll │ │ ├── pthreadVC2.dll.meta │ │ ├── sfw_x86.dll │ │ └── sfw_x86.dll.meta ├── Resources.meta ├── Resources │ ├── Batches.meta │ ├── Batches │ │ ├── dummy.json │ │ └── dummy.json.meta │ ├── Configs.meta │ ├── Configs │ │ ├── dummy.json │ │ └── dummy.json.meta │ ├── Logs.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Default Point.mat │ │ └── Default Point.mat.meta │ ├── Props.meta │ ├── Props │ │ ├── Canvas.prefab │ │ ├── Canvas.prefab.meta │ │ ├── Directional Light.prefab │ │ ├── Directional Light.prefab.meta │ │ ├── Environment.prefab │ │ ├── Environment.prefab.meta │ │ ├── LaserPointer.prefab │ │ ├── LaserPointer.prefab.meta │ │ ├── Light.prefab │ │ ├── Light.prefab.meta │ │ ├── PlayerVariant.prefab │ │ ├── PlayerVariant.prefab.meta │ │ ├── Sign.prefab │ │ ├── Sign.prefab.meta │ │ ├── Stone.mat │ │ ├── Stone.mat.meta │ │ ├── TeleportPlane.prefab │ │ ├── TeleportPlane.prefab.meta │ │ ├── TeleportPlaneLocked.prefab │ │ ├── TeleportPlaneLocked.prefab.meta │ │ ├── stone_texture.jpg │ │ └── stone_texture.jpg.meta │ ├── RatingButton.prefab │ ├── RatingButton.prefab.meta │ ├── SignDistorted.prefab │ ├── SignDistorted.prefab.meta │ ├── SignReference.prefab │ ├── SignReference.prefab.meta │ ├── Stage.prefab │ └── Stage.prefab.meta ├── Scenes.meta ├── Scenes │ ├── Inspection.unity │ ├── Inspection.unity.meta │ ├── Rating.unity │ ├── Rating.unity.meta │ ├── Rendering.unity │ └── Rendering.unity.meta ├── Scripts.meta ├── Scripts │ ├── Capturing.meta │ ├── Inspection.meta │ ├── Inspection │ │ ├── InspectionManager.cs │ │ ├── InspectionManager.cs.meta │ │ ├── LoadObjects.cs │ │ ├── LoadObjects.cs.meta │ │ ├── LogInteractions.cs │ │ ├── LogInteractions.cs.meta │ │ ├── PlayerPosition.cs │ │ ├── PlayerPosition.cs.meta │ │ ├── SessionController.cs │ │ └── SessionController.cs.meta │ ├── Rating.meta │ ├── Rating │ │ ├── LaserPointer.cs │ │ ├── LaserPointer.cs.meta │ │ ├── LogScores.cs │ │ ├── LogScores.cs.meta │ │ ├── PanelConfiguration.cs │ │ ├── PanelConfiguration.cs.meta │ │ ├── RatingManager.cs │ │ └── RatingManager.cs.meta │ ├── Rendering.meta │ ├── Rendering │ │ ├── ConfigurationList.cs │ │ ├── ConfigurationList.cs.meta │ │ ├── MaterialConfiguration.cs │ │ ├── MaterialConfiguration.cs.meta │ │ ├── RenderingConfiguration.cs │ │ └── RenderingConfiguration.cs.meta │ ├── Utils.meta │ └── Utils │ │ ├── ChangeSceneColor.cs │ │ ├── ChangeSceneColor.cs.meta │ │ ├── KDTree.cs │ │ └── KDTree.cs.meta ├── SteamVR.meta ├── SteamVR │ ├── Editor.meta │ ├── Editor │ │ ├── SteamVR_AutoEnableVR.cs │ │ ├── SteamVR_AutoEnableVR.cs.meta │ │ ├── SteamVR_Editor.asmdef │ │ ├── SteamVR_Editor.asmdef.meta │ │ ├── SteamVR_Editor.cs │ │ ├── SteamVR_Editor.cs.meta │ │ ├── SteamVR_Preferences.cs │ │ ├── SteamVR_Preferences.cs.meta │ │ ├── SteamVR_RenderModelEditor.cs │ │ ├── SteamVR_RenderModelEditor.cs.meta │ │ ├── SteamVR_Settings.cs │ │ ├── SteamVR_Settings.cs.meta │ │ ├── SteamVR_SkyboxEditor.cs │ │ ├── SteamVR_SkyboxEditor.cs.meta │ │ ├── SteamVR_UnitySettingsWindow.cs │ │ ├── SteamVR_UnitySettingsWindow.cs.meta │ │ ├── SteamVR_Update.cs │ │ ├── SteamVR_Update.cs.meta │ │ ├── SteamVR_UpdateModeEditor.cs │ │ └── SteamVR_UpdateModeEditor.cs.meta │ ├── Extras.meta │ ├── Extras │ │ ├── SteamVR_ForceSteamVRMode.cs │ │ ├── SteamVR_ForceSteamVRMode.cs.meta │ │ ├── SteamVR_ForceSteamVRMode.unity │ │ ├── SteamVR_ForceSteamVRMode.unity.meta │ │ ├── SteamVR_GazeTracker.cs │ │ ├── SteamVR_GazeTracker.cs.meta │ │ ├── SteamVR_LaserPointer.cs │ │ ├── SteamVR_LaserPointer.cs.meta │ │ ├── SteamVR_LaserPointer.unity │ │ ├── SteamVR_LaserPointer.unity.meta │ │ ├── SteamVR_ShowTrackingReferences.unity │ │ ├── SteamVR_ShowTrackingReferences.unity.meta │ │ ├── SteamVR_TestIK.unity │ │ ├── SteamVR_TestIK.unity.meta │ │ ├── SteamVR_TestThrow.cs │ │ ├── SteamVR_TestThrow.cs.meta │ │ ├── SteamVR_TestThrow.unity │ │ ├── SteamVR_TestThrow.unity.meta │ │ ├── SteamVR_TestTrackedCamera.cs │ │ ├── SteamVR_TestTrackedCamera.cs.meta │ │ ├── SteamVR_TestTrackedCamera.mat │ │ ├── SteamVR_TestTrackedCamera.mat.meta │ │ ├── SteamVR_TestTrackedCamera.unity │ │ └── SteamVR_TestTrackedCamera.unity.meta │ ├── Icon.meta │ ├── Icon │ │ ├── SteamVR_Skeleton_Pose Icon.png │ │ ├── SteamVR_Skeleton_Pose Icon.png.meta │ │ ├── _steamvr.png │ │ └── _steamvr.png.meta │ ├── Input.meta │ ├── Input │ │ ├── BehaviourUnityEvents.meta │ │ ├── BehaviourUnityEvents │ │ │ ├── SteamVR_Behaviour_BooleanEvent.cs │ │ │ ├── SteamVR_Behaviour_BooleanEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_PoseEvent.cs │ │ │ ├── SteamVR_Behaviour_PoseEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_Pose_ConnectedChangedEvent.cs │ │ │ ├── SteamVR_Behaviour_Pose_ConnectedChangedEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_Pose_DeviceIndexChangedEvent.cs │ │ │ ├── SteamVR_Behaviour_Pose_DeviceIndexChangedEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_Pose_TrackingChangedEvent.cs │ │ │ ├── SteamVR_Behaviour_Pose_TrackingChangedEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_SingleEvent.cs │ │ │ ├── SteamVR_Behaviour_SingleEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_SkeletonEvent.cs │ │ │ ├── SteamVR_Behaviour_SkeletonEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_Skeleton_ConnectedChangedEvent.cs │ │ │ ├── SteamVR_Behaviour_Skeleton_ConnectedChangedEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_Skeleton_TrackingChangedEvent.cs │ │ │ ├── SteamVR_Behaviour_Skeleton_TrackingChangedEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_Vector2Event.cs │ │ │ ├── SteamVR_Behaviour_Vector2Event.cs.meta │ │ │ ├── SteamVR_Behaviour_Vector3Event.cs │ │ │ └── SteamVR_Behaviour_Vector3Event.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── InputSkin.guiskin │ │ │ ├── InputSkin.guiskin.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── Icons.meta │ │ │ │ └── Icons │ │ │ │ │ ├── BlenderBehaviour_Analog_Icon.png │ │ │ │ │ ├── BlenderBehaviour_Analog_Icon.png.meta │ │ │ │ │ ├── BlenderBehaviour_Boolean_Icon.png │ │ │ │ │ ├── BlenderBehaviour_Boolean_Icon.png.meta │ │ │ │ │ ├── BlenderBehaviour_Manual_Icon.png │ │ │ │ │ ├── BlenderBehaviour_Manual_Icon.png.meta │ │ │ │ │ ├── HandLeftIcon.png │ │ │ │ │ ├── HandLeftIcon.png.meta │ │ │ │ │ ├── HandRightIcon.png │ │ │ │ │ ├── HandRightIcon.png.meta │ │ │ │ │ ├── handmask.png │ │ │ │ │ ├── handmask.png.meta │ │ │ │ │ ├── handmask_Index.png │ │ │ │ │ ├── handmask_Index.png.meta │ │ │ │ │ ├── handmask_Middle.png │ │ │ │ │ ├── handmask_Middle.png.meta │ │ │ │ │ ├── handmask_Palm.png │ │ │ │ │ ├── handmask_Palm.png.meta │ │ │ │ │ ├── handmask_Pinky.png │ │ │ │ │ ├── handmask_Pinky.png.meta │ │ │ │ │ ├── handmask_Ring.png │ │ │ │ │ ├── handmask_Ring.png.meta │ │ │ │ │ ├── handmask_Thumb.png │ │ │ │ │ └── handmask_Thumb.png.meta │ │ │ ├── SteamVR_CopyExampleInputFiles.cs │ │ │ ├── SteamVR_CopyExampleInputFiles.cs.meta │ │ │ ├── SteamVR_Input_ActionManifest_Manager.cs │ │ │ ├── SteamVR_Input_ActionManifest_Manager.cs.meta │ │ │ ├── SteamVR_Input_ActionSetPropertyEditor.cs │ │ │ ├── SteamVR_Input_ActionSetPropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Boolean_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Boolean_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_GenericPropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_GenericPropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_In_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_In_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Out_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Out_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Pose_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Pose_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Single_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Single_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Skeleton_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Skeleton_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Vector2_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Vector2_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Vector3_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Vector3_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Vibration_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Vibration_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Editor.asmdef │ │ │ ├── SteamVR_Input_Editor.asmdef.meta │ │ │ ├── SteamVR_Input_EditorWindow.cs │ │ │ ├── SteamVR_Input_EditorWindow.cs.meta │ │ │ ├── SteamVR_Input_Generator.cs │ │ │ ├── SteamVR_Input_Generator.cs.meta │ │ │ ├── SteamVR_Input_LiveWindow.cs │ │ │ ├── SteamVR_Input_LiveWindow.cs.meta │ │ │ ├── SteamVR_Input_PostProcessBuild.cs │ │ │ ├── SteamVR_Input_PostProcessBuild.cs.meta │ │ │ ├── SteamVR_Skeleton_PoserEditor.cs │ │ │ └── SteamVR_Skeleton_PoserEditor.cs.meta │ │ ├── ExampleJSON.meta │ │ ├── ExampleJSON │ │ │ ├── actions.json │ │ │ ├── actions.json.meta │ │ │ ├── binding_holographic_hmd.json │ │ │ ├── binding_holographic_hmd.json.meta │ │ │ ├── binding_index_hmd.json │ │ │ ├── binding_index_hmd.json.meta │ │ │ ├── binding_rift.json │ │ │ ├── binding_rift.json.meta │ │ │ ├── binding_vive.json │ │ │ ├── binding_vive.json.meta │ │ │ ├── binding_vive_cosmos.json │ │ │ ├── binding_vive_cosmos.json.meta │ │ │ ├── binding_vive_pro.json │ │ │ ├── binding_vive_pro.json.meta │ │ │ ├── binding_vive_tracker_camera.json │ │ │ ├── binding_vive_tracker_camera.json.meta │ │ │ ├── bindings_holographic_controller.json │ │ │ ├── bindings_holographic_controller.json.meta │ │ │ ├── bindings_knuckles.json │ │ │ ├── bindings_knuckles.json.meta │ │ │ ├── bindings_oculus_touch.json │ │ │ ├── bindings_oculus_touch.json.meta │ │ │ ├── bindings_vive_controller.json │ │ │ ├── bindings_vive_controller.json.meta │ │ │ ├── bindings_vive_cosmos_controller.json │ │ │ └── bindings_vive_cosmos_controller.json.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── JSON.NET.meta │ │ │ └── JSON.NET │ │ │ │ ├── LICENSE_James_Newton-King │ │ │ │ ├── LICENSE_James_Newton-King.meta │ │ │ │ ├── LICENSE_SaladLab │ │ │ │ ├── LICENSE_SaladLab.meta │ │ │ │ ├── Valve.Newtonsoft.Json.dll │ │ │ │ └── Valve.Newtonsoft.Json.dll.meta │ │ ├── SteamVR_Action.cs │ │ ├── SteamVR_Action.cs.meta │ │ ├── SteamVR_ActionDirections.cs │ │ ├── SteamVR_ActionDirections.cs.meta │ │ ├── SteamVR_ActionSet.cs │ │ ├── SteamVR_ActionSet.cs.meta │ │ ├── SteamVR_ActionSet_Manager.cs │ │ ├── SteamVR_ActionSet_Manager.cs.meta │ │ ├── SteamVR_Action_Boolean.cs │ │ ├── SteamVR_Action_Boolean.cs.meta │ │ ├── SteamVR_Action_In.cs │ │ ├── SteamVR_Action_In.cs.meta │ │ ├── SteamVR_Action_List.cs │ │ ├── SteamVR_Action_List.cs.meta │ │ ├── SteamVR_Action_Out.cs │ │ ├── SteamVR_Action_Out.cs.meta │ │ ├── SteamVR_Action_Pose.cs │ │ ├── SteamVR_Action_Pose.cs.meta │ │ ├── SteamVR_Action_Single.cs │ │ ├── SteamVR_Action_Single.cs.meta │ │ ├── SteamVR_Action_Skeleton.cs │ │ ├── SteamVR_Action_Skeleton.cs.meta │ │ ├── SteamVR_Action_Vector2.cs │ │ ├── SteamVR_Action_Vector2.cs.meta │ │ ├── SteamVR_Action_Vector3.cs │ │ ├── SteamVR_Action_Vector3.cs.meta │ │ ├── SteamVR_Action_Vibration.cs │ │ ├── SteamVR_Action_Vibration.cs.meta │ │ ├── SteamVR_ActivateActionSetOnLoad.cs │ │ ├── SteamVR_ActivateActionSetOnLoad.cs.meta │ │ ├── SteamVR_Behaviour_Boolean.cs │ │ ├── SteamVR_Behaviour_Boolean.cs.meta │ │ ├── SteamVR_Behaviour_Pose.cs │ │ ├── SteamVR_Behaviour_Pose.cs.meta │ │ ├── SteamVR_Behaviour_Single.cs │ │ ├── SteamVR_Behaviour_Single.cs.meta │ │ ├── SteamVR_Behaviour_Skeleton.cs │ │ ├── SteamVR_Behaviour_Skeleton.cs.meta │ │ ├── SteamVR_Behaviour_SkeletonCustom.cs │ │ ├── SteamVR_Behaviour_SkeletonCustom.cs.meta │ │ ├── SteamVR_Behaviour_Vector2.cs │ │ ├── SteamVR_Behaviour_Vector2.cs.meta │ │ ├── SteamVR_Behaviour_Vector3.cs │ │ ├── SteamVR_Behaviour_Vector3.cs.meta │ │ ├── SteamVR_DefaultAction.cs │ │ ├── SteamVR_DefaultAction.cs.meta │ │ ├── SteamVR_DefaultActionSet.cs │ │ ├── SteamVR_DefaultActionSet.cs.meta │ │ ├── SteamVR_Input.cs │ │ ├── SteamVR_Input.cs.meta │ │ ├── SteamVR_Input_ActionFile.cs │ │ ├── SteamVR_Input_ActionFile.cs.meta │ │ ├── SteamVR_Input_ActionScopes.cs │ │ ├── SteamVR_Input_ActionScopes.cs.meta │ │ ├── SteamVR_Input_ActionSetUsages.cs │ │ ├── SteamVR_Input_ActionSetUsages.cs.meta │ │ ├── SteamVR_Input_BindingFile.cs │ │ ├── SteamVR_Input_BindingFile.cs.meta │ │ ├── SteamVR_Input_Generator_Names.cs │ │ ├── SteamVR_Input_Generator_Names.cs.meta │ │ ├── SteamVR_Input_References.cs │ │ ├── SteamVR_Input_References.cs.meta │ │ ├── SteamVR_Input_Source.cs │ │ ├── SteamVR_Input_Source.cs.meta │ │ ├── SteamVR_Input_Sources.cs │ │ ├── SteamVR_Input_Sources.cs.meta │ │ ├── SteamVR_Skeleton_Pose.cs │ │ ├── SteamVR_Skeleton_Pose.cs.meta │ │ ├── SteamVR_Skeleton_Poser.cs │ │ ├── SteamVR_Skeleton_Poser.cs.meta │ │ ├── SteamVR_UpdateModes.cs │ │ └── SteamVR_UpdateModes.cs.meta │ ├── InteractionSystem.meta │ ├── InteractionSystem │ │ ├── Core.meta │ │ ├── Core │ │ │ ├── Icons.meta │ │ │ ├── Icons │ │ │ │ ├── vr_interaction_system.png │ │ │ │ ├── vr_interaction_system.png.meta │ │ │ │ ├── vr_interaction_system_feet.png │ │ │ │ ├── vr_interaction_system_feet.png.meta │ │ │ │ ├── vr_interaction_system_left_hand.png │ │ │ │ ├── vr_interaction_system_left_hand.png.meta │ │ │ │ ├── vr_interaction_system_left_hand_question.png │ │ │ │ ├── vr_interaction_system_left_hand_question.png.meta │ │ │ │ ├── vr_interaction_system_right_hand.png │ │ │ │ ├── vr_interaction_system_right_hand.png.meta │ │ │ │ ├── vr_interaction_system_right_hand_question.png │ │ │ │ ├── vr_interaction_system_right_hand_question.png.meta │ │ │ │ ├── vr_interaction_system_unknown_hand.png │ │ │ │ └── vr_interaction_system_unknown_hand.png.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── FallbackHandIndicator.mat │ │ │ │ ├── FallbackHandIndicator.mat.meta │ │ │ │ ├── HoverHighlight.mat │ │ │ │ ├── HoverHighlight.mat.meta │ │ │ │ ├── SeeThru.mat │ │ │ │ ├── SeeThru.mat.meta │ │ │ │ ├── SteamVRControllerModel.mat │ │ │ │ └── SteamVRControllerModel.mat.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── HandColliderLeft.prefab │ │ │ │ ├── HandColliderLeft.prefab.meta │ │ │ │ ├── HandColliderRight.prefab │ │ │ │ ├── HandColliderRight.prefab.meta │ │ │ │ ├── LeftRenderModel Alien.prefab │ │ │ │ ├── LeftRenderModel Alien.prefab.meta │ │ │ │ ├── LeftRenderModel Slim.prefab │ │ │ │ ├── LeftRenderModel Slim.prefab.meta │ │ │ │ ├── LeftRenderModel.prefab │ │ │ │ ├── LeftRenderModel.prefab.meta │ │ │ │ ├── LeftRenderModelFloppy.prefab │ │ │ │ ├── LeftRenderModelFloppy.prefab.meta │ │ │ │ ├── Player.prefab │ │ │ │ ├── Player.prefab.meta │ │ │ │ ├── RightRenderModel Alien.prefab │ │ │ │ ├── RightRenderModel Alien.prefab.meta │ │ │ │ ├── RightRenderModel Slim.prefab │ │ │ │ ├── RightRenderModel Slim.prefab.meta │ │ │ │ ├── RightRenderModel.prefab │ │ │ │ ├── RightRenderModel.prefab.meta │ │ │ │ ├── RightRenderModelFloppy.prefab │ │ │ │ └── RightRenderModelFloppy.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── BodyCollider.cs │ │ │ │ ├── BodyCollider.cs.meta │ │ │ │ ├── CircularDrive.cs │ │ │ │ ├── CircularDrive.cs.meta │ │ │ │ ├── ComplexThrowable.cs │ │ │ │ ├── ComplexThrowable.cs.meta │ │ │ │ ├── ControllerHoverHighlight.cs │ │ │ │ ├── ControllerHoverHighlight.cs.meta │ │ │ │ ├── CustomEvents.cs │ │ │ │ ├── CustomEvents.cs.meta │ │ │ │ ├── DebugUI.cs │ │ │ │ ├── DebugUI.cs.meta │ │ │ │ ├── DestroyOnDetachedFromHand.cs │ │ │ │ ├── DestroyOnDetachedFromHand.cs.meta │ │ │ │ ├── DestroyOnParticleSystemDeath.cs │ │ │ │ ├── DestroyOnParticleSystemDeath.cs.meta │ │ │ │ ├── DestroyOnTriggerEnter.cs │ │ │ │ ├── DestroyOnTriggerEnter.cs.meta │ │ │ │ ├── DistanceHaptics.cs │ │ │ │ ├── DistanceHaptics.cs.meta │ │ │ │ ├── DontDestroyOnLoad.cs │ │ │ │ ├── DontDestroyOnLoad.cs.meta │ │ │ │ ├── EnumFlags.cs │ │ │ │ ├── EnumFlags.cs.meta │ │ │ │ ├── Equippable.cs │ │ │ │ ├── Equippable.cs.meta │ │ │ │ ├── FallbackCameraController.cs │ │ │ │ ├── FallbackCameraController.cs.meta │ │ │ │ ├── GrabTypes.cs │ │ │ │ ├── GrabTypes.cs.meta │ │ │ │ ├── Hand.cs │ │ │ │ ├── Hand.cs.meta │ │ │ │ ├── HandCollider.cs │ │ │ │ ├── HandCollider.cs.meta │ │ │ │ ├── HandPhysics.cs │ │ │ │ ├── HandPhysics.cs.meta │ │ │ │ ├── HapticRack.cs │ │ │ │ ├── HapticRack.cs.meta │ │ │ │ ├── HideOnHandFocusLost.cs │ │ │ │ ├── HideOnHandFocusLost.cs.meta │ │ │ │ ├── HoverButton.cs │ │ │ │ ├── HoverButton.cs.meta │ │ │ │ ├── IgnoreHovering.cs │ │ │ │ ├── IgnoreHovering.cs.meta │ │ │ │ ├── InputModule.cs │ │ │ │ ├── InputModule.cs.meta │ │ │ │ ├── Interactable.cs │ │ │ │ ├── Interactable.cs.meta │ │ │ │ ├── InteractableDebug.cs │ │ │ │ ├── InteractableDebug.cs.meta │ │ │ │ ├── InteractableHoverEvents.cs │ │ │ │ ├── InteractableHoverEvents.cs.meta │ │ │ │ ├── ItemPackage.cs │ │ │ │ ├── ItemPackage.cs.meta │ │ │ │ ├── ItemPackageReference.cs │ │ │ │ ├── ItemPackageReference.cs.meta │ │ │ │ ├── ItemPackageSpawner.cs │ │ │ │ ├── ItemPackageSpawner.cs.meta │ │ │ │ ├── LinearAnimation.cs │ │ │ │ ├── LinearAnimation.cs.meta │ │ │ │ ├── LinearAnimator.cs │ │ │ │ ├── LinearAnimator.cs.meta │ │ │ │ ├── LinearAudioPitch.cs │ │ │ │ ├── LinearAudioPitch.cs.meta │ │ │ │ ├── LinearBlendshape.cs │ │ │ │ ├── LinearBlendshape.cs.meta │ │ │ │ ├── LinearDisplacement.cs │ │ │ │ ├── LinearDisplacement.cs.meta │ │ │ │ ├── LinearDrive.cs │ │ │ │ ├── LinearDrive.cs.meta │ │ │ │ ├── LinearMapping.cs │ │ │ │ ├── LinearMapping.cs.meta │ │ │ │ ├── ModalThrowable.cs │ │ │ │ ├── ModalThrowable.cs.meta │ │ │ │ ├── PlaySound.cs │ │ │ │ ├── PlaySound.cs.meta │ │ │ │ ├── Player.cs │ │ │ │ ├── Player.cs.meta │ │ │ │ ├── RenderModel.cs │ │ │ │ ├── RenderModel.cs.meta │ │ │ │ ├── SeeThru.cs │ │ │ │ ├── SeeThru.cs.meta │ │ │ │ ├── SleepOnAwake.cs │ │ │ │ ├── SleepOnAwake.cs.meta │ │ │ │ ├── SoundDeparent.cs │ │ │ │ ├── SoundDeparent.cs.meta │ │ │ │ ├── SoundPlayOneshot.cs │ │ │ │ ├── SoundPlayOneshot.cs.meta │ │ │ │ ├── SpawnAndAttachAfterControllerIsTracking.cs │ │ │ │ ├── SpawnAndAttachAfterControllerIsTracking.cs.meta │ │ │ │ ├── SpawnAndAttachToHand.cs │ │ │ │ ├── SpawnAndAttachToHand.cs.meta │ │ │ │ ├── Throwable.cs │ │ │ │ ├── Throwable.cs.meta │ │ │ │ ├── UIElement.cs │ │ │ │ ├── UIElement.cs.meta │ │ │ │ ├── Unparent.cs │ │ │ │ ├── Unparent.cs.meta │ │ │ │ ├── Util.cs │ │ │ │ ├── Util.cs.meta │ │ │ │ ├── VelocityEstimator.cs │ │ │ │ └── VelocityEstimator.cs.meta │ │ │ ├── Shaders.meta │ │ │ └── Shaders │ │ │ │ ├── SeeThru.shader │ │ │ │ ├── SeeThru.shader.meta │ │ │ │ ├── Silhouette.shader │ │ │ │ └── Silhouette.shader.meta │ │ ├── Hints.meta │ │ ├── Hints │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── ControllerButtonHints.mat │ │ │ │ ├── ControllerButtonHints.mat.meta │ │ │ │ ├── ControllerTextHintAnchor.mat │ │ │ │ ├── ControllerTextHintAnchor.mat.meta │ │ │ │ ├── ControllerTextHintLine.mat │ │ │ │ └── ControllerTextHintLine.mat.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── ControllerTextHint.prefab │ │ │ │ └── ControllerTextHint.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── ControllerButtonHints.cs │ │ │ │ └── ControllerButtonHints.cs.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ │ ├── ControllerButtonHints.shader │ │ │ │ └── ControllerButtonHints.shader.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── HintBackground.png │ │ │ │ └── HintBackground.png.meta │ │ ├── InteractionSystem.pdf │ │ ├── InteractionSystem.pdf.meta │ │ ├── Longbow.meta │ │ ├── Longbow │ │ │ ├── Animators.meta │ │ │ ├── Animators │ │ │ │ ├── LongbowAnimationController.controller │ │ │ │ └── LongbowAnimationController.controller.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── ArcheryTargetWeeble.mat │ │ │ │ ├── ArcheryTargetWeeble.mat.meta │ │ │ │ ├── Arrow.mat │ │ │ │ ├── Arrow.mat.meta │ │ │ │ ├── ArrowGlint.mat │ │ │ │ ├── ArrowGlint.mat.meta │ │ │ │ ├── BalloonColor.mat │ │ │ │ ├── BalloonColor.mat.meta │ │ │ │ ├── BalloonPop.mat │ │ │ │ ├── BalloonPop.mat.meta │ │ │ │ ├── BalloonPopLine.mat │ │ │ │ ├── BalloonPopLine.mat.meta │ │ │ │ ├── ItemPickupOutline.mat │ │ │ │ ├── ItemPickupOutline.mat.meta │ │ │ │ ├── ItemPickupOutlineThick.mat │ │ │ │ ├── ItemPickupOutlineThick.mat.meta │ │ │ │ ├── Longbow.mat │ │ │ │ ├── Longbow.mat.meta │ │ │ │ ├── LongbowNotch.mat │ │ │ │ ├── LongbowNotch.mat.meta │ │ │ │ ├── LongbowString.mat │ │ │ │ ├── LongbowString.mat.meta │ │ │ │ ├── TorchFire.mat │ │ │ │ ├── TorchFire.mat.meta │ │ │ │ ├── TorchHead.mat │ │ │ │ ├── TorchHead.mat.meta │ │ │ │ ├── TorchShaft.mat │ │ │ │ └── TorchShaft.mat.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ │ ├── Arrow.fbx │ │ │ │ ├── Arrow.fbx.meta │ │ │ │ ├── Balloon.fbx │ │ │ │ ├── Balloon.fbx.meta │ │ │ │ ├── Longbow.fbx │ │ │ │ └── Longbow.fbx.meta │ │ │ ├── PhysicMaterials.meta │ │ │ ├── PhysicMaterials │ │ │ │ ├── ArcheryTargetPhysMaterial.physicMaterial │ │ │ │ └── ArcheryTargetPhysMaterial.physicMaterial.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── ArcheryWeeble.prefab │ │ │ │ ├── ArcheryWeeble.prefab.meta │ │ │ │ ├── Arrow.prefab │ │ │ │ ├── Arrow.prefab.meta │ │ │ │ ├── ArrowHand.prefab │ │ │ │ ├── ArrowHand.prefab.meta │ │ │ │ ├── Balloon.prefab │ │ │ │ ├── Balloon.prefab.meta │ │ │ │ ├── BalloonPop.prefab │ │ │ │ ├── BalloonPop.prefab.meta │ │ │ │ ├── BalloonPopNoSound.prefab │ │ │ │ ├── BalloonPopNoSound.prefab.meta │ │ │ │ ├── BalloonSpawner.prefab │ │ │ │ ├── BalloonSpawner.prefab.meta │ │ │ │ ├── FireSmall.prefab │ │ │ │ ├── FireSmall.prefab.meta │ │ │ │ ├── FireTiny.prefab │ │ │ │ ├── FireTiny.prefab.meta │ │ │ │ ├── FireWhip.prefab │ │ │ │ ├── FireWhip.prefab.meta │ │ │ │ ├── Longbow.prefab │ │ │ │ ├── Longbow.prefab.meta │ │ │ │ ├── LongbowItemPackage.prefab │ │ │ │ ├── LongbowItemPackage.prefab.meta │ │ │ │ ├── LongbowOutline.prefab │ │ │ │ ├── LongbowOutline.prefab.meta │ │ │ │ ├── LongbowPreview.prefab │ │ │ │ ├── LongbowPreview.prefab.meta │ │ │ │ ├── Torch.prefab │ │ │ │ └── Torch.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── ArcheryTarget.cs │ │ │ │ ├── ArcheryTarget.cs.meta │ │ │ │ ├── Arrow.cs │ │ │ │ ├── Arrow.cs.meta │ │ │ │ ├── ArrowHand.cs │ │ │ │ ├── ArrowHand.cs.meta │ │ │ │ ├── ArrowheadRotation.cs │ │ │ │ ├── ArrowheadRotation.cs.meta │ │ │ │ ├── Balloon.cs │ │ │ │ ├── Balloon.cs.meta │ │ │ │ ├── BalloonColliders.cs │ │ │ │ ├── BalloonColliders.cs.meta │ │ │ │ ├── BalloonHapticBump.cs │ │ │ │ ├── BalloonHapticBump.cs.meta │ │ │ │ ├── BalloonSpawner.cs │ │ │ │ ├── BalloonSpawner.cs.meta │ │ │ │ ├── ExplosionWobble.cs │ │ │ │ ├── ExplosionWobble.cs.meta │ │ │ │ ├── FireSource.cs │ │ │ │ ├── FireSource.cs.meta │ │ │ │ ├── Longbow.cs │ │ │ │ ├── Longbow.cs.meta │ │ │ │ ├── SoundBowClick.cs │ │ │ │ └── SoundBowClick.cs.meta │ │ │ ├── Sounds.meta │ │ │ ├── Sounds │ │ │ │ ├── ArrowAir01.wav │ │ │ │ ├── ArrowAir01.wav.meta │ │ │ │ ├── ArrowAir02.wav │ │ │ │ ├── ArrowAir02.wav.meta │ │ │ │ ├── ArrowAir03.wav │ │ │ │ ├── ArrowAir03.wav.meta │ │ │ │ ├── ArrowAir04.wav │ │ │ │ ├── ArrowAir04.wav.meta │ │ │ │ ├── ArrowAir05.wav │ │ │ │ ├── ArrowAir05.wav.meta │ │ │ │ ├── ArrowAir06.wav │ │ │ │ ├── ArrowAir06.wav.meta │ │ │ │ ├── ArrowAir07.wav │ │ │ │ ├── ArrowAir07.wav.meta │ │ │ │ ├── ArrowAir08.wav │ │ │ │ ├── ArrowAir08.wav.meta │ │ │ │ ├── ArrowAir09.wav │ │ │ │ ├── ArrowAir09.wav.meta │ │ │ │ ├── ArrowFallGround01.wav │ │ │ │ ├── ArrowFallGround01.wav.meta │ │ │ │ ├── ArrowFallGround02.wav │ │ │ │ ├── ArrowFallGround02.wav.meta │ │ │ │ ├── ArrowFallGround03.wav │ │ │ │ ├── ArrowFallGround03.wav.meta │ │ │ │ ├── ArrowFallGround04.wav │ │ │ │ ├── ArrowFallGround04.wav.meta │ │ │ │ ├── ArrowFallGround05.wav │ │ │ │ ├── ArrowFallGround05.wav.meta │ │ │ │ ├── ArrowFallGround06.wav │ │ │ │ ├── ArrowFallGround06.wav.meta │ │ │ │ ├── ArrowFallGround07.wav │ │ │ │ ├── ArrowFallGround07.wav.meta │ │ │ │ ├── ArrowFireLoop01.wav │ │ │ │ ├── ArrowFireLoop01.wav.meta │ │ │ │ ├── ArrowHit01.wav │ │ │ │ ├── ArrowHit01.wav.meta │ │ │ │ ├── ArrowHit02.wav │ │ │ │ ├── ArrowHit02.wav.meta │ │ │ │ ├── ArrowHit03.wav │ │ │ │ ├── ArrowHit03.wav.meta │ │ │ │ ├── ArrowHit04.wav │ │ │ │ ├── ArrowHit04.wav.meta │ │ │ │ ├── ArrowHit05.wav │ │ │ │ ├── ArrowHit05.wav.meta │ │ │ │ ├── ArrowHit06.wav │ │ │ │ ├── ArrowHit06.wav.meta │ │ │ │ ├── ArrowIgnite01.wav │ │ │ │ ├── ArrowIgnite01.wav.meta │ │ │ │ ├── ArrowLaunchFire01.wav │ │ │ │ ├── ArrowLaunchFire01.wav.meta │ │ │ │ ├── ArrowLaunchFire02.wav │ │ │ │ ├── ArrowLaunchFire02.wav.meta │ │ │ │ ├── ArrowLaunchFire03.wav │ │ │ │ ├── ArrowLaunchFire03.wav.meta │ │ │ │ ├── ArrowLaunchFire04.wav │ │ │ │ ├── ArrowLaunchFire04.wav.meta │ │ │ │ ├── ArrowLaunchFire05.wav │ │ │ │ ├── ArrowLaunchFire05.wav.meta │ │ │ │ ├── ArrowLaunchFire06.wav │ │ │ │ ├── ArrowLaunchFire06.wav.meta │ │ │ │ ├── ArrowLaunchFire07.wav │ │ │ │ ├── ArrowLaunchFire07.wav.meta │ │ │ │ ├── ArrowLaunchFire08.wav │ │ │ │ ├── ArrowLaunchFire08.wav.meta │ │ │ │ ├── ArrowLaunchFire09.wav │ │ │ │ ├── ArrowLaunchFire09.wav.meta │ │ │ │ ├── ArrowLaunchFire10.wav │ │ │ │ ├── ArrowLaunchFire10.wav.meta │ │ │ │ ├── ArrowLaunchFire11.wav │ │ │ │ ├── ArrowLaunchFire11.wav.meta │ │ │ │ ├── ArrowLaunchFire12.wav │ │ │ │ ├── ArrowLaunchFire12.wav.meta │ │ │ │ ├── ArrowLaunchFire13.wav │ │ │ │ ├── ArrowLaunchFire13.wav.meta │ │ │ │ ├── ArrowNock01.wav │ │ │ │ ├── ArrowNock01.wav.meta │ │ │ │ ├── ArrowNock02.wav │ │ │ │ ├── ArrowNock02.wav.meta │ │ │ │ ├── ArrowNock03.wav │ │ │ │ ├── ArrowNock03.wav.meta │ │ │ │ ├── ArrowNock04.wav │ │ │ │ ├── ArrowNock04.wav.meta │ │ │ │ ├── ArrowNock05.wav │ │ │ │ ├── ArrowNock05.wav.meta │ │ │ │ ├── ArrowNock06.wav │ │ │ │ ├── ArrowNock06.wav.meta │ │ │ │ ├── ArrowNock07.wav │ │ │ │ ├── ArrowNock07.wav.meta │ │ │ │ ├── ArrowNock08.wav │ │ │ │ ├── ArrowNock08.wav.meta │ │ │ │ ├── ArrowNock09.wav │ │ │ │ ├── ArrowNock09.wav.meta │ │ │ │ ├── ArrowNock10.wav │ │ │ │ ├── ArrowNock10.wav.meta │ │ │ │ ├── ArrowNock11.wav │ │ │ │ ├── ArrowNock11.wav.meta │ │ │ │ ├── ArrowNock12.wav │ │ │ │ ├── ArrowNock12.wav.meta │ │ │ │ ├── ArrowNock13.wav │ │ │ │ ├── ArrowNock13.wav.meta │ │ │ │ ├── ArrowNock14.wav │ │ │ │ ├── ArrowNock14.wav.meta │ │ │ │ ├── ArrowNock15.wav │ │ │ │ ├── ArrowNock15.wav.meta │ │ │ │ ├── ArrowNock16.wav │ │ │ │ ├── ArrowNock16.wav.meta │ │ │ │ ├── ArrowNock17.wav │ │ │ │ ├── ArrowNock17.wav.meta │ │ │ │ ├── ArrowRelease01.wav │ │ │ │ ├── ArrowRelease01.wav.meta │ │ │ │ ├── ArrowRelease02.wav │ │ │ │ ├── ArrowRelease02.wav.meta │ │ │ │ ├── ArrowRelease03.wav │ │ │ │ ├── ArrowRelease03.wav.meta │ │ │ │ ├── ArrowRelease04.wav │ │ │ │ ├── ArrowRelease04.wav.meta │ │ │ │ ├── ArrowRelease05.wav │ │ │ │ ├── ArrowRelease05.wav.meta │ │ │ │ ├── ArrowRelease06.wav │ │ │ │ ├── ArrowRelease06.wav.meta │ │ │ │ ├── ArrowRelease07.wav │ │ │ │ ├── ArrowRelease07.wav.meta │ │ │ │ ├── ArrowRelease08.wav │ │ │ │ ├── ArrowRelease08.wav.meta │ │ │ │ ├── ArrowRelease09.wav │ │ │ │ ├── ArrowRelease09.wav.meta │ │ │ │ ├── ArrowSpawn01.wav │ │ │ │ ├── ArrowSpawn01.wav.meta │ │ │ │ ├── ArrowSpawn02.wav │ │ │ │ ├── ArrowSpawn02.wav.meta │ │ │ │ ├── ArrowSpawn03.wav │ │ │ │ ├── ArrowSpawn03.wav.meta │ │ │ │ ├── ArrowSpawn04.wav │ │ │ │ ├── ArrowSpawn04.wav.meta │ │ │ │ ├── ArrowSpawn05.wav │ │ │ │ ├── ArrowSpawn05.wav.meta │ │ │ │ ├── ArrowSpawn06.wav │ │ │ │ ├── ArrowSpawn06.wav.meta │ │ │ │ ├── ArrowSpawn07.wav │ │ │ │ ├── ArrowSpawn07.wav.meta │ │ │ │ ├── ArrowSpawn08.wav │ │ │ │ ├── ArrowSpawn08.wav.meta │ │ │ │ ├── BalloonBounce01.wav │ │ │ │ ├── BalloonBounce01.wav.meta │ │ │ │ ├── BalloonBounce02.wav │ │ │ │ ├── BalloonBounce02.wav.meta │ │ │ │ ├── BalloonBounce03.wav │ │ │ │ ├── BalloonBounce03.wav.meta │ │ │ │ ├── BalloonBounce04.wav │ │ │ │ ├── BalloonBounce04.wav.meta │ │ │ │ ├── BalloonBounce05.wav │ │ │ │ ├── BalloonBounce05.wav.meta │ │ │ │ ├── BalloonBounce07.wav │ │ │ │ ├── BalloonBounce07.wav.meta │ │ │ │ ├── BalloonInflate01.wav │ │ │ │ ├── BalloonInflate01.wav.meta │ │ │ │ ├── BalloonPop01.wav │ │ │ │ ├── BalloonPop01.wav.meta │ │ │ │ ├── BalloonPop02.wav │ │ │ │ ├── BalloonPop02.wav.meta │ │ │ │ ├── BalloonPop03.wav │ │ │ │ ├── BalloonPop03.wav.meta │ │ │ │ ├── BalloonPop04.wav │ │ │ │ ├── BalloonPop04.wav.meta │ │ │ │ ├── BalloonPop05.wav │ │ │ │ ├── BalloonPop05.wav.meta │ │ │ │ ├── BalloonPop06.wav │ │ │ │ ├── BalloonPop06.wav.meta │ │ │ │ ├── BalloonPop07.wav │ │ │ │ ├── BalloonPop07.wav.meta │ │ │ │ ├── BalloonRubber01.wav │ │ │ │ ├── BalloonRubber01.wav.meta │ │ │ │ ├── BalloonRubber02.wav │ │ │ │ ├── BalloonRubber02.wav.meta │ │ │ │ ├── BalloonRubber03.wav │ │ │ │ ├── BalloonRubber03.wav.meta │ │ │ │ ├── Default.mixer │ │ │ │ ├── Default.mixer.meta │ │ │ │ ├── LongbowPullBack01.wav │ │ │ │ ├── LongbowPullBack01.wav.meta │ │ │ │ ├── LongbowPullBack02.wav │ │ │ │ ├── LongbowPullBack02.wav.meta │ │ │ │ ├── LongbowPullBack03.wav │ │ │ │ ├── LongbowPullBack03.wav.meta │ │ │ │ ├── LongbowPullBack04.wav │ │ │ │ ├── LongbowPullBack04.wav.meta │ │ │ │ ├── LongbowPullBack05.wav │ │ │ │ ├── LongbowPullBack05.wav.meta │ │ │ │ ├── LongbowPullBack06.wav │ │ │ │ ├── LongbowPullBack06.wav.meta │ │ │ │ ├── LongbowPullBack07.wav │ │ │ │ ├── LongbowPullBack07.wav.meta │ │ │ │ ├── LongbowPullBack08.wav │ │ │ │ ├── LongbowPullBack08.wav.meta │ │ │ │ ├── LongbowPullBack09.wav │ │ │ │ ├── LongbowPullBack09.wav.meta │ │ │ │ ├── LongbowPullBack10.wav │ │ │ │ ├── LongbowPullBack10.wav.meta │ │ │ │ ├── LongbowPullBack11.wav │ │ │ │ ├── LongbowPullBack11.wav.meta │ │ │ │ ├── LongbowPullBack12.wav │ │ │ │ ├── LongbowPullBack12.wav.meta │ │ │ │ ├── LongbowPullBack13.wav │ │ │ │ ├── LongbowPullBack13.wav.meta │ │ │ │ ├── LongbowPullBack14.wav │ │ │ │ ├── LongbowPullBack14.wav.meta │ │ │ │ ├── LongbowPullBack15.wav │ │ │ │ ├── LongbowPullBack15.wav.meta │ │ │ │ ├── LongbowPullBack16.wav │ │ │ │ ├── LongbowPullBack16.wav.meta │ │ │ │ ├── LongbowPullBackclick_01.wav │ │ │ │ ├── LongbowPullBackclick_01.wav.meta │ │ │ │ ├── MasterLongbowMix.mixer │ │ │ │ ├── MasterLongbowMix.mixer.meta │ │ │ │ ├── TorchFireLoop01.wav │ │ │ │ ├── TorchFireLoop01.wav.meta │ │ │ │ ├── TorchFireLoop02.wav │ │ │ │ ├── TorchFireLoop02.wav.meta │ │ │ │ ├── TorchFireLoop03.wav │ │ │ │ ├── TorchFireLoop03.wav.meta │ │ │ │ ├── TorchFireLoop04.wav │ │ │ │ └── TorchFireLoop04.wav.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── ArcheryWeebleTarget.png │ │ │ │ ├── ArcheryWeebleTarget.png.meta │ │ │ │ ├── ArrowAlbedoTransparency.png │ │ │ │ ├── ArrowAlbedoTransparency.png.meta │ │ │ │ ├── ArrowAlbedoTransparency.tga │ │ │ │ ├── ArrowAlbedoTransparency.tga.meta │ │ │ │ ├── ArrowAmbientOcclusion.png │ │ │ │ ├── ArrowAmbientOcclusion.png.meta │ │ │ │ ├── ArrowAmbientOcclusion.tga │ │ │ │ ├── ArrowAmbientOcclusion.tga.meta │ │ │ │ ├── ArrowEmissive.psd │ │ │ │ ├── ArrowEmissive.psd.meta │ │ │ │ ├── ArrowGlint.png │ │ │ │ ├── ArrowGlint.png.meta │ │ │ │ ├── ArrowMetallicSmoothness.png │ │ │ │ ├── ArrowMetallicSmoothness.png.meta │ │ │ │ ├── ArrowMetallicSmoothness.tga │ │ │ │ ├── ArrowMetallicSmoothness.tga.meta │ │ │ │ ├── ArrowNormal.png │ │ │ │ ├── ArrowNormal.png.meta │ │ │ │ ├── ArrowNormal.tga │ │ │ │ ├── ArrowNormal.tga.meta │ │ │ │ ├── BalloonColor.png │ │ │ │ ├── BalloonColor.png.meta │ │ │ │ ├── BalloonColor.tga │ │ │ │ ├── BalloonColor.tga.meta │ │ │ │ ├── BalloonPop.png │ │ │ │ ├── BalloonPop.png.meta │ │ │ │ ├── BalloonPopLine.png │ │ │ │ ├── BalloonPopLine.png.meta │ │ │ │ ├── Longbow.png │ │ │ │ ├── Longbow.png.meta │ │ │ │ ├── Longbow.psd │ │ │ │ ├── Longbow.psd.meta │ │ │ │ ├── TorchFire.png │ │ │ │ └── TorchFire.png.meta │ │ ├── Poses.meta │ │ ├── Poses │ │ │ ├── CubePose small.asset │ │ │ ├── CubePose small.asset.meta │ │ │ ├── CubePose.asset │ │ │ ├── CubePose.asset.meta │ │ │ ├── GrenadePose.asset │ │ │ ├── GrenadePose.asset.meta │ │ │ ├── GrenadePose_pinch.asset │ │ │ ├── GrenadePose_pinch.asset.meta │ │ │ ├── HappyBallPose.asset │ │ │ ├── HappyBallPose.asset.meta │ │ │ ├── HappyBallPoseSqueezed.asset │ │ │ ├── HappyBallPoseSqueezed.asset.meta │ │ │ ├── SquishyBase.asset │ │ │ ├── SquishyBase.asset.meta │ │ │ ├── SquishySqueeze.asset │ │ │ ├── SquishySqueeze.asset.meta │ │ │ ├── fallback_fist.asset │ │ │ ├── fallback_fist.asset.meta │ │ │ ├── fallback_point.asset │ │ │ ├── fallback_point.asset.meta │ │ │ ├── fallback_relaxed.asset │ │ │ ├── fallback_relaxed.asset.meta │ │ │ ├── longbowArrowPose.asset │ │ │ ├── longbowArrowPose.asset.meta │ │ │ ├── longbowPose.asset │ │ │ ├── longbowPose.asset.meta │ │ │ ├── spherePose.asset │ │ │ ├── spherePose.asset.meta │ │ │ ├── sphereSmallPose.asset │ │ │ └── sphereSmallPose.asset.meta │ │ ├── Readme_InteractionSystem.txt │ │ ├── Readme_InteractionSystem.txt.meta │ │ ├── Samples.meta │ │ ├── Samples │ │ │ ├── Animations.meta │ │ │ ├── Animations │ │ │ │ ├── BallAnimation.anim │ │ │ │ └── BallAnimation.anim.meta │ │ │ ├── Animators.meta │ │ │ ├── Animators │ │ │ │ ├── BallAnimationController.controller │ │ │ │ └── BallAnimationController.controller.meta │ │ │ ├── BuggyBuddy.meta │ │ │ ├── BuggyBuddy │ │ │ │ ├── Audio.meta │ │ │ │ ├── Audio │ │ │ │ │ ├── AmbientSound.cs │ │ │ │ │ ├── AmbientSound.cs.meta │ │ │ │ │ ├── Idle_loop.wav │ │ │ │ │ ├── Idle_loop.wav.meta │ │ │ │ │ ├── motor_loop.wav │ │ │ │ │ ├── motor_loop.wav.meta │ │ │ │ │ ├── skidLoop.wav │ │ │ │ │ └── skidLoop.wav.meta │ │ │ │ ├── Buggy Controller.fbx │ │ │ │ ├── Buggy Controller.fbx.meta │ │ │ │ ├── Buggy.fbx │ │ │ │ ├── Buggy.fbx.meta │ │ │ │ ├── Buggy.physicMaterial │ │ │ │ ├── Buggy.physicMaterial.meta │ │ │ │ ├── BuggyBuddy.cs │ │ │ │ ├── BuggyBuddy.cs.meta │ │ │ │ ├── BuggyController.cs │ │ │ │ ├── BuggyController.cs.meta │ │ │ │ ├── Lightcone.fbx │ │ │ │ ├── Lightcone.fbx.meta │ │ │ │ ├── LockToPoint.cs │ │ │ │ ├── LockToPoint.cs.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Buggy.mat │ │ │ │ │ ├── Buggy.mat.meta │ │ │ │ │ ├── BuggyController.mat │ │ │ │ │ ├── BuggyController.mat.meta │ │ │ │ │ ├── BuggyController__Controller.mat │ │ │ │ │ ├── BuggyController__Controller.mat.meta │ │ │ │ │ ├── LightCone.shader │ │ │ │ │ ├── LightCone.shader.meta │ │ │ │ │ ├── LightCone_Blue.mat │ │ │ │ │ ├── LightCone_Blue.mat.meta │ │ │ │ │ ├── No Name.mat │ │ │ │ │ ├── No Name.mat.meta │ │ │ │ │ ├── laser.mat │ │ │ │ │ ├── laser.mat.meta │ │ │ │ │ ├── skidDust.mat │ │ │ │ │ ├── skidDust.mat.meta │ │ │ │ │ ├── smokeTurbo.mat │ │ │ │ │ ├── smokeTurbo.mat.meta │ │ │ │ │ ├── unnamed.mat │ │ │ │ │ └── unnamed.mat.meta │ │ │ │ ├── Textures.meta │ │ │ │ ├── Textures │ │ │ │ │ ├── Buggy_LO_Buggy_AlbedoTransparency.png │ │ │ │ │ ├── Buggy_LO_Buggy_AlbedoTransparency.png.meta │ │ │ │ │ ├── Buggy_LO_Buggy_Emission.png │ │ │ │ │ ├── Buggy_LO_Buggy_Emission.png.meta │ │ │ │ │ ├── Buggy_LO_Buggy_Normal.png │ │ │ │ │ ├── Buggy_LO_Buggy_Normal.png.meta │ │ │ │ │ ├── controlerbuggy_LO_BuggyController_AlbedoTransparency.png │ │ │ │ │ ├── controlerbuggy_LO_BuggyController_AlbedoTransparency.png.meta │ │ │ │ │ ├── controlerbuggy_LO_BuggyController_Emission.png │ │ │ │ │ ├── controlerbuggy_LO_BuggyController_Emission.png.meta │ │ │ │ │ ├── controlerbuggy_LO_BuggyController_Normal.png │ │ │ │ │ ├── controlerbuggy_LO_BuggyController_Normal.png.meta │ │ │ │ │ ├── dusty.meta │ │ │ │ │ └── dusty │ │ │ │ │ │ ├── wg_dust_particles_11.png │ │ │ │ │ │ └── wg_dust_particles_11.png.meta │ │ │ │ ├── UI.meta │ │ │ │ ├── UI │ │ │ │ │ ├── BuggyUI.meta │ │ │ │ │ ├── BuggyUI │ │ │ │ │ │ ├── RPMCounterBorder.png │ │ │ │ │ │ ├── RPMCounterBorder.png.meta │ │ │ │ │ │ ├── RPMCounterFill.png │ │ │ │ │ │ ├── RPMCounterFill.png.meta │ │ │ │ │ │ ├── blob.png │ │ │ │ │ │ ├── blob.png.meta │ │ │ │ │ │ ├── steering.png │ │ │ │ │ │ └── steering.png.meta │ │ │ │ │ ├── Roundsquare.png │ │ │ │ │ └── Roundsquare.png.meta │ │ │ │ ├── WheelDust.cs │ │ │ │ ├── WheelDust.cs.meta │ │ │ │ ├── trackCam.cs │ │ │ │ ├── trackCam.cs.meta │ │ │ │ ├── trackObj.cs │ │ │ │ └── trackObj.cs.meta │ │ │ ├── Grenade.meta │ │ │ ├── Grenade │ │ │ │ ├── Grenade.cs │ │ │ │ ├── Grenade.cs.meta │ │ │ │ ├── Grenade.fbx │ │ │ │ ├── Grenade.fbx.meta │ │ │ │ ├── Grenade.mat │ │ │ │ ├── Grenade.mat.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Nade.mat │ │ │ │ │ └── Nade.mat.meta │ │ │ │ ├── ModalThrowable.prefab │ │ │ │ ├── ModalThrowable.prefab.meta │ │ │ │ ├── Nade_Nade_AlbedoTransparency.png │ │ │ │ ├── Nade_Nade_AlbedoTransparency.png.meta │ │ │ │ ├── Nade_Nade_Normal.png │ │ │ │ ├── Nade_Nade_Normal.png.meta │ │ │ │ ├── SunFlare.png │ │ │ │ └── SunFlare.png.meta │ │ │ ├── Interactions_Example.meta │ │ │ ├── Interactions_Example.unity │ │ │ ├── Interactions_Example.unity.meta │ │ │ ├── Interactions_Example │ │ │ │ ├── LightingData.asset │ │ │ │ ├── LightingData.asset.meta │ │ │ │ ├── ReflectionProbe-0.exr │ │ │ │ └── ReflectionProbe-0.exr.meta │ │ │ ├── JoeJeff.meta │ │ │ ├── JoeJeff │ │ │ │ ├── Animation.meta │ │ │ │ ├── Animation │ │ │ │ │ ├── HumanoidIdle.fbx │ │ │ │ │ ├── HumanoidIdle.fbx.meta │ │ │ │ │ ├── HumanoidIdleJumpUp.fbx │ │ │ │ │ ├── HumanoidIdleJumpUp.fbx.meta │ │ │ │ │ ├── HumanoidJumpAndFall.fbx │ │ │ │ │ ├── HumanoidJumpAndFall.fbx.meta │ │ │ │ │ ├── HumanoidMidAir.fbx │ │ │ │ │ ├── HumanoidMidAir.fbx.meta │ │ │ │ │ ├── HumanoidRun.fbx │ │ │ │ │ ├── HumanoidRun.fbx.meta │ │ │ │ │ ├── HumanoidRunTurn.fbx │ │ │ │ │ ├── HumanoidRunTurn.fbx.meta │ │ │ │ │ ├── HumanoidRunTurnSharp.fbx │ │ │ │ │ ├── HumanoidRunTurnSharp.fbx.meta │ │ │ │ │ ├── HumanoidStandTurn.fbx │ │ │ │ │ ├── HumanoidStandTurn.fbx.meta │ │ │ │ │ ├── HumanoidWalk.fbx │ │ │ │ │ ├── HumanoidWalk.fbx.meta │ │ │ │ │ ├── HumanoidWalkTurn.fbx │ │ │ │ │ ├── HumanoidWalkTurn.fbx.meta │ │ │ │ │ ├── HumanoidWalkTurnSharp.fbx │ │ │ │ │ └── HumanoidWalkTurnSharp.fbx.meta │ │ │ │ ├── Animator.meta │ │ │ │ ├── Animator │ │ │ │ │ ├── JoeJeff.controller │ │ │ │ │ └── JoeJeff.controller.meta │ │ │ │ ├── JJHat.fbx │ │ │ │ ├── JJHat.fbx.meta │ │ │ │ ├── JoeJeff.cs │ │ │ │ ├── JoeJeff.cs.meta │ │ │ │ ├── JoeJeff.fbx │ │ │ │ ├── JoeJeff.fbx.meta │ │ │ │ ├── JoeJeffController.cs │ │ │ │ ├── JoeJeffController.cs.meta │ │ │ │ ├── JoeJeffController.fbx │ │ │ │ ├── JoeJeffController.fbx.meta │ │ │ │ ├── JoeJeffGestures.cs │ │ │ │ ├── JoeJeffGestures.cs.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── JJHat.mat │ │ │ │ │ ├── JJHat.mat.meta │ │ │ │ │ ├── JoeJeff.mat │ │ │ │ │ ├── JoeJeff.mat.meta │ │ │ │ │ ├── PController.mat │ │ │ │ │ ├── PController.mat.meta │ │ │ │ │ ├── Platformer.mat │ │ │ │ │ └── Platformer.mat.meta │ │ │ │ ├── ProceduralHats.cs │ │ │ │ ├── ProceduralHats.cs.meta │ │ │ │ ├── Textures.meta │ │ │ │ ├── Textures │ │ │ │ │ ├── JJHat_JJHat_AlbedoTransparency.png │ │ │ │ │ ├── JJHat_JJHat_AlbedoTransparency.png.meta │ │ │ │ │ ├── JJHat_JJHat_Normal.png │ │ │ │ │ ├── JJHat_JJHat_Normal.png.meta │ │ │ │ │ ├── JoeJeff_AlbedoTransparency.png │ │ │ │ │ ├── JoeJeff_AlbedoTransparency.png.meta │ │ │ │ │ ├── JoeJeff_Normal.png │ │ │ │ │ ├── JoeJeff_Normal.png.meta │ │ │ │ │ ├── PlatformController_PController_AlbedoTransparency.png │ │ │ │ │ ├── PlatformController_PController_AlbedoTransparency.png.meta │ │ │ │ │ ├── PlatformController_PController_Emission.png │ │ │ │ │ ├── PlatformController_PController_Emission.png.meta │ │ │ │ │ ├── PlatformController_PController_Normal.png │ │ │ │ │ └── PlatformController_PController_Normal.png.meta │ │ │ │ ├── platformer.physicMaterial │ │ │ │ └── platformer.physicMaterial.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Bouncy.physicMaterial │ │ │ │ ├── Bouncy.physicMaterial.meta │ │ │ │ ├── Grey.mat │ │ │ │ ├── Grey.mat.meta │ │ │ │ ├── LightGreen.mat │ │ │ │ ├── LightGreen.mat.meta │ │ │ │ ├── MeasurementLine.mat │ │ │ │ ├── MeasurementLine.mat.meta │ │ │ │ ├── ShinyWhite.mat │ │ │ │ ├── ShinyWhite.mat.meta │ │ │ │ ├── ShinyWhiteHand.mat │ │ │ │ ├── ShinyWhiteHand.mat.meta │ │ │ │ ├── ShinyWhiteHighlighted.mat │ │ │ │ ├── ShinyWhiteHighlighted.mat.meta │ │ │ │ ├── ShinyWhiteHighlightedHand.mat │ │ │ │ ├── ShinyWhiteHighlightedHand.mat.meta │ │ │ │ ├── ShinyWhiteHighlightedObject.mat │ │ │ │ ├── ShinyWhiteHighlightedObject.mat.meta │ │ │ │ ├── ShinyWhiteHighlightedOld.mat │ │ │ │ ├── ShinyWhiteHighlightedOld.mat.meta │ │ │ │ ├── ShinyWhiteObject.mat │ │ │ │ ├── ShinyWhiteObject.mat.meta │ │ │ │ ├── ShinyWhiteOld.mat │ │ │ │ ├── ShinyWhiteOld.mat.meta │ │ │ │ ├── ShinyYellow.mat │ │ │ │ ├── ShinyYellow.mat.meta │ │ │ │ ├── ThrowingTarget.mat │ │ │ │ ├── ThrowingTarget.mat.meta │ │ │ │ ├── Walls.physicMaterial │ │ │ │ ├── Walls.physicMaterial.meta │ │ │ │ ├── flowerMat.mat │ │ │ │ ├── flowerMat.mat.meta │ │ │ │ ├── flowerMatOp.mat │ │ │ │ └── flowerMatOp.mat.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ │ ├── Flower.FBX │ │ │ │ ├── Flower.FBX.meta │ │ │ │ ├── Furniture.fbx │ │ │ │ ├── Furniture.fbx.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Buggy.mat │ │ │ │ │ ├── Buggy.mat.meta │ │ │ │ │ ├── BuggyController.mat │ │ │ │ │ ├── BuggyController.mat.meta │ │ │ │ │ ├── BuggyController__Controller.mat │ │ │ │ │ ├── BuggyController__Controller.mat.meta │ │ │ │ │ ├── Furniture.mat │ │ │ │ │ ├── Furniture.mat.meta │ │ │ │ │ ├── Furniture_AlbedoTransparency.png │ │ │ │ │ ├── Furniture_AlbedoTransparency.png.meta │ │ │ │ │ ├── Furniture_Normal.png │ │ │ │ │ ├── Furniture_Normal.png.meta │ │ │ │ │ ├── No Name.mat │ │ │ │ │ ├── No Name.mat.meta │ │ │ │ │ ├── fabric 1.mat │ │ │ │ │ ├── fabric 1.mat.meta │ │ │ │ │ ├── target.mat │ │ │ │ │ ├── target.mat.meta │ │ │ │ │ ├── unnamed.mat │ │ │ │ │ ├── unnamed.mat.meta │ │ │ │ │ ├── weird table.mat │ │ │ │ │ └── weird table.mat.meta │ │ │ │ ├── Table.prefab │ │ │ │ ├── Table.prefab.meta │ │ │ │ ├── Table_Round.prefab │ │ │ │ ├── Table_Round.prefab.meta │ │ │ │ ├── Table_Small.prefab │ │ │ │ ├── Table_Small.prefab.meta │ │ │ │ ├── Target.fbx │ │ │ │ ├── Target.fbx.meta │ │ │ │ ├── Wall.prefab │ │ │ │ ├── Wall.prefab.meta │ │ │ │ ├── Weird Table.prefab │ │ │ │ ├── Weird Table.prefab.meta │ │ │ │ ├── floor far.mat │ │ │ │ ├── floor far.mat.meta │ │ │ │ ├── floor.mat │ │ │ │ ├── floor.mat.meta │ │ │ │ ├── simpleLeftHandController.controller │ │ │ │ ├── simpleLeftHandController.controller.meta │ │ │ │ ├── simpleRightHandController.controller │ │ │ │ └── simpleRightHandController.controller.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── Buggy Controller.prefab │ │ │ │ ├── Buggy Controller.prefab.meta │ │ │ │ ├── Buggy.prefab │ │ │ │ ├── Buggy.prefab.meta │ │ │ │ ├── Button.prefab │ │ │ │ ├── Button.prefab.meta │ │ │ │ ├── Flower.prefab │ │ │ │ ├── Flower.prefab.meta │ │ │ │ ├── JoeJeff.prefab │ │ │ │ ├── JoeJeff.prefab.meta │ │ │ │ ├── JoeJeffController.prefab │ │ │ │ ├── JoeJeffController.prefab.meta │ │ │ │ ├── ModalThrowable.prefab │ │ │ │ ├── ModalThrowable.prefab.meta │ │ │ │ ├── TargetHitEffect.prefab │ │ │ │ ├── TargetHitEffect.prefab.meta │ │ │ │ ├── ThrowableBall.prefab │ │ │ │ ├── ThrowableBall.prefab.meta │ │ │ │ ├── ThrowableCube.prefab │ │ │ │ └── ThrowableCube.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── ButtonEffect.cs │ │ │ │ ├── ButtonEffect.cs.meta │ │ │ │ ├── ButtonExample.cs │ │ │ │ ├── ButtonExample.cs.meta │ │ │ │ ├── ControllerHintsExample.cs │ │ │ │ ├── ControllerHintsExample.cs.meta │ │ │ │ ├── CustomSkeletonHelper.cs │ │ │ │ ├── CustomSkeletonHelper.cs.meta │ │ │ │ ├── FloppyHand.cs │ │ │ │ ├── FloppyHand.cs.meta │ │ │ │ ├── FlowerPlanted.cs │ │ │ │ ├── FlowerPlanted.cs.meta │ │ │ │ ├── InteractableExample.cs │ │ │ │ ├── InteractableExample.cs.meta │ │ │ │ ├── Planting.cs │ │ │ │ ├── Planting.cs.meta │ │ │ │ ├── RenderModelChangerUI.cs │ │ │ │ ├── RenderModelChangerUI.cs.meta │ │ │ │ ├── RenderModelHolder.cs │ │ │ │ ├── RenderModelHolder.cs.meta │ │ │ │ ├── SkeletonUIOptions.cs │ │ │ │ ├── SkeletonUIOptions.cs.meta │ │ │ │ ├── TargetHitEffect.cs │ │ │ │ ├── TargetHitEffect.cs.meta │ │ │ │ ├── TargetMeasurement.cs │ │ │ │ └── TargetMeasurement.cs.meta │ │ │ ├── Squishy.meta │ │ │ ├── Squishy │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Squish.mat │ │ │ │ │ └── Squish.mat.meta │ │ │ │ ├── Squishy.fbx │ │ │ │ ├── Squishy.fbx.meta │ │ │ │ ├── Squishy.prefab │ │ │ │ ├── Squishy.prefab.meta │ │ │ │ ├── SquishyBall.physicMaterial │ │ │ │ ├── SquishyBall.physicMaterial.meta │ │ │ │ ├── SquishyDeform.shader │ │ │ │ ├── SquishyDeform.shader.meta │ │ │ │ ├── SquishyToy.cs │ │ │ │ ├── SquishyToy.cs.meta │ │ │ │ ├── Textures.meta │ │ │ │ └── Textures │ │ │ │ │ ├── Squishy_Squish_AlbedoTransparency.png │ │ │ │ │ ├── Squishy_Squish_AlbedoTransparency.png.meta │ │ │ │ │ ├── Squishy_Squish_Normal.png │ │ │ │ │ ├── Squishy_Squish_Normal.png.meta │ │ │ │ │ ├── gooNoise.png │ │ │ │ │ ├── gooNoise.png.meta │ │ │ │ │ ├── gooNrm.png │ │ │ │ │ └── gooNrm.png.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── TargetLO_target_AlbedoTransparency.png │ │ │ │ ├── TargetLO_target_AlbedoTransparency.png.meta │ │ │ │ ├── TargetLO_target_Normal.png │ │ │ │ ├── TargetLO_target_Normal.png.meta │ │ │ │ ├── checker.png │ │ │ │ ├── checker.png.meta │ │ │ │ ├── estimatedOnHand.png │ │ │ │ ├── estimatedOnHand.png.meta │ │ │ │ ├── estimatedOnObject.png │ │ │ │ ├── estimatedOnObject.png.meta │ │ │ │ ├── fabric nrm.png │ │ │ │ ├── fabric nrm.png.meta │ │ │ │ ├── fabric.png │ │ │ │ ├── fabric.png.meta │ │ │ │ ├── measurementTape.png │ │ │ │ ├── measurementTape.png.meta │ │ │ │ ├── oldControllerVelocity.png │ │ │ │ └── oldControllerVelocity.png.meta │ │ ├── SnapTurn.meta │ │ ├── SnapTurn │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── snapTurnArrow.mat │ │ │ │ └── snapTurnArrow.mat.meta │ │ │ ├── SnapTurn.cs │ │ │ ├── SnapTurn.cs.meta │ │ │ ├── snapTurnArrow.mat │ │ │ ├── snapTurnArrow.mat.meta │ │ │ ├── snapTurnFX.fbx │ │ │ ├── snapTurnFX.fbx.meta │ │ │ ├── snapturnFX.controller │ │ │ ├── snapturnFX.controller.meta │ │ │ ├── snapturn_go_01.wav │ │ │ └── snapturn_go_01.wav.meta │ │ ├── Teleport.meta │ │ └── Teleport │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── TeleportAreaHighlighted.mat │ │ │ ├── TeleportAreaHighlighted.mat.meta │ │ │ ├── TeleportAreaHighlightedBright.mat │ │ │ ├── TeleportAreaHighlightedBright.mat.meta │ │ │ ├── TeleportAreaHighlightedLow.mat │ │ │ ├── TeleportAreaHighlightedLow.mat.meta │ │ │ ├── TeleportAreaLocked.mat │ │ │ ├── TeleportAreaLocked.mat.meta │ │ │ ├── TeleportAreaVisible.mat │ │ │ ├── TeleportAreaVisible.mat.meta │ │ │ ├── TeleportAreaVisibleBright.mat │ │ │ ├── TeleportAreaVisibleBright.mat.meta │ │ │ ├── TeleportAreaVisibleLow.mat │ │ │ ├── TeleportAreaVisibleLow.mat.meta │ │ │ ├── TeleportPlaySpace.mat │ │ │ ├── TeleportPlaySpace.mat.meta │ │ │ ├── TeleportPlayspaceVisualize.mat │ │ │ ├── TeleportPlayspaceVisualize.mat.meta │ │ │ ├── TeleportPointHighlighted.mat │ │ │ ├── TeleportPointHighlighted.mat.meta │ │ │ ├── TeleportPointInvalid.mat │ │ │ ├── TeleportPointInvalid.mat.meta │ │ │ ├── TeleportPointLocked.mat │ │ │ ├── TeleportPointLocked.mat.meta │ │ │ ├── TeleportPointText.mat │ │ │ ├── TeleportPointText.mat.meta │ │ │ ├── TeleportPointVisible.mat │ │ │ ├── TeleportPointVisible.mat.meta │ │ │ ├── TeleportPointer.mat │ │ │ └── TeleportPointer.mat.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ ├── TeleportDestination.fbx │ │ │ ├── TeleportDestination.fbx.meta │ │ │ ├── TeleportDestinationInvalid.fbx │ │ │ ├── TeleportDestinationInvalid.fbx.meta │ │ │ ├── TeleportMarker.fbx │ │ │ ├── TeleportMarker.fbx.meta │ │ │ ├── TeleportPlayAreaPieces.fbx │ │ │ └── TeleportPlayAreaPieces.fbx.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ ├── TeleportPoint.prefab │ │ │ ├── TeleportPoint.prefab.meta │ │ │ ├── Teleporting.prefab │ │ │ └── Teleporting.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ ├── AllowTeleportWhileAttachedToHand.cs │ │ │ ├── AllowTeleportWhileAttachedToHand.cs.meta │ │ │ ├── ChaperoneInfo.cs │ │ │ ├── ChaperoneInfo.cs.meta │ │ │ ├── IgnoreTeleportTrace.cs │ │ │ ├── IgnoreTeleportTrace.cs.meta │ │ │ ├── Teleport.cs │ │ │ ├── Teleport.cs.meta │ │ │ ├── TeleportArc.cs │ │ │ ├── TeleportArc.cs.meta │ │ │ ├── TeleportArea.cs │ │ │ ├── TeleportArea.cs.meta │ │ │ ├── TeleportMarkerBase.cs │ │ │ ├── TeleportMarkerBase.cs.meta │ │ │ ├── TeleportPoint.cs │ │ │ └── TeleportPoint.cs.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ ├── HighlighGlobal.shader │ │ │ ├── HighlighGlobal.shader.meta │ │ │ ├── Highlight.shader │ │ │ └── Highlight.shader.meta │ │ │ ├── Sounds.meta │ │ │ ├── Sounds │ │ │ ├── TeleportBadArea.wav │ │ │ ├── TeleportBadArea.wav.meta │ │ │ ├── TeleportGo.wav │ │ │ ├── TeleportGo.wav.meta │ │ │ ├── TeleportGoodArea.wav │ │ │ ├── TeleportGoodArea.wav.meta │ │ │ ├── TeleportPointerLoop.wav │ │ │ ├── TeleportPointerLoop.wav.meta │ │ │ ├── TeleportPointerStart.wav │ │ │ └── TeleportPointerStart.wav.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ ├── TeleportAreaPatternColor.tga │ │ │ ├── TeleportAreaPatternColor.tga.meta │ │ │ ├── TeleportMarker.psd │ │ │ └── TeleportMarker.psd.meta │ ├── Materials.meta │ ├── Materials │ │ ├── def.mat │ │ ├── def.mat.meta │ │ ├── workshop.mat │ │ └── workshop.mat.meta │ ├── Models.meta │ ├── Models │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Abyss.mat │ │ │ ├── Abyss.mat.meta │ │ │ ├── AlienHand.mat │ │ │ ├── AlienHand.mat.meta │ │ │ ├── AlienHand_AlbedoTransparency.png │ │ │ ├── AlienHand_AlbedoTransparency.png.meta │ │ │ ├── AlienHand_Normal.png │ │ │ ├── AlienHand_Normal.png.meta │ │ │ ├── No Name.mat │ │ │ ├── No Name.mat.meta │ │ │ ├── floppyHand Emit.png │ │ │ ├── floppyHand Emit.png.meta │ │ │ ├── floppyHand.mat │ │ │ ├── floppyHand.mat.meta │ │ │ ├── knuckles_right.mat │ │ │ ├── knuckles_right.mat.meta │ │ │ ├── models_hands_vr_glove.vmat.mat │ │ │ ├── models_hands_vr_glove.vmat.mat.meta │ │ │ ├── vr_glove_color.jpg │ │ │ ├── vr_glove_color.jpg.meta │ │ │ ├── vr_glove_color.mat │ │ │ ├── vr_glove_color.mat.meta │ │ │ ├── vr_glove_color_red.jpg │ │ │ ├── vr_glove_color_red.jpg.meta │ │ │ ├── vr_glove_color_red.mat │ │ │ ├── vr_glove_color_red.mat.meta │ │ │ ├── vr_glove_normal.png │ │ │ └── vr_glove_normal.png.meta │ │ ├── handFingers.mask │ │ ├── handFingers.mask.meta │ │ ├── vr_alien_hand.fbx │ │ ├── vr_alien_hand.fbx.meta │ │ ├── vr_floppyHand.fbx │ │ ├── vr_floppyHand.fbx.meta │ │ ├── vr_glove_graspPoses.controller │ │ ├── vr_glove_graspPoses.controller.meta │ │ ├── vr_glove_left_model_slim.fbx │ │ ├── vr_glove_left_model_slim.fbx.meta │ │ ├── vr_glove_model.fbx │ │ ├── vr_glove_model.fbx.meta │ │ ├── vr_glove_right_model_slim.fbx │ │ ├── vr_glove_right_model_slim.fbx.meta │ │ ├── vr_hand_grabposes.fbx │ │ └── vr_hand_grabposes.fbx.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── openvr_api.cs │ │ └── openvr_api.cs.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── [CameraRig].prefab │ │ ├── [CameraRig].prefab.meta │ │ ├── [Status].prefab │ │ ├── [Status].prefab.meta │ │ ├── [SteamVR].prefab │ │ ├── [SteamVR].prefab.meta │ │ ├── controller.prefab │ │ ├── controller.prefab.meta │ │ ├── vr_glove_left.prefab │ │ ├── vr_glove_left.prefab.meta │ │ ├── vr_glove_left_model_slim.prefab │ │ ├── vr_glove_left_model_slim.prefab.meta │ │ ├── vr_glove_right.prefab │ │ ├── vr_glove_right.prefab.meta │ │ ├── vr_glove_right_model_slim.prefab │ │ ├── vr_glove_right_model_slim.prefab.meta │ │ ├── vr_hand_alien_left.prefab │ │ ├── vr_hand_alien_left.prefab.meta │ │ ├── vr_hand_alien_right.prefab │ │ ├── vr_hand_alien_right.prefab.meta │ │ ├── vr_hand_floppy_left.prefab │ │ ├── vr_hand_floppy_left.prefab.meta │ │ ├── vr_hand_floppy_right.prefab │ │ └── vr_hand_floppy_right.prefab.meta │ ├── Resources.meta │ ├── Resources │ │ ├── ReferencePose_BindPose.asset │ │ ├── ReferencePose_BindPose.asset.meta │ │ ├── ReferencePose_Fist.asset │ │ ├── ReferencePose_Fist.asset.meta │ │ ├── ReferencePose_OpenHand.asset │ │ ├── ReferencePose_OpenHand.asset.meta │ │ ├── SteamVR_AlphaOut.shader │ │ ├── SteamVR_AlphaOut.shader.meta │ │ ├── SteamVR_ClearAll.shader │ │ ├── SteamVR_ClearAll.shader.meta │ │ ├── SteamVR_ColorOut.shader │ │ ├── SteamVR_ColorOut.shader.meta │ │ ├── SteamVR_ExternalCamera.prefab │ │ ├── SteamVR_ExternalCamera.prefab.meta │ │ ├── SteamVR_Fade.shader │ │ ├── SteamVR_Fade.shader.meta │ │ ├── SteamVR_HoverHighlight.mat │ │ ├── SteamVR_HoverHighlight.mat.meta │ │ ├── SteamVR_Settings.asset │ │ ├── SteamVR_Settings.asset.meta │ │ ├── SteamVR_SphericalProjection.shader │ │ └── SteamVR_SphericalProjection.shader.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── SteamVR.cs │ │ ├── SteamVR.cs.meta │ │ ├── SteamVR_Behaviour.cs │ │ ├── SteamVR_Behaviour.cs.meta │ │ ├── SteamVR_Camera.cs │ │ ├── SteamVR_Camera.cs.meta │ │ ├── SteamVR_CameraFlip.cs │ │ ├── SteamVR_CameraFlip.cs.meta │ │ ├── SteamVR_CameraMask.cs │ │ ├── SteamVR_CameraMask.cs.meta │ │ ├── SteamVR_Ears.cs │ │ ├── SteamVR_Ears.cs.meta │ │ ├── SteamVR_EnumEqualityComparer.cs │ │ ├── SteamVR_EnumEqualityComparer.cs.meta │ │ ├── SteamVR_Events.cs │ │ ├── SteamVR_Events.cs.meta │ │ ├── SteamVR_ExternalCamera.cs │ │ ├── SteamVR_ExternalCamera.cs.meta │ │ ├── SteamVR_ExternalCamera_LegacyManager.cs │ │ ├── SteamVR_ExternalCamera_LegacyManager.cs.meta │ │ ├── SteamVR_Fade.cs │ │ ├── SteamVR_Fade.cs.meta │ │ ├── SteamVR_Frustum.cs │ │ ├── SteamVR_Frustum.cs.meta │ │ ├── SteamVR_IK.cs │ │ ├── SteamVR_IK.cs.meta │ │ ├── SteamVR_LoadLevel.cs │ │ ├── SteamVR_LoadLevel.cs.meta │ │ ├── SteamVR_Menu.cs │ │ ├── SteamVR_Menu.cs.meta │ │ ├── SteamVR_Overlay.cs │ │ ├── SteamVR_Overlay.cs.meta │ │ ├── SteamVR_PlayArea.cs │ │ ├── SteamVR_PlayArea.cs.meta │ │ ├── SteamVR_Render.cs │ │ ├── SteamVR_Render.cs.meta │ │ ├── SteamVR_RenderModel.cs │ │ ├── SteamVR_RenderModel.cs.meta │ │ ├── SteamVR_RingBuffer.cs │ │ ├── SteamVR_RingBuffer.cs.meta │ │ ├── SteamVR_Settings.cs │ │ ├── SteamVR_Settings.cs.meta │ │ ├── SteamVR_Skybox.cs │ │ ├── SteamVR_Skybox.cs.meta │ │ ├── SteamVR_SphericalProjection.cs │ │ ├── SteamVR_SphericalProjection.cs.meta │ │ ├── SteamVR_TrackedCamera.cs │ │ ├── SteamVR_TrackedCamera.cs.meta │ │ ├── SteamVR_TrackedObject.cs │ │ ├── SteamVR_TrackedObject.cs.meta │ │ ├── SteamVR_TrackingReferenceManager.cs │ │ ├── SteamVR_TrackingReferenceManager.cs.meta │ │ ├── SteamVR_Utils.cs │ │ └── SteamVR_Utils.cs.meta │ ├── Simple Sample.unity │ ├── Simple Sample.unity.meta │ ├── SteamVR Unity Plugin - Input System.pdf │ ├── SteamVR Unity Plugin - Input System.pdf.meta │ ├── SteamVR Unity Plugin.pdf │ ├── SteamVR Unity Plugin.pdf.meta │ ├── SteamVR.asmdef │ ├── SteamVR.asmdef.meta │ ├── Textures.meta │ ├── Textures │ │ ├── arrow.png │ │ ├── arrow.png.meta │ │ ├── background.png │ │ ├── background.png.meta │ │ ├── logo.png │ │ ├── logo.png.meta │ │ ├── overlay.renderTexture │ │ ├── overlay.renderTexture.meta │ │ ├── workshop.png │ │ └── workshop.png.meta │ ├── WindowsHelper.meta │ ├── WindowsHelper │ │ ├── SteamVR_Windows_EditorHelper.asmdef │ │ ├── SteamVR_Windows_EditorHelper.asmdef.meta │ │ ├── SteamVR_Windows_Editor_Helper.cs │ │ └── SteamVR_Windows_Editor_Helper.cs.meta │ ├── link.xml │ ├── link.xml.meta │ ├── readme.txt │ └── readme.txt.meta ├── SteamVR_Input.meta ├── SteamVR_Input │ ├── ActionSetClasses.meta │ ├── ActionSetClasses │ │ ├── SteamVR_Input_ActionSet_buggy.cs │ │ ├── SteamVR_Input_ActionSet_buggy.cs.meta │ │ ├── SteamVR_Input_ActionSet_default.cs │ │ ├── SteamVR_Input_ActionSet_default.cs.meta │ │ ├── SteamVR_Input_ActionSet_platformer.cs │ │ └── SteamVR_Input_ActionSet_platformer.cs.meta │ ├── SteamVR_Actions.asmdef │ ├── SteamVR_Actions.asmdef.meta │ ├── SteamVR_Input_ActionSets.cs │ ├── SteamVR_Input_ActionSets.cs.meta │ ├── SteamVR_Input_Actions.cs │ ├── SteamVR_Input_Actions.cs.meta │ ├── SteamVR_Input_Initialization.cs │ └── SteamVR_Input_Initialization.cs.meta ├── SteamVR_Resources.meta ├── SteamVR_Resources │ ├── Resources.meta │ └── Resources │ │ ├── SteamVR_Settings.asset │ │ └── SteamVR_Settings.asset.meta ├── StreamingAssets.meta └── StreamingAssets │ ├── SteamVR.meta │ └── SteamVR │ ├── actions.json │ ├── actions.json.meta │ ├── bindings_holographic_controller.json │ ├── bindings_holographic_controller.json.meta │ ├── bindings_knuckles.json │ ├── bindings_knuckles.json.meta │ ├── bindings_oculus_touch.json │ ├── bindings_oculus_touch.json.meta │ ├── bindings_vive_controller.json │ └── bindings_vive_controller.json.meta ├── LICENSE ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset ├── README.md ├── docs └── screenshot.png └── unityProject.vrmanifest /Assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmspg/pointxr-toolbox/ad0a73fd887a7e4f6ed3b22b905550f2d4c33601/Assets/.gitignore -------------------------------------------------------------------------------- /Assets/Misc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93001f1cf72a6d242bf8a6970b2a63ef 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Misc/distorted.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:83edcef322c3da3d9c6083f5538a41afd8c4f9f1c32aaf7070d2b0deb47d98c7 3 | size 48112 4 | -------------------------------------------------------------------------------- /Assets/Misc/reference.FBX: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:26524567f15a108117abf542b49dab2bc04dd43ea07ba4dd6d79036e6fd7c978 3 | size 60608 4 | -------------------------------------------------------------------------------- /Assets/Pcx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 217ac68c536d9c04a93295260303b1aa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Pcx/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ff2666a12e1c5e4a82171deb16421e3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Pcx/Editor/Default Point.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 068f66693b9c4b64b8fe01cf78ce88f6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Pcx/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e81c540a9400ec1489dfb1d66025b645 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Pcx/Runtime/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b630145d59c3fd94192dee25504cefc7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Pcx/Runtime/Shaders/Disk.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11860dea8d73e8a498356a573da328c6 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Pcx/Runtime/Shaders/Disk.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa70aa42fa138644c94db9b98ad07105 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e538520026dbf75459e69ad82460c0ca 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4306fb700b7edc4da483bc2773ffb21 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cad92998c5182496e8b989b406d9f156 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/AsyncBridge.Net35.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f61d9c0550c3a1e36e6eaa9bebbc3b5ca701c4e960dc2a92746df792d392140 3 | size 26112 4 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/GitHub.Api.45.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f88b65d56d7542c171548019eb408ae2b9ff10aa54657d71eddc2499384f856 3 | size 750592 4 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/GitHub.Api.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0598ee39acaec9732f0a00bd20528f07855a5298c67f53957bc6ad258c42d815 3 | size 750080 4 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/GitHub.Logging.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e495cb21943c4ea67673c11db54e737d25fd2aa00ef1af37d1df7ccba026759b 3 | size 11776 4 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/GitHub.Unity.45.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4abacb70e20c2f22a43d9cff198f7709f6601f7e3ff4f0aeb6f0f3b9dd7d74ba 3 | size 299520 4 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/GitHub.Unity.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:966ffe7a5f4de501e439b9441fd29d7ceba3b76970f105ed331a6b385674ab3d 3 | size 299520 4 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/GitHub.UnityShim.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:409891774be0755c72effe01a3f47157858ce19fe8cba7e68c913acf0671ed75 3 | size 5120 4 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/Mono.Posix.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bda42c2c2c6d83a5c840d5262bfb1ae0e24e3c1778c96d5ea1ff96a1bb244f70 3 | size 184320 4 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/QuickGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmspg/pointxr-toolbox/ad0a73fd887a7e4f6ed3b22b905550f2d4c33601/Assets/Plugins/GitHub/Editor/QuickGuide.pdf -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/QuickGuide.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d601ecb6855bb432bae2aa49d8fd82e8 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/ReadOnlyCollectionsInterfaces.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:64803681966f009feaab1f02278ac2a38683fc99e88b4247d54d0534f1429b55 3 | size 5632 4 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/System.Threading.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:25a3ec89ffc468c53a44a90ae99c23e1bcff9e5901be74033b4ce794a3202395 3 | size 382464 4 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/big-logo@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e986d8a21f6f621e89885d0e4e28a9c6171e02f2c095fbeb075e22d9b0f40f74 3 | size 9961 4 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmspg/pointxr-toolbox/ad0a73fd887a7e4f6ed3b22b905550f2d4c33601/Assets/Plugins/GitHub/Editor/credits.txt -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/credits.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0188ec438976e5849b40a2c1ce5f20f9 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/eula.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 136dc24f151211d438acee17aff4e934 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/libsfw.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmspg/pointxr-toolbox/ad0a73fd887a7e4f6ed3b22b905550f2d4c33601/Assets/Plugins/GitHub/Editor/libsfw.bundle -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/libsfw.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmspg/pointxr-toolbox/ad0a73fd887a7e4f6ed3b22b905550f2d4c33601/Assets/Plugins/GitHub/Editor/libsfw.so -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/sfw.net.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21feeaa73e42bf03e86525bc5e1b954f4b9a2f16eed58a87c69e576509231480 3 | size 7168 4 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/x64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0ded7adcc817ce489fec07977f16d13 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/x64/pthreadVC2.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e6af724609ef6846982ef717013426c359c455fff324e906d8d55c8bb88d16e 3 | size 82944 4 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/x64/sfw_x64.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f8d586e00ddbe3cfa0cd2446bdd416a65e6c12ef31e7f451af14867b880c0dc 3 | size 182784 4 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99b48d4d4f6a66340ab06bd487d70a45 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/x86/pthreadVC2.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bac4472990c1dc2f037019791bd18888e78a3ae86605f3aae86f812a4d7d4f60 3 | size 55808 4 | -------------------------------------------------------------------------------- /Assets/Plugins/GitHub/Editor/x86/sfw_x86.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:843682e312df272a4222e2ba85f4feebfb0195524f101ef9f636f56ae0e0af21 3 | size 179200 4 | -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02bbc114569866349834318629436b93 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Batches.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7db871cc079d3414b81b88f76a78b39c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Batches/dummy.json: -------------------------------------------------------------------------------- 1 | {"Steps":[{"Reference":"tiki_vox10_out","Distorted":"tiki_vox10_out","Stage":false}, 2 | {"Reference":"tiki_vox10","Distorted":"tiki_vox10","Stage":false}, 3 | {"Reference":"guanyin_vox10_out","Distorted":"guanyin_vox10_out","Stage":true}]} 4 | -------------------------------------------------------------------------------- /Assets/Resources/Batches/dummy.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e230a0129d0dcd54cbea600668e7c798 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/Configs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd15bcd14330a8f45a9ca11b2a829dd6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Configs/dummy.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a513ab1c8bf3ef4bb5b3c73255cbe06 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/Logs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85eac22fbc7a5ae41a97aac28c72a478 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2902fe4a4f3b6e04eb6a82e009c70ea8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Materials/Default Point.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72a72743a69b2304fa5533d8ac98f821 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Props.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab5c6edabccdb4d468ca7e455678b49a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Props/Canvas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be4152d644763e14b8f64af7087ed35f 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/Props/Directional Light.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4868af8401e863342baa89075076b7d5 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/Props/Environment.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df71a24ac683e4342978d95bafd946d9 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/Props/LaserPointer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8201172b399557e4680e4a827f87628b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/Props/Light.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4cc5361f52fa0c479c7053b129d9a12 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/Props/PlayerVariant.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 076b7931a81c61e489ca2d07c27783f7 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/Props/Sign.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e034efe4f027bee44857f5b9aa8eb561 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/Props/Stone.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab66f8b7969d8cb4c8de322748466012 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Props/TeleportPlane.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6106255eea74bac4980748e4b6a0f0ef 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/Props/TeleportPlaneLocked.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71c30bcc88e976240b5f222ddaddb4d2 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/Props/stone_texture.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4609bdd9b9b137f373a112b6124dc60ce4a40a7e0789a33b483bd4ef8babf64e 3 | size 614415 4 | -------------------------------------------------------------------------------- /Assets/Resources/RatingButton.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d53aec2f7490674f9113482df70fb6c 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/SignDistorted.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ba3521b09374484eb5fe481f3bd3df2 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/SignReference.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7036a29e412f974dbe0f17f88a928c3 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/Stage.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bae6dcde6755c4f478fafba62987d30a 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0717cc6eb4afd241a7e1aaa45203739 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/Inspection.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3423a51e9776404d93e1d1fb75a5f5b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scenes/Rating.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6384ec21e7bbb742abfb169f14eba99 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scenes/Rendering.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20bdd0288467f0a45980f192f204314d 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51b028f1c5504314ea5ed6c020afa29c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Capturing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9798f5c402e0cf34a962f8f707c22f63 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Inspection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c99749c6bf1130489acda0ee875052c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Rating.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa0e2626b7ead2e4fa4a42f938fa1e0c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Rendering.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 465b8a4d2192cdd4990016df48c78807 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dab5066f3ba44c24391ec49bbf946a6d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5918a2361ca3f9c4490b6de8f855fff1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c33af0785775d7548b22541da37936fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bac448de04a4f6448fee1acc220e5a1 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_Preferences.cs: -------------------------------------------------------------------------------- 1 | //======= Copyright (c) Valve Corporation, All rights reserved. =============== 2 | //removed and added to the SteamVR_Settings asset so it can be configured per project -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_Settings.cs: -------------------------------------------------------------------------------- 1 | //======= Copyright (c) Valve Corporation, All rights reserved. =============== 2 | // 3 | // Moved to SteamVR/Scripts/SteamVR_Settings.cs 4 | // 5 | //============================================================================= -------------------------------------------------------------------------------- /Assets/SteamVR/Extras.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61f4796ee4f00314e8d8b1ad39a78c28 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_ForceSteamVRMode.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b1775e13a163e146930422a18e54bfc 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_LaserPointer.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2343db151bc3864e9088f8e4230cdc1 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_ShowTrackingReferences.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73743b10c3912094a8a17bc7ac370c15 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestIK.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b6669fb4e4df9c48926f02b694be9d1 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestThrow.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d936163b5e9a5047b5e4ba5afaf5126 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99ee8d48ccf36264e9d9a72baa681249 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fb811b0ffe615b4dbf1d5e6ced385fd 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Icon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37d1a399d1ea2d24c8f27e07036b83fb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Icon/SteamVR_Skeleton_Pose Icon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f4ee50707259442e4a01e6dc53b5ffdec52880f78a57f31bfb964f7293962d52 3 | size 358271 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Icon/_steamvr.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:761f314867d1d49c8f131ca3b1c2f6da61fea23664652b39b6dfd7f8c85e3f34 3 | size 14839 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 034ad660702976d4da58a18ccae19443 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/BehaviourUnityEvents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 353612abd09de3a478236e679e220759 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fed05885250fc2c4daab18c7df3717bf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/InputSkin.guiskin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7836f978f062019499564a455654e74a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d5e740d15d7ca249b884d30ff558bc1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources/Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16f1e3ee1a373e34ea3a84a7afa0a259 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources/Icons/BlenderBehaviour_Analog_Icon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c212341f76f6e80d9708407aa2fb8a1a61baae22839bde6412020dc09e47551 3 | size 1430 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources/Icons/BlenderBehaviour_Boolean_Icon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:59600911c39c3a3e4f003009bdd807642838d71f0211b51e17889b1a1377305f 3 | size 1439 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources/Icons/BlenderBehaviour_Manual_Icon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:83ac6509d56aa6caafe1747c0e1d588238935417c1f74e442843324c4355b9c7 3 | size 1523 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources/Icons/HandLeftIcon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b2b3da599a5714147abfe154e7e2955ddf7f35e65847fba7df97cf853035a459 3 | size 9742 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources/Icons/HandRightIcon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:66a8bb93b2aab97e0059e9c9a3d52f9260e1a538c9cc2433ae47314a7a74f2a7 3 | size 9779 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources/Icons/handmask.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:71a1360032721cac6528b68591bb00ea5f1ff9b4859b38daf8f81b5906d5f978 3 | size 8109 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources/Icons/handmask_Index.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c50c208daba11123abc1f4d93540c0f7a18532dc72acc24e49d998bd97754ea3 3 | size 6244 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources/Icons/handmask_Middle.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ee6da3c35d7ee4198846c0c6e2e799e866eed7e648bd5cc3e51e7963c329be1 3 | size 6287 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources/Icons/handmask_Palm.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:375b25737821bd794282d5b6c5a3d70082c1adf377216670fbe2efb2329951e2 3 | size 6164 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources/Icons/handmask_Pinky.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bbca163caa5e4922a7bfbc3266cadf4da7bf9f9cc605d15b6cbb487a277b3252 3 | size 5949 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources/Icons/handmask_Ring.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6601d46467c2ff9b4a00e67af09997eb1bb54c92c02b935b4c7df2828f41a7a9 3 | size 6100 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources/Icons/handmask_Thumb.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8d053575a3635cb74f3485432e461b3167c3e3266f1102c2dcec2fddb895a89 3 | size 6539 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/SteamVR_Input_Action_PropertyEditor.cs: -------------------------------------------------------------------------------- 1 | // removed -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/SteamVR_Input_Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2476fd5d698aa614194466a3af5d192f 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0142ddd0457153743ba87f4fdd6bfaa7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/actions.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39438ffe60abace49bb41a4ae9c732b8 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/binding_holographic_hmd.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bf9d7fa6f3987e4e9b1a610c756e32b 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/binding_index_hmd.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fab760ff58ade2e45a3ae64ba79b0798 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/binding_rift.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06c05f6a7ccba724faf1abf742ab9013 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/binding_vive.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43fad7e4e7f44884ba9067602d2a8b5d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/binding_vive_cosmos.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da08bf5ecfe08d54abffcb6b22e75322 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/binding_vive_pro.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70b9b61068027ed44ba03cd382badfe6 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/binding_vive_tracker_camera.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 119e4a9328cca524ba289f8978bac7cc 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/bindings_holographic_controller.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90a42dface447e34e9ba2049ee99bdf5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/bindings_knuckles.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fc83bd02dd477f46bab78fdfd4c3193 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/bindings_oculus_touch.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac8ef0844edb47f47a2a8edc62df4eab 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/bindings_vive_controller.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80888c8fe60f72c41bd99822a92c9232 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/bindings_vive_cosmos_controller.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6a5f17813c0ba9469b04d26706046d9 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57e97baa244e64b48a88406a77a552f8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Plugins/JSON.NET.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be52ebe91b1675c4d8a9e228b88f5115 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Plugins/JSON.NET/LICENSE_James_Newton-King.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e849053ce418a6d428ac35039bb8d865 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Plugins/JSON.NET/LICENSE_SaladLab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67d718aebba8c7a46b689029511fb127 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Plugins/JSON.NET/Valve.Newtonsoft.Json.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5c0d896b41de72178ace5e3fce9f7b74977b3504be3727fa3b495166eccd3eba 3 | size 360960 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_DefaultAction.cs: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_DefaultActionSet.cs: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_References.cs: -------------------------------------------------------------------------------- 1 | //removed -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8941a9f98c35d84cb19a5e044467de9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ab2780fe1da2544b86a1020e5f638e2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fcf8377413b60c44afff7b2e4efd8f7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:761f314867d1d49c8f131ca3b1c2f6da61fea23664652b39b6dfd7f8c85e3f34 3 | size 14839 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_feet.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf9e175f5700ffb6bb73cc00ddd1755742568741b9b793dc9e05453b5da6d4b2 3 | size 11011 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_left_hand.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea2c290be7aa9df4dd4e3e13f1ec88191e43e0b24faa0a01708ee9ee9c4e8035 3 | size 10034 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_left_hand_question.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e76a38e8335f84e32fd90a0ecfc5b4e8c9819cfecb455ff92b23b23967160f88 3 | size 11809 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_right_hand.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d96acf42841f71b8e63be677becd16558d8543ef8724217e2af1b10915324cf 3 | size 10163 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_right_hand_question.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:feb7ce26eec9d58b5e5e790b0795def7284a92479aee962260239cccc6f9b0cb 3 | size 11971 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_unknown_hand.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb35c9d96deddc945b1f977a0fbf40eb98111c1e0cb6ba1f2d75c2beed27ef0f 3 | size 13315 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05a69997deb9f5944a894239434f00a9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Materials/FallbackHandIndicator.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e995e61de69d8647ae2b2d65eceab3f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Materials/HoverHighlight.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b939e5e799d98a469f594828ebab52e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Materials/SeeThru.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bbb445147c574240a8b87a1193788b5 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Materials/SteamVRControllerModel.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c433e134e4719444b65bf064a77e22e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d60d25020af6fb4f8d436244db7cc4b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs/HandColliderLeft.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73f816dd3537a4c44988f340a5da70b9 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs/HandColliderRight.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f378ddf4e9373548a3708d26c1d75a4 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs/LeftRenderModel Alien.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8d1e5711b2c77d48ac96e769aaff27a 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs/LeftRenderModel Slim.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5082f7d9f947374197e0a97786f4e40 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs/LeftRenderModel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ade79fed86bbd141926d1cd94c98457 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs/LeftRenderModelFloppy.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 534d2fcf558316441a41841275676807 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs/Player.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc06161b6d97feb419f45f03b62e14b9 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs/RightRenderModel Alien.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3cb7e5f55e66cb40aea59db72c62365 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs/RightRenderModel Slim.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 837f93beb9a614743ae3a2c0ada7c388 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs/RightRenderModel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d07386f0ec952ec409dc7753bcf5746b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs/RightRenderModelFloppy.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c5fea2300124fe49a30168e29627064 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77a23888f82e2ab4c8bc825f20235e1e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4939542f83f4e84f8604e20bce42eba 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30dfcd9dafb9bea459e0b03505e418a1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2300d431cc9116478ccc8bb42061072 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Materials/ControllerButtonHints.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11b050e661ec0cf48a289a7266451e91 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbecae3d442b2b0478f2e6a2afc24059 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Prefabs/ControllerTextHint.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fa42bb9e52706a42b8a1eaf0b54326a 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f511b02628aaca43be0aecee58c1b71 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1375c26e5558daa48ae7ab8a8117cbe1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fa11a15b6830ea40808c51f7a5f0a4e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Textures/HintBackground.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0349b426c6ef077c9037a28a15d14b5b8d09e445e87d416e4ee9f1214d2383aa 3 | size 165 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/InteractionSystem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmspg/pointxr-toolbox/ad0a73fd887a7e4f6ed3b22b905550f2d4c33601/Assets/SteamVR/InteractionSystem/InteractionSystem.pdf -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/InteractionSystem.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 124a48a5a1579224481a3f34686d56e4 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee2359d7e6460d4449d8b8c70d3045b4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Animators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44a536d7fede4b140b3647935ea8c8fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38392bbe7ae2c464daae1fe24a1147c1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/ArcheryTargetWeeble.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ae132d3c08907a4d931b3ed4debc646 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/Arrow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7cd62d595c763c428123f260c78b711 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/ArrowGlint.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3004e0c0e5df074abcb3548fd812bfc 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/BalloonColor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 406981998f1234442a4f2eb50cfe07e1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/BalloonPop.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d01d8c885250364bac66a45791f02e1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/BalloonPopLine.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25bc1e9c1d9042d4781cb174093aaaed 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/ItemPickupOutline.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d938759d8b7a414988ec3261fb5265d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/Longbow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 921837a5408991d429e86efc66f8be6b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/LongbowNotch.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5be56a64c3c6c434eb746320e06a27ac 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/LongbowString.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40fa752affdc6cf45a47396764154085 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/TorchFire.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fff76eb68ad4c44b87be9e2ca168a80 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/TorchHead.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67c31797bbf07114eb2d50aa3ae184e9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/TorchShaft.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24e73955ba8338f41a24cd3aea0285a6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f4c3e904395a784199b9a0e3166fd96 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Models/Arrow.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f68f3439a26778b5669c5238bede000e546f2839bfd9bf440350542dfbc0155 3 | size 69600 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Models/Balloon.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7964036344ff0950ef4b17fe2272d8037a6577a3f062e0a31c2c70e1054bfdc2 3 | size 67056 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Models/Longbow.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5765c2bd241514c95b13b749b875ba934e2333584e215faabdbd1bab48c3fc93 3 | size 1818209 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/PhysicMaterials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c360cf037a4ff3f4cb643392da004156 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4acc435c26639c4fac0c4358c455259 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/ArcheryWeeble.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fe1fef3cfad86946b3a549d6934330b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/Arrow.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81fc1450441aca64e8cc1a0e14b1aa77 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/ArrowHand.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d410d7126dd411c4ea651fc94eae9202 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/Balloon.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e13c6e5a21aeea4db3c25ef0e529308 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/BalloonPop.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d2dddaae5c812841accc43e4da1fccd 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/BalloonPopNoSound.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a41945a8549c580408301691c2fd374e 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/BalloonSpawner.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01c670ceb931d524b9a80b70652eb18b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/FireSmall.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9471d2206e57ca246a4bf982f3c29c8f 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/FireTiny.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6990c59ffac7cf4b87f644ab4782007 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/FireWhip.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: daf28736fcb032a44b7a5c1fd0a27b15 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/Longbow.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1f5f898fbfdb80478825ce9b01fe8ae 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/LongbowItemPackage.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98a3ad29136d5c04f8a025adf1cbd704 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/LongbowOutline.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9d299b8c6aa86242bec9a060f7e2d81 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/LongbowPreview.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5b684916cfe6804985d74652a2af09f 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/Torch.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 380bbbca09a806c4c8607dd111d9ed8f 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6596adb54aab23a40abe01461d35a26f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5c78ec7a0919a445ad9472465dc95e3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bc2f24a72cc0c751d1cc00090462972e6852b39ce56fc62b7ee1f1cb8476cdea 3 | size 52328 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir02.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e36e2f72d07e895f06137669143e579208c9153279853cc2139b37b9fdedfab 3 | size 63154 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir03.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31945ca91498d0c3a10c29c90b7687b5e2c3afbedf689786353517fad3a8eb74 3 | size 46016 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir04.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1345b49d3a38c890f637bef54fac2095ababcc1c7b42ec4d5567604e0edc2afc 3 | size 88320 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir05.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67d8e5111dcb71b8ccdf7ce301fb7b47295c07783f909c8c85fe8f5766a1f05e 3 | size 68438 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir06.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac621ea114f2d18db4dd9e5523cf370e82c7027a4fb72008436149bc3ceef1e1 3 | size 76140 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir07.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7032bacd523df23b4c6134a3af9fe98e6e69d19bf3d4bf465f03679713e6b103 3 | size 53884 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir08.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73a6f602cabc8bdb3e649f98e4554b1d7bd75e56b819544e35dbd9c83b461a1b 3 | size 53884 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir09.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9598e74f24e87efc2799a9d3d9192765357e35d21db438d3cbf2eea78c158f0f 3 | size 60978 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73655d27a03478c50ad6e1fdf79b43c20fdc0d3a4af7a174b12233e05f4d153e 3 | size 74410 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround02.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d518becff556f41747dfa7cbaedbca8b26057eeceff90e448ee588a7ae259487 3 | size 97652 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround03.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f72ad3538e1c247a10a31efae35f6fd4c171bd1d1daed894a73851e33fa887ee 3 | size 93478 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround04.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:05d4d89b6865a24e8fdc549161a6ced4b37824b1f6bd9faf3ef014941d2cb94d 3 | size 88978 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround05.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a496ca738c3f69325f3cf5841cb2d066bbaf1fe768fccbc4e3bc1e0a18e1d9c6 3 | size 94110 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround06.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c02ae3c16305f13434aa4627a13f33f83eeab39d46edfc3a207fd16b0f7c1e18 3 | size 91608 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround07.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f988e70cb3ef0d39cb62d630b45937f5f2890b1d08ac62f3ecb002c6586e647 3 | size 103356 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFireLoop01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0266a2201649084dc29a51e259a0dfe00a20f578bb4485fb4fa894fa7afdb75 3 | size 1138104 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba3ee09e6cbd36be0888a826d5783cfde0ed1142c53dd64ec2d6f5cab91e7f43 3 | size 70914 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit02.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49927365ebe39a9d6883ef6d392462c43bb4b011ca07dbfb303b32b0b976690a 3 | size 88320 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit03.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:23fa64e19e4b671550ce2bc842f2a299f2c6508d25c21a16932477aed3f150c0 3 | size 88320 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit04.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1eca0c7343874c46023924d72ba1e9aab3cab20a75df364b395d9642d9327f42 3 | size 88320 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit05.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2ba0bde2362d9ef4ac9880c035c5a73d045911829aad3d8b9062fb28ecfe9179 3 | size 102924 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit06.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc9270e09adf42573e8c1c0ead04e3f2703ff760c6603f28dfeed3a5d60a8f12 3 | size 65204 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowIgnite01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:52eadc4757c40b5923fb2b9bc2dcc508f79b72c46b749d3588d651e9f3284ae0 3 | size 560556 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:80cb4331c1bac474deed8902ada6ba42b5cfa708a22b535fb0766ed617056278 3 | size 457964 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire02.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:23709b19f34ada267061f9228135f72f2434234a6833994d1f46c1e926b639d6 3 | size 468164 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire03.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:550eed1a9e4492ee2407f2d5827f1e709de5f3d9d108a65c9737ffb57f72695b 3 | size 491680 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire04.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a6e0539a116e3337ca04e51a32752e8d95490b17a32e78c31f3f0df43808993 3 | size 512612 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire05.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:855f000754134ea245333b3d3b876955ef6da670afd91d057f64d703073367e3 3 | size 669892 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire06.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b404e9a3e049dcc104e00924aa645df86ff85d9858d338eb6505035b328f726b 3 | size 415010 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire07.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:30953a39dce23510bb6fabf6afbddfff9020afeabd94fa9b0c0f46b5b30d03b9 3 | size 382144 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire08.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5568f3f33eb742fe759272131024ae98e6d0e9e12e9d8c977e54a1613f1c2bb7 3 | size 422578 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire09.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc23e31b36624f391ff64c3c989a454357ab21ff8876ad3752f2ebf43f64408c 3 | size 283224 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire10.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d889292bde10fc21b033ed61423c1e62537d0a61b43e82f78f56a20a53874df8 3 | size 324836 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire11.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9aa2db80e4e67aeddfa8f0b98710bf1557ec8890575a19067431b14ad11714f 3 | size 338696 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire12.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:363a8739956bcfb3ab19b7d23ac8e1833c4cfcc456d23613f152eb3dfa470593 3 | size 318488 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire13.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad38fcd3823e6a9ab0ffad851bd3c2cbc208253f4b2f08885e652744aeed1832 3 | size 370420 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b7a8f25cb04fdb24ec527dc598dd3eaa84c981779b0d81138f25b2680be7e20 3 | size 46954 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock02.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67ee6d8afc56cad77b972b5a98f7df990e0f89e65ae79dabe2281aeb2b4e5dee 3 | size 55304 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock03.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9407319ae0a27a21b59ecdd557b406dabb05a198cde59b571d3bcd24199d61c5 3 | size 18500 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock04.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:197fe903ab9f5ddca71c82f97e6914072b0e0f7cd2b0de15fa794645d3a2e713 3 | size 56492 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock05.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa14d43f539bfa521ddbfcf54f565253d034076f5cf3fbb036638a1fe5ccf66c 3 | size 69020 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock06.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c105ff41b3aaff2bcf46f17594b311ab8f84e9d1a18595510e559518a7c6955d 3 | size 25204 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock07.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6da36ef7eb3a02cf13a7086511fa5fce7b841b8652d08f54580e82aaa1474ada 3 | size 42690 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock08.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:750644cba8fc0ae8695d2559cda9b498605827a1e96a23da117259c7f4561bd0 3 | size 67062 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock09.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fdedff2fd301d2419719b8d95f300cec8764398c3207a86f05ef8237c101d4c8 3 | size 78556 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock10.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d172fbdbba103b23eaf05fbde500a4f47b496099dbaa8c13478986b7827af02 3 | size 27446 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock11.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b90e69d5e622d389a5cf6979179d59be7479f8902ed542b63005ad8cf624b70a 3 | size 39994 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock12.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5c491bf4ae30c1d1d3231c7574eae540999a5a1d7926587afee4ffb63fd01f3b 3 | size 45068 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock13.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:021dd851f96f39d98ebeeb994a62c3af3ecd38dfc100c8e226a08b3fda2f119f 3 | size 24796 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock14.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b59163dea0f5bfc74a2f38a227be2c65bba380d5ccb6c803b2159e91da7260f 3 | size 24058 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock15.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24da7633390b67dd66a5a91cef2fadcbef5f44a864c6839fc3931ecfb9c557db 3 | size 28382 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock16.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd20a324cff523be8dbe0e20112a2fc61d5d48621525c7dc4a70b58c07a6987f 3 | size 35614 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock17.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4dcf4723a3eb5219a78d0ca320b780fcd0b508fdce75334fc8045a11348cc96 3 | size 36024 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd612f911146c515637ef95f0d7898570d7a45c63c624635c3cbab4f6aa80950 3 | size 112854 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease02.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:78a4df648cc74ab182cf6521327b1df2c793d9510cb797c7113b1e79bbacfd58 3 | size 79962 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease03.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a56dccefa44d87641e624445d90ad1d0c7f455e376bf40c25ac359326c8e38a 3 | size 117502 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease04.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79081eec8a064bd2762b9bfd0d3d613374f3189ab001878879ec2f97102b6d47 3 | size 132772 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease05.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0604d658b0fff641be409d7f8e2254909545ec75f1fc0d8b30f1b26ac027b1f2 3 | size 156292 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease06.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fcbf7f5b4360f7be45826ee33aed80f9b3da672949449d50cfbbada6de386495 3 | size 113542 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease07.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12b541e331bc612c0fb51b23b257c30aef6996e29d6af9d46cc6b8ffdcf0a72a 3 | size 85118 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease08.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2bb9dab76599aaa6db0b03eecd7b57138213cf4712900d06656b2e60f0dbeb5e 3 | size 118882 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease09.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7e95e34e723c3b772b499f4b2daa18aa782210f8a9d7e7dc581e9b77c9b143c 3 | size 135528 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7a9236556177f2ffc9462e30396e9c5bbf5873b2eb6f250c49e85465c486183 3 | size 91496 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn02.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4d1421bb0de86441bea868cbf456347b0eccecd8b73bc09cefa94cbfac468b1 3 | size 118100 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn03.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d71c3006a5ae838b7e3d4d6de9fd8ebaff5889ec01f73375e32c40748b3a5b52 3 | size 61884 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn04.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:40f1b78bd8ae7c702b5fefea81cc2953769c8f387309719a7b9077783eeb1d90 3 | size 116554 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn05.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d400414a6a91c5a793554519ad479591e6ebc66cda79ab1bfc5933c8526dbc33 3 | size 107668 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn06.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6202c3bfd024baff5347906ff7137a58ebad9aff1de93a8c22b2f395baaf9dd7 3 | size 72016 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn07.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d440543ed06100c50754dc78baeccdec0eafc4758bc98bc3382d1dbfe7a5035 3 | size 105458 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn08.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:994ccf1c1dbb10d9dbb8b122d10a3b3fd0d1355bc583cdf3c8476cbd8e1c82c0 3 | size 154336 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb2e213459d1b18f0e0047b44939c215d2257bf47ef980ea370bd6be826d71dd 3 | size 34344 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce02.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44f0b477d6cb48a5be02989dbefeb90dc4747be98cf26e44e9888aef3088bd3c 3 | size 37884 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce03.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e32c71806565aaaeec8ded7402276cf9b7fcfeb4e7b5d1f438c3a30c9e7b399 3 | size 32982 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce04.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e1b7d73852d132df326751043a5bb6a06da2351a24a9645b507764fd5ccd88a 3 | size 42074 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce05.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:43e5dbb76d3b2482af78371b0d882699edbdd05100f174f858aa201d270b197b 3 | size 46148 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce07.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:faa37b563a2a3e56f5a310c89cf6042ab5e921853c19864d04a753aad7476207 3 | size 47686 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonInflate01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:87f742a02613f46bbaa211f43ecd927dd50545381db3b5b1699181b49dad0cba 3 | size 143244 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b183e69e72b0818a8a366202e4772c4f5649ee77285200c37195391f8e0877d 3 | size 150448 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop02.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5432a0e73b470583104c2b62a69b065cd35f6b23a5179675e317ab3bf14a2a4f 3 | size 184900 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop03.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0b2c6b891a2578f518ffa7ee7203e5374946ffcbca3b3d35af59099267c86db 3 | size 184900 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop04.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:39d0f678b67e10480d21be507900e3e6d9825ffbb6ee52b0360b5ed534763d8a 3 | size 132762 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop05.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab0a821bf0168e20e45022916d6706d194fa0e26444bf0128b10fabb578f542a 3 | size 95196 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop06.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:476efba9f59c59ba02ac24ad80ccbba25b7c53a84e1daa4e312f864eca14993f 3 | size 111246 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop07.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f1d824bc46acc6926730e9313c14d225e6916fe2583f8feec737168547c5c69 3 | size 104424 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonRubber01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea4d71d8bcad340616126aa885d081431afc2520317e98518a811107af10e18d 3 | size 324164 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonRubber02.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1700211589f59d0b0772201b58711c57d6d084f603dc36562507d27d27343830 3 | size 264726 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonRubber03.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c004d1280ab12fa8c774dd6e1aa53ae7e3fa4ee863947bdfb3f1db195df59ac 3 | size 499690 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/Default.mixer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec12f7772c03e4c4c9e4c2f1643595ad 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:018969400d36f794f638ba31a2267a44a09264e764857e7f99e9644bbd8d8ee0 3 | size 92240 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack02.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:709d2fd0342503a827ce5676786f9f23b12103145ea25b688d08b13b974bc16d 3 | size 48962 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack03.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d221add6f82085180d57218cf8fc071f685a3a6dd29216a355bae33c3eaec25 3 | size 70602 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack04.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4c31ba209383129ad4c2825b1b0d357ab221483589a93ce3cabf586adbccc478 3 | size 68720 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack05.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:827d06d9fa35456b968c4424154144b169b64f81e9439ed76b3c18dcbca7e0e5 3 | size 70602 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack06.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:324bae1188b4014810e3868e3d78456d435c72e819013a83967a3ea851557f0d 3 | size 76246 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack07.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2547398fd0938af953067031f412538879bd632df02d204f717e110d4082ad42 3 | size 92240 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack08.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a6044f8d17072922fa3e2114eae364e8372fc0e38375e746ac9ccdbfaf49201 3 | size 55548 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack09.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:557e8782e3a21e690ed29180ec3f8425a557b9ecb9268f1b125ae374fc78c472 3 | size 119250 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack10.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f56f196d1b0e999a9bcd5bda6ca9776dde2001dad189d54b0f79e77c79f48c6 3 | size 104552 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack11.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89125c8e955b2b9f1f038865c4bdfa2889098586dd7fa001eadeeca79c0301df 3 | size 95196 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack12.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb291c7da879945ce26e784b4b8f07c14e29f07f1eb97a4796a62bb9022130b9 3 | size 128354 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack13.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:83a9fb27d94dbe940905268e1b0e81eddf130b3f178bf533804a6ed6b4fb8ba1 3 | size 100930 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack14.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6ea02b98aab11964d0ca9b0c1f841342892ea5899ffb098b47cd9a009eab432 3 | size 85482 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack15.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0becfc5f7bd25875d07102d5c079f737c3f3ed908dedd64346332389d62801ef 3 | size 104998 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack16.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f3fe9cf3fc971210d0ebc10172beb27f4f1178969b4cdbf318d1bd72d095e9f 3 | size 117244 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBackclick_01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b630d2ce1eeddd565d57e27339a214999210a96edd4fc379a2589efc0f822891 3 | size 6778 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/MasterLongbowMix.mixer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95096f29d1ddcd647ace66f3641d42f5 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/TorchFireLoop01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7dfd575a142a9cceeb954321ddd198cfecd16ec151ea3b87961e70e82d9b9782 3 | size 1591396 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/TorchFireLoop02.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4c6acfa638ac4065d722f1264625b39b4dc760a76fcedf303e7cd7d2fd98647a 3 | size 1101272 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/TorchFireLoop03.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:43e948f60202bdfa1d2e2d06e02585520445b723b07549101b0c35303173a434 3 | size 767736 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/TorchFireLoop04.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b61c7fc74377c99ed47826b2a81524cf6e59f3b3c0b363b56d583764062902a0 3 | size 684946 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cab18f37a1da964ba73601017942665 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArcheryWeebleTarget.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d79ba379b86479d02471bcf35dc23ed457f9681f911f7179e5c891042f30fcd0 3 | size 97050 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowAlbedoTransparency.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a86cd3ed09afb4f29b9b542a8f2104076f92f0e5ab01c8f8ca7eaad4420b14b7 3 | size 1304900 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowAlbedoTransparency.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b8613d7de1395e46fc446015cfbdcee371de715a2b655d6c31b6f1ed00865bb 3 | size 4194348 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowAmbientOcclusion.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:30e4926752d48940a63a1987402fd5aff1546b6159e3f3dd5f8f3f5004bf0b35 3 | size 283115 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowAmbientOcclusion.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6a225f17b81827b484febd37eadca73be8932954b608616ac320071591e41d46 3 | size 4194348 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowEmissive.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df1c7492077ffe5442adff1cfc08c702be8fdb341c4f6945cfb412dc3857fc6a 3 | size 3366349 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowGlint.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf8d13a84f6e01cdd5223fb5c7b1071d71dae418ed9badcb5106475c0a4272c7 3 | size 8951 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowMetallicSmoothness.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:26629e28c14e87df5ebebe4835b962b2ced8ec971e557f2e3aca7e6a663e0e5c 3 | size 1065929 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowMetallicSmoothness.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d21312c17f494ca60631de31fe43e705ffbd706c08d3a29624f29cf4d320a00 3 | size 4194348 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowNormal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f5dffdc577716b307e235f794c1d25eda6ab3b61635093e4f12f8354bbcdd78 3 | size 872921 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowNormal.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42e169b3cb263e079de9d355149f357f7275207efa1a71031fb9b018feb68b6f 3 | size 4194348 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/BalloonColor.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5705c4c2973e770bc5707cc0e7500ace1fca737d1f0b322c6139001352822771 3 | size 758714 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/BalloonColor.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f900822736e855c8e6ef65d678b50f7de398f067ab8be886c4d1844e04e9cd9e 3 | size 12582956 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/BalloonPop.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49b52a965e63c8a90cec4873488c3b5c29c33f012ae3360d0e061c07861ef8c1 3 | size 508 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/BalloonPopLine.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6bb7bb93f61df400f22e3b673e1817405dd894e7a31722cb517f1f448f42e273 3 | size 233 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/Longbow.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e41de5bc4f6a0d1f72332887af7675c7c14308db05c9d003d70213d98e7c037 3 | size 847207 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/Longbow.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0795275229c6f70c7e153bac09dd5c8dd65817c5dd42a38b6ce213ee7c5e87a7 3 | size 12472020 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/TorchFire.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:119644a4c1dfc9b4651f29fb69299f326083d03f539520b8ce556d85e4e2c110 3 | size 6978 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b845c6101242f294192ab9e1cc40909d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/CubePose small.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cdeed11f422d6e40a765c2f1a8a32d1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/CubePose.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7698ce6c9a8924f4c810d69991a6789c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/GrenadePose.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd65db1a4d6b7894a8fccb2ebfda0fe2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/GrenadePose_pinch.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99c9269b2d9df784c990f84ae9ae1e87 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/HappyBallPose.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5faebc5465b41b641bf7285f25ce9ab9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/HappyBallPoseSqueezed.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6dc41a1d6d2a48e41a7adc3e27f1a9ff 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/SquishyBase.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8576ff2e3da53743b7694fbfe3ad743 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/SquishySqueeze.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e89c10566133f4049b9923e9f4d6f50f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/fallback_fist.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45a635d0e1a43f14da0eb032aeb8dbcd 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/fallback_point.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 416ca9f76f309e5478daf527e55b0c80 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/fallback_relaxed.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 213b7d69786635c498d1287c5505990e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/longbowArrowPose.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12d7f50e857b2f44a87430b50a8a0c25 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/longbowPose.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b11bd330216ce2944a1928a54925d7de 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/spherePose.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c3a83da33c30f44b82278a7f4ae8bd2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/sphereSmallPose.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccd16738d1f943640aa2aed1071a3897 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Readme_InteractionSystem.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 771a37fff499d604b9560d415e371d5e 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd2dd58615e1ced41ae3178451fab370 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Animations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ad10a5377ae04748b1455a7184c6971 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Animations/BallAnimation.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40c8cba0bc8712e4ead8747ee58dd141 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Animators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1c0e3b33fba81e4f854a8bc367fc1d7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2ede97d35408b446b567eb753cba05c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Audio.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 799b165f6666fe24e944441f98ed79bd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Audio/Idle_loop.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:825271e00f420011a631af52372a620bbaba82d53c2e941f5b5c46897237669e 3 | size 838648 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Audio/motor_loop.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e94ec0c3fe2b2da4f76a9a004ef9faaabcccca2f1f2adbcc591f3cdf7e08c89b 3 | size 167474 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Audio/skidLoop.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8baf42317c4ef228d901a559fe989da0402d4615d50863a95470ef293fe4228a 3 | size 561264 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Buggy Controller.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:43b49797bc844083ef371a5224a38b90f4d4a6b566d23cc50a4b16942edc52ad 3 | size 70300 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Buggy.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d1c88a726d49c87b3cf8f882af4a02ef6ee9eebe9631b5b01192e7a89056d86a 3 | size 147660 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Buggy.physicMaterial.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 746d6c07f9b5b31468ae26c7ecb41b59 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Lightcone.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:601112afe09effda217e47970e5588f1f6e0116e22090bb8c2c7bc0aa1bd580d 3 | size 17324 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 390174fc372a2bc41a4ee782e77e942c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Materials/Buggy.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 184c631c36a048645a062ccc181de83c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Materials/No Name.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 844c81ac9d93a8c4bb495bccb4a0da0c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Materials/laser.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 753a9b80e714a8a43a0c1ff5a89d0bc9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Materials/skidDust.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45d09ea4c61aed440b7a87114d4b9233 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Materials/unnamed.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14ed578262aab0047a2bf66c3949d2eb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 350297c4c04292d4aa525a2bbad07847 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Textures/Buggy_LO_Buggy_AlbedoTransparency.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c49045db49e7655adc1c52fdbffae10d4c013c75fe78b3e4fb136e4efadf2db5 3 | size 746240 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Textures/Buggy_LO_Buggy_Emission.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:efb100c8b146f82f21c5a1ee7c9075e37b19b1239b32e5b785cf9d83709749dc 3 | size 20843 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Textures/Buggy_LO_Buggy_Normal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0903b1ed8d8a499b207b1f256d1553b9967bf5eb63edcd2297d413dc98d86691 3 | size 675196 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Textures/controlerbuggy_LO_BuggyController_AlbedoTransparency.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ba2706f501295b90676b03683c70260f1fc017fc865800e024177a642c8d131 3 | size 407126 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Textures/controlerbuggy_LO_BuggyController_Emission.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7d0b21e700a42490a013b9abb2f92bc1506634cff2797ee64a72cc02bdf5c63 3 | size 43589 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Textures/controlerbuggy_LO_BuggyController_Normal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4646984e36f30536ef57ef32e93061f7f8a35902255c014746b2fe6247e855c7 3 | size 494781 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Textures/dusty.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6aa2ed8df5165241b6227226515a737 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Textures/dusty/wg_dust_particles_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d19745aeb39e85b3961ba287d20e5f560f4e92fc2b22238532097744119f370 3 | size 143787 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60a692c107d3cf545ac2684f3ac985a7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/UI/BuggyUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50b83366305082c48ace4916ef659e7c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/UI/BuggyUI/RPMCounterBorder.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ccf85e2fb8fb7ce72fd8d05c8541113cc79325a3cb1c1d5419c2e88408db0a5 3 | size 19507 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/UI/BuggyUI/RPMCounterFill.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53bf161fe24153fb9c7ed0d47401d711687006404db2ea1d739717e326ad52f5 3 | size 17592 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/UI/BuggyUI/blob.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1abb60455ce6af10bf33b29b891a070e1d93cc904e5a23ea27e23dad60250c4f 3 | size 18045 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/UI/BuggyUI/steering.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5997effc2f56ba10997331f3bf3e09fb0689b6041cb6c50a188ffbce35a37f3 3 | size 34720 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/UI/Roundsquare.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a56760bf9d70f98a04e8a2f683cf29d4820407bf5b1ff3e3b05f1fed2305ecf 3 | size 9933 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Grenade.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22af0dbe12a5d8b47ad8228e1327c222 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Grenade/Grenade.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b9cf8cccf46890c748b2b1969f8eb3803f23cfbea06b9238bc2f13f2a23f4e8a 3 | size 32860 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Grenade/Grenade.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7156e712e2c3e7944a1ccdaf56734abb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Grenade/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2591cad2d40cb5c48879685ad504e1f4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Grenade/Materials/Nade.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb837f621778eb443be0269b165d237b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Grenade/ModalThrowable.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7c2b37096983fb40addeabf8a2aefbe 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Grenade/Nade_Nade_AlbedoTransparency.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8872995391c375bf3ce9ee93f8a20990563db66aff1fc03dbeb2dc4e20374b84 3 | size 378396 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Grenade/Nade_Nade_Normal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e8352bf66a4998b68447974b4a156304958f6a53462a43656c9d833351704c4 3 | size 515677 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Grenade/SunFlare.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:476eb44e88b04df1782e6238e11b31f664ed00c8d86d312f6ee67d2d9995cac6 3 | size 232904 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Interactions_Example.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b3ee0e8968f48f49a7e58606fa6cf91 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Interactions_Example.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3b77830391f10343929883b18f4d5ae 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Interactions_Example/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmspg/pointxr-toolbox/ad0a73fd887a7e4f6ed3b22b905550f2d4c33601/Assets/SteamVR/InteractionSystem/Samples/Interactions_Example/LightingData.asset -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Interactions_Example/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmspg/pointxr-toolbox/ad0a73fd887a7e4f6ed3b22b905550f2d4c33601/Assets/SteamVR/InteractionSystem/Samples/Interactions_Example/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64d7a808e6ea3744592d24f15535c369 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8ca6ab14f81dea45947ca54b19ec60c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Animation/HumanoidIdle.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55c5d08704969f926602ba46de9370d2e02f70fb456a0691290e63991f0a7fef 3 | size 1411008 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Animation/HumanoidIdleJumpUp.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a5b4bd552a135146187d011c68c617554076e73cef41592313d665f794b67492 3 | size 467824 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Animation/HumanoidJumpAndFall.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff1d45c9ae4b5d5eb6cf9cce87116f5dabdb28b72a4b1bb275e5efce6b3cf2e0 3 | size 957744 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Animation/HumanoidMidAir.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89fab31bc5b8423573432171d65e97d20b788933164958474c7698a8091d8437 3 | size 654976 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Animation/HumanoidRun.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0370d1e2f887533d3c306fbfb325e3a52019c7316b9aa0475d4b9f8bfc8b7886 3 | size 972704 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Animation/HumanoidRunTurn.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c3488e1ef8e517e8c2de02c68cdc37b582c29fa417ea8705b385569601d499a1 3 | size 657424 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Animation/HumanoidRunTurnSharp.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6bf3450e2d88dbfbd15eb39ed65d7d5644ce7d97dc6eedc0d5bd987748ee4ead 3 | size 534944 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Animation/HumanoidStandTurn.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4912bc19915b2e63f808a5f15020978126ea6043b75cd52b93d84d10d51523a1 3 | size 1130880 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Animation/HumanoidWalk.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ceab209964e2f0226100d065e8c2995d452e713ef5d3578b36292895f2affeae 3 | size 732176 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Animation/HumanoidWalkTurn.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff13e179c16459d94eb102fd6ed6da40793ea6ceb356e24d6f254d94146fc180 3 | size 657216 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Animation/HumanoidWalkTurnSharp.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81eab5c1bc5be00f37375b30b8b5239210cf5dc3badedffca850a68383bccde7 3 | size 630256 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Animator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a267ba8aedae6994492da3e5f601fdb3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/JJHat.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ec391125fbd43682325643ac0eb55d0090baabbd28e141ec46b71288b3a2ab4 3 | size 82716 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/JoeJeff.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:969bc40096fba3376d853232673f98e86c2bc5b49c9fabeef062ddeb9536aa32 3 | size 266620 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/JoeJeffController.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f5d1054deccde3058b651700246b95ad4764f86623eb5c0c92e478d7ae24cd70 3 | size 30220 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88900f0c9fbcdd6478d04ef4a7e54647 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Materials/JJHat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 782e025f2916bcc4eb141c1fb67c13f6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Materials/JoeJeff.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50cdd0e6236971841b9868ca3c32ac0b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Materials/PController.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76f42063ac80e7e45aa27bebda813768 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Materials/Platformer.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 622239b2608324a43ad125e8ed14becc 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6f5cc3b2f45c5d4497de1866dc02d12 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Textures/JJHat_JJHat_AlbedoTransparency.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b893ce49ce3790f1c83b06c6926fea8070b5ff2f45529ecd5a738097aef00357 3 | size 732109 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Textures/JJHat_JJHat_Normal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f260f854639278772288fe7cd64a78093f85fc42b81bf4721de7b9e51a507f36 3 | size 1149913 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Textures/JoeJeff_AlbedoTransparency.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef2f42bbaf445fd4184c0c027c249e1eaaecba9665bb43cc85827ff22debf03d 3 | size 1035020 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Textures/JoeJeff_Normal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9c300f9f8d23ee7fd510fad314dede740d703ba14cd7d33e8884288deb0cebe4 3 | size 1215501 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Textures/PlatformController_PController_AlbedoTransparency.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:edb7ea360b5052f6c88949a9b78213fa75461e78a86fadc75993f4d2a4b2e42d 3 | size 76525 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Textures/PlatformController_PController_Emission.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8f3407f194d86c2045d6e2129f445a95b41357067c82ed051f6e2f9757d5e16 3 | size 43431 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/Textures/PlatformController_PController_Normal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e69e8da1642cea143b9c4deabfb9b551b8a68a35bc42f91c968d4e7e53ba8b6 3 | size 197442 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/platformer.physicMaterial.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c96990a8e2f1cc4ea46b9383d26bb7f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 452b45a02bfe51243a19acb7251c865b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/Bouncy.physicMaterial.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e81b378186c0ed4c98c04cfd4096914 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/Grey.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07bcd4e0597eb0648b7a45624f2e0594 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/LightGreen.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80a6bae7122d17d4c9243b982a652788 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/MeasurementLine.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7541a5776f7b9844c9a765c45f6e0940 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/ShinyWhite.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e90f10e44a186a49a00679d068515ed 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/ShinyWhiteHand.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ebf65e069a3d3f4bbb68b42e5c4840e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/ShinyWhiteObject.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae954e68e9b70844292f588d1397a7f7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/ShinyWhiteOld.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 649eefdf1f621454985e3af87eb76b8f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/ShinyYellow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f5766a8b67794141ac19c1a51d27083 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/ThrowingTarget.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 374354984cbc08b47ba979c830d8e59d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/Walls.physicMaterial.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0aa34d7d628bdb04082aa16112cc8fd1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/flowerMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0308a1af4b58be146947cb7f05f0b7cd 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/flowerMatOp.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d353000128b08f043bdec7830acdb165 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f4815448fea8a84d99c4b54cd5587ed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Flower.FBX: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b19421ebf114e3cdfd9cfb2fdc37d47e7bab1e24977d7d2ab3cccd23a006d79 3 | size 104883 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Furniture.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37ea09b214a000f428044e8e39316bc0db3d54064e55ac8efb01e39fc6b2a916 3 | size 47180 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2ac1adfad6668349b1d7b52cc295805 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Materials/Buggy.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cc6faa5da68f3c41b00285c704d3e06 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Materials/Furniture_AlbedoTransparency.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:494d5e8e6bd1faff8954ef23e656e0233bb9be8c972e7b9c587b65042e356f94 3 | size 1488246 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Materials/Furniture_Normal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38b62801f3d3e9990ff2f71447a5b3f6bfb027b178345e16d1c43700935ba17c 3 | size 1616347 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Materials/No Name.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d35a9f69ebf49c547abfcb58ee6fb9ed 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Materials/target.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bb9548183013a045a3a576bd7740d4f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Materials/unnamed.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21caec5e9129c334db1cc10e5cb06a88 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Table.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f11886bad7ca13742ba0be955318d952 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Table_Round.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7af05fa230061c4da07e8ceda602506 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Table_Small.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 390115dc286a84d4b82719333a0ff570 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Target.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a5a983a951c98d9c67ff8256156edc939ef631ce1ad66f214e5ffe4e17546bbf 3 | size 22572 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Wall.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f8a76d2be4d1cb40a9aa32921fcb73c 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Weird Table.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57e966daf1b02b746ac71933c6ef56b7 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/floor far.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f841239f1ca9b4941918db7c8d5ccb8c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/floor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b41d1116a101a84499296ce28d16e6b9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1a38babac376b7418f11ad0254a0cf2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Prefabs/Buggy Controller.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9803cc69067105488f4a78449f2aeec 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Prefabs/Buggy.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e914d8e31fa95b488c87df17e68d504 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Prefabs/Button.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88075a54c7fb1484ba25db394b612917 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Prefabs/Flower.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a2487c189a464148aadc3af2effa7c8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Prefabs/JoeJeff.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48530aab98abaa541acf2cf3f3f06d20 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Prefabs/JoeJeffController.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b209c30bc3eb7884781069adc59ed447 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Prefabs/ModalThrowable.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ef7df74839e54a4d84fc052b94e2fdd 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Prefabs/TargetHitEffect.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ada35c93b68ad004d9b4e7bd686cf189 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Prefabs/ThrowableBall.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0b086fbb874df143b6ac8f53cea5424 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Prefabs/ThrowableCube.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb710a001890d9a44bb74a8ce4f20cc0 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39bd76f2a1f5f3d4fa65ddb1d3c4e978 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Squishy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b6cb73554b08ce40803f7d5aaf49617 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Squishy/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ab0251ebdac4c6418bf4b0fb7a2de1b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Squishy/Materials/Squish.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83d971dc1e971294db95113fe0ecbdd4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Squishy/Squishy.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3aafd8261548e26ce6523e2bcbe17c91537b7af4aeac2a152aadd0ea013c4f1d 3 | size 319868 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Squishy/Squishy.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d7627d70abb4e247b7d958e6634b2f1 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Squishy/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30f4aba0a2951c443989387963f8b0a0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Squishy/Textures/Squishy_Squish_AlbedoTransparency.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a307083d559eb6ede028d2d61240f71b6d22d08121b000f7454144790df4c66 3 | size 697461 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Squishy/Textures/Squishy_Squish_Normal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50453d0656ff17feb54e821564caf2f8d33777df3eb0b9e396bfb0d58ee95264 3 | size 581018 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Squishy/Textures/gooNoise.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a007c3e55033893027a3bdd758eb08f809b4338add88cbab07e9fadbfd4d9418 3 | size 147988 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Squishy/Textures/gooNrm.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f515b6f487f897727d63690880de6c43b6358ac08308b7e880aca15a1e516f3b 3 | size 9258 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 303c0377fb1be1b4bac98a420b0d62bd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Textures/TargetLO_target_AlbedoTransparency.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6da3b141c30bb76b03cd2752de03165ffe54806ec398b6797dd7d7cf883f752c 3 | size 1158672 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Textures/TargetLO_target_Normal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1dae10a503d8cc5dffbd4687a5fe4b37ab54edb49c7cc65d8021b97461106ed 3 | size 1240699 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Textures/checker.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f4b1d9b8ac0b80084534945fb40e40b27b4faac7d1a921655c744f1b98bf8e66 3 | size 261 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Textures/estimatedOnHand.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:649984c29e6e82670ffb6edf6383bf4986391d1abdbe16785a0e8138994bb586 3 | size 10027 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Textures/estimatedOnObject.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a53e68c831cc9120e1f707ba0b0d22ce897a88ec81fdaa884a80c9a30e9efbf8 3 | size 9252 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Textures/fabric nrm.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2b536593cc5d5137683aab05e14f15c7497c0bc56d1b5fa281b82874e67c32e 3 | size 80767 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Textures/fabric.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2b536593cc5d5137683aab05e14f15c7497c0bc56d1b5fa281b82874e67c32e 3 | size 80767 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Textures/measurementTape.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cb55a056c390bbefd6c2852443954e2ec20d236156e35936752e9c769d0fbd3f 3 | size 1747 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Textures/oldControllerVelocity.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:00c3bf5804deb4ff41d9ccf1deef8a6d040ec542a11d4637963c56f86cfa98bc 3 | size 8456 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/SnapTurn.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cf3b74194e86324aab598b62bb3d2a1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/SnapTurn/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f833381992f014a4bb240bec0f0748f0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/SnapTurn/Materials/snapTurnArrow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bbd832b13230de459422d3264b929c7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/SnapTurn/snapTurnArrow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1e683e8bf011f94ab3c2f6d097aa87c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/SnapTurn/snapTurnFX.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:acf83eea5270f086897298cdee497ee9f999b14f1ac9b7acb589ba9f4730f97e 3 | size 79932 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/SnapTurn/snapturnFX.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24592bbd7bf3c5c489c70fba25d75ee0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/SnapTurn/snapturn_go_01.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44f4f316650c95efd1b6779f0f9251bbc24abc2af0ed10a94859cf0a04055d28 3 | size 108876 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f105d731b4539940bf471aeb837ac94 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7aaf325fc9c2739499d94017488bd120 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5d8794b03b325e4eb7f26642c221012 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Models/TeleportDestination.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8bff236d1f5d366c92a5f66ee908d9f4f74933ef6d96d3e4804c1a1f80699fec 3 | size 117846 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Models/TeleportDestinationInvalid.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f5f0bc7f36e0655866de82c4f183c9865d2e1a0a76ef1c8ed7b724216f69e2a4 3 | size 84784 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Models/TeleportMarker.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9dc17c4ab53d0c4bdf4e3c21cbf3dfe84f8e9fad8c384d53952dd14a2de33e7 3 | size 63760 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Models/TeleportPlayAreaPieces.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:edc2d47adcbc666a1e98516c07f321935e684f0b9408152ea3f05a7cabec6436 3 | size 13931 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 068e188dddb83fb489788207ff119e08 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Prefabs/TeleportPoint.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73ac470d3d909d645a6c89a4664b6849 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Prefabs/Teleporting.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a135b1a2cb9c8f488d4dd00c55ab283 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4c4a2a27a81a8047ab1987a441abb3e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15041afb62e0f4f4382863e73ff1eeb5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Sounds.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95cdcc94cf9ba8348b4384b840e4c54c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Sounds/TeleportBadArea.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5451e840add40cac12af538a6490c434abdbc9993ff10e141eafca58bf8a64dc 3 | size 88108 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Sounds/TeleportGo.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6420606febe92e77ae13dc8e23e3490eddbe87c1fb617dc5d738a0c4858fa152 3 | size 326120 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Sounds/TeleportGoodArea.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57e7e97aa9bfe75708802a96c06cd8404a1903144e3ec7e87c20bf79d16fec27 3 | size 95480 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Sounds/TeleportPointerLoop.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c70e95e4cacc491cbf294d208f0baaf4271991a456076f939deaee187892013f 3 | size 95092 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Sounds/TeleportPointerStart.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55bec1ab7ffd7c0fec3531eac22d7b282a3372bc8ca2ce744dc799cb6668c3b2 3 | size 95018 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0339153ea7d8a9e4b8411691b9a95fdc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Textures/TeleportAreaPatternColor.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:988de72d793a9ec02b4d99be0d48884f2049e994436988f9de7d5824796c7f73 3 | size 27661 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Textures/TeleportMarker.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29b6cacdf88e4ee59da1fc14876b6921249fe8417037f649b7afe93a43cd59d2 3 | size 259215 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1459d94e0a5b7af4a8a3fa067ae575e9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Materials/def.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70c66109a93f33a4ead799f58a6b9ef5 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Materials/workshop.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 712cd3a70a5a1da41a6594aac6a97abe 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19ab935e9cd6f4f4d8cf203de711c870 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e22ff154806908042974022eba8106a6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/Abyss.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b01d7c0e4dfa854eb5dfe2624e27c0f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/AlienHand.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ceb48f72b3325c74e95838fb760d0ab0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/AlienHand_AlbedoTransparency.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:83646e13b5099db8587521be20a2f5e1778e2d2f4279c37492d46cdd113ea8f5 3 | size 997353 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/AlienHand_Normal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f976ab75424b474e079981726c4d6f23634ba9429c1b790ef4322fc0aa3b32dc 3 | size 790497 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/No Name.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25505c45cde55ab4581c30195145adc8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/floppyHand Emit.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6a4ff4880a7cf25a3643ab53dfabc14c3a2cb859fbebdca34c16b6cd383273e1 3 | size 175680 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/floppyHand.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1f5a7b9d67d8354799973d55caf81ad 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/knuckles_right.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc89eae32e82ada4b873dd07678c67e8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/models_hands_vr_glove.vmat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fad1eadf5b103e94ebbe02490afe0503 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/vr_glove_color.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a9e3100f4175c8d209704677d9f00c3f44945328fcaa7d4c7dcb7ea81643f9c 3 | size 710197 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/vr_glove_color.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbe636ca800df264c9fb91dc95fbd9e0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/vr_glove_color_red.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:60cb6ad99b09c28d4aef4b002ecce4c05b7754a44a12b071133bcae906d40c48 3 | size 698059 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/vr_glove_color_red.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f32b3d74401443479c643e48c21915a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/vr_glove_normal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c87a895127acd849b9f1c5795e8294dbeebcafc69d888317713f55e7809128d8 3 | size 2298961 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/handFingers.mask.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 822c72f828488434a89ef1d2b9372069 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_alien_hand.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:36068e87ea25b74b660ef09e25cb39891787bd59542dbcad1cc674f335dd42b4 3 | size 139468 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_floppyHand.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:202ad57d3261253fc775df00d07135815c8082e321489ba95d3b8e1ba352e1b1 3 | size 69292 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_glove_graspPoses.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42369a307decda842a4a92cfbad72afe 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_glove_left_model_slim.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1bd11bc17fe11555a4f55875ea5f93095e3adf56fea4ce194b89555ec04a83f8 3 | size 654080 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_glove_model.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6592f2488049a479402263a44e663a5f7c503117127f58ee45a5040aa831ec52 3 | size 442864 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_glove_right_model_slim.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f0296506aead5641c11804716504587cf4335d6658d298ba796440183351e1dd 3 | size 647536 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_hand_grabposes.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8543d88e19f985a4b3061ebfaaab30515d33c4f8d82cc557bf6c2c1c5fb582bd 3 | size 1013948 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2a747d8f314a8449a70c1fb1807f8dd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e2543c4beea3eb4e9ea1e02a4bc2df2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/[CameraRig].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d293c8e162f3874b982baadd71153d2 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/[Status].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 255333d57084e4e46b3d948279746a47 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/[SteamVR].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f35fa249b5008c44ac2998be6f82d4d 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/controller.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e789c2cc0c98a4c4198a4033fb8ccf96 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_glove_left.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 057574477c20401448aba7c848873712 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_glove_left_model_slim.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 638779290bce1af49b356f33dcc6fccf 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_glove_right.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5dc81ef5cae96304586abbc6e4b5beb8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_glove_right_model_slim.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6def53d002137b747aec0b29551e0e25 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_hand_alien_left.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78cacad1b5fb93349a980d2189b52b89 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_hand_alien_right.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2330dd3e2bcb44428f727270af1d625 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_hand_floppy_left.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85d52d9937d11064295294895b28d068 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_hand_floppy_right.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48a64ca49a112494fa864087de12b75c 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40af2f692be87864ba388a27fcac9ed8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/ReferencePose_BindPose.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9303872ccc6946c4185bc4b432372ba0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/ReferencePose_Fist.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5923b268404ed1c46a82b541e44c52af 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/ReferencePose_OpenHand.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d93b955753287b048b63d232fa679470 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_ExternalCamera.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b259143c09ffc447ad059e5b8d8cf89 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_HoverHighlight.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f7b904f6bd0b77429148042b0254530 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ace4efb9dad5b374b9235c4f28ae4e7d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d88af1b1098a33a42bc43c910c864102 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Simple Sample.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55f0e497bac1408458ff9dcebe0b775a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/SteamVR Unity Plugin - Input System.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmspg/pointxr-toolbox/ad0a73fd887a7e4f6ed3b22b905550f2d4c33601/Assets/SteamVR/SteamVR Unity Plugin - Input System.pdf -------------------------------------------------------------------------------- /Assets/SteamVR/SteamVR Unity Plugin - Input System.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e80151adba6ecc94e803d63cce6d4e6a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/SteamVR Unity Plugin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmspg/pointxr-toolbox/ad0a73fd887a7e4f6ed3b22b905550f2d4c33601/Assets/SteamVR/SteamVR Unity Plugin.pdf -------------------------------------------------------------------------------- /Assets/SteamVR/SteamVR Unity Plugin.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ba9eb35fe420f941a0a79beb7519713 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/SteamVR.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fbf338ef6b952a448262a7ff7df5fe4 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abfc00e0350ad744083849e2d7ae06ee 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/arrow.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ca542c627f8f93b608e2ef45e5f0cf4bb8ecbe746b5bf7cf8aa2dac0345370e 3 | size 5292 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/background.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e3cd844a55cd96e11cf5314a9c7c6bc03d5f575e333df151130151bdb0519e11 3 | size 11479 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/logo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6b626c0841a7fab65031bdcad7212f9d30a05fec92717e85f086455172864c4 3 | size 430238 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/overlay.renderTexture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 005ed5a6df2f5ff468efd6497d37fefa 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/workshop.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7cdb6225c5ffe15b0f4a7de4d4712eb0a8d19c88d03e06462ccb679b2d4ce097 3 | size 324451 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/WindowsHelper.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6af8d944026470c48ac90a7c192872bd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/WindowsHelper/SteamVR_Windows_EditorHelper.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 256e975f9c776644aa4d86bc0c894f33 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/link.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Assets/SteamVR/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5e87ce4f88401c409839447b0f8e0f8 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a51c3dbd81ecb6741b7a2c5b06dbcb2e 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR_Input.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91f2a2a91fb88544e9c1bde681ca2848 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR_Input/ActionSetClasses.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 912dea7464ea2ae4ba1f7bd7af70c15f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR_Input/SteamVR_Actions.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8b634f2da311c34ba638a9949812081 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SteamVR_Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0c26e4a4aff1b5418161fbcd8f1d07d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR_Resources/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5074679fcb029c64aabada3b21465619 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR_Resources/Resources/SteamVR_Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 772cfd4b027606d46b7e5a94576fbdc0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06f402842242a9542a1f7638bc547f17 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd28449db445fe44a80dc68316ad4971 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/actions.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 748b69fbe2181c644956c741f8d8675d 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/bindings_holographic_controller.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4bd15146875dd94d886728c420007de 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/bindings_knuckles.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46d04ee791838214c9b565e6f39189a2 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/bindings_oculus_touch.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8442cf1105eafc54ba1bd07450f05961 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/bindings_vive_controller.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 021e752933453c9409d1b7b8bec62d9c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.3.0f5 2 | m_EditorVersionWithRevision: 2019.3.0f5 (44796c9d3c2c) 3 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmspg/pointxr-toolbox/ad0a73fd887a7e4f6ed3b22b905550f2d4c33601/docs/screenshot.png --------------------------------------------------------------------------------