├── .gitignore ├── Assets ├── OVR.meta ├── OVR │ ├── Editor.meta │ ├── Editor │ │ ├── AndroidManifest.OVRSubmission.xml │ │ ├── AndroidManifest.OVRSubmission.xml.meta │ │ ├── OVRBuild.cs │ │ ├── OVRBuild.cs.meta │ │ ├── OVRManifestPreprocessor.cs │ │ ├── OVRManifestPreprocessor.cs.meta │ │ ├── OVRMoonlightLoader.cs │ │ ├── OVRMoonlightLoader.cs.meta │ │ ├── OVRScreenshotWizard.cs │ │ └── OVRScreenshotWizard.cs.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Arrow.mat │ │ ├── Arrow.mat.meta │ │ ├── CubeMaterial.mat │ │ ├── CubeMaterial.mat.meta │ │ ├── cursor_timer_material.mat │ │ ├── cursor_timer_material.mat.meta │ │ ├── gaze_cursor.mat │ │ └── gaze_cursor.mat.meta │ ├── Meshes.meta │ ├── Meshes │ │ ├── Cone.obj │ │ └── Cone.obj.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Cursor_Timer.prefab │ │ ├── Cursor_Timer.prefab.meta │ │ ├── OVRCameraRig.prefab │ │ ├── OVRCameraRig.prefab.meta │ │ ├── OVRCubemapCaptureProbe.prefab │ │ ├── OVRCubemapCaptureProbe.prefab.meta │ │ ├── OVRPlayerController.prefab │ │ └── OVRPlayerController.prefab.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Unlit Transparent Color.shader │ │ └── Unlit Transparent Color.shader.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── Cubes.unity │ │ ├── Cubes.unity.meta │ │ ├── Room.unity │ │ ├── Room.unity.meta │ │ ├── Trivial.unity │ │ └── Trivial.unity.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── OVRBoundary.cs │ │ ├── OVRBoundary.cs.meta │ │ ├── OVRCameraRig.cs │ │ ├── OVRCameraRig.cs.meta │ │ ├── OVRCommon.cs │ │ ├── OVRCommon.cs.meta │ │ ├── OVRDebugHeadController.cs │ │ ├── OVRDebugHeadController.cs.meta │ │ ├── OVRDisplay.cs │ │ ├── OVRDisplay.cs.meta │ │ ├── OVRHaptics.cs │ │ ├── OVRHaptics.cs.meta │ │ ├── OVRHapticsClip.cs │ │ ├── OVRHapticsClip.cs.meta │ │ ├── OVRInput.cs │ │ ├── OVRInput.cs.meta │ │ ├── OVRManager.cs │ │ ├── OVRManager.cs.meta │ │ ├── OVROnCompleteListener.cs │ │ ├── OVROnCompleteListener.cs.meta │ │ ├── OVROverlay.cs │ │ ├── OVROverlay.cs.meta │ │ ├── OVRPlatformMenu.cs │ │ ├── OVRPlatformMenu.cs.meta │ │ ├── OVRPlugin.cs │ │ ├── OVRPlugin.cs.meta │ │ ├── OVRProfile.cs │ │ ├── OVRProfile.cs.meta │ │ ├── OVRTouchpad.cs │ │ ├── OVRTouchpad.cs.meta │ │ ├── OVRTracker.cs │ │ ├── OVRTracker.cs.meta │ │ ├── Util.meta │ │ └── Util │ │ │ ├── OVRChromaticAberration.cs │ │ │ ├── OVRChromaticAberration.cs.meta │ │ │ ├── OVRCubemapCapture.cs │ │ │ ├── OVRCubemapCapture.cs.meta │ │ │ ├── OVRDebugInfo.cs │ │ │ ├── OVRDebugInfo.cs.meta │ │ │ ├── OVRGridCube.cs │ │ │ ├── OVRGridCube.cs.meta │ │ │ ├── OVRModeParms.cs │ │ │ ├── OVRModeParms.cs.meta │ │ │ ├── OVRMonoscopic.cs │ │ │ ├── OVRMonoscopic.cs.meta │ │ │ ├── OVRPlayerController.cs │ │ │ ├── OVRPlayerController.cs.meta │ │ │ ├── OVRRTOverlayConnector.cs │ │ │ ├── OVRRTOverlayConnector.cs.meta │ │ │ ├── OVRResetOrientation.cs │ │ │ ├── OVRResetOrientation.cs.meta │ │ │ ├── OVRSceneSampleController.cs │ │ │ ├── OVRSceneSampleController.cs.meta │ │ │ ├── OVRScreenFade.cs │ │ │ ├── OVRScreenFade.cs.meta │ │ │ ├── OVRWaitCursor.cs │ │ │ └── OVRWaitCursor.cs.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── OVRColorRampAlpha.shader │ │ ├── OVRColorRampAlpha.shader.meta │ │ ├── Unlit Crosshair.shader │ │ └── Unlit Crosshair.shader.meta │ ├── Textures.meta │ └── Textures │ │ ├── Black.png │ │ ├── Black.png.meta │ │ ├── Icons.meta │ │ ├── Icons │ │ ├── OculusIcon.png │ │ └── OculusIcon.png.meta │ │ ├── Logos.meta │ │ ├── Logos │ │ ├── OculusLogo.png │ │ ├── OculusLogo.png.meta │ │ ├── OculusLogoSplash.png │ │ └── OculusLogoSplash.png.meta │ │ ├── color_ramp_timer.tga │ │ ├── color_ramp_timer.tga.meta │ │ ├── cube_texture.png │ │ ├── cube_texture.png.meta │ │ ├── gaze_cursor.png │ │ ├── gaze_cursor.png.meta │ │ ├── gaze_cursor_timer.tga │ │ └── gaze_cursor_timer.tga.meta ├── OvrAvatar.meta ├── OvrAvatar │ ├── Content.meta │ ├── Content │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── AvatarMaterialStateShader.cginc │ │ │ ├── AvatarMaterialStateShader.cginc.meta │ │ │ ├── AvatarSurfaceShader.shader │ │ │ ├── AvatarSurfaceShader.shader.meta │ │ │ ├── AvatarSurfaceShaderPBS.shader │ │ │ ├── AvatarSurfaceShaderPBS.shader.meta │ │ │ ├── AvatarSurfaceShaderSelfOccluding.shader │ │ │ └── AvatarSurfaceShaderSelfOccluding.shader.meta │ │ ├── Prefabs.meta │ │ └── Prefabs │ │ │ ├── LocalAvatar.prefab │ │ │ ├── LocalAvatar.prefab.meta │ │ │ ├── RemoteAvatar.prefab │ │ │ └── RemoteAvatar.prefab.meta │ ├── Editor.meta │ ├── Editor │ │ ├── AvatarMaterialEditor.cs │ │ └── AvatarMaterialEditor.cs.meta │ ├── Samples.meta │ ├── Samples │ │ ├── Controllers.meta │ │ ├── Controllers │ │ │ ├── Controllers.unity │ │ │ └── Controllers.unity.meta │ │ ├── GripPoses.meta │ │ ├── GripPoses │ │ │ ├── GripPoses.unity │ │ │ ├── GripPoses.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── PoseEditHelper.cs │ │ │ │ └── PoseEditHelper.cs.meta │ │ ├── LocalAvatar.meta │ │ ├── LocalAvatar │ │ │ ├── LocalAvatar.unity │ │ │ └── LocalAvatar.unity.meta │ │ ├── RemoteLoopback.meta │ │ └── RemoteLoopback │ │ │ ├── RemoteLoopback.unity │ │ │ ├── RemoteLoopback.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ ├── RemoteLoopbackManager.cs │ │ │ └── RemoteLoopbackManager.cs.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── OvrAvatar.cs │ │ ├── OvrAvatar.cs.meta │ │ ├── OvrAvatarAsset.cs │ │ ├── OvrAvatarAsset.cs.meta │ │ ├── OvrAvatarAssetMesh.cs │ │ ├── OvrAvatarAssetMesh.cs.meta │ │ ├── OvrAvatarAssetTexture.cs │ │ ├── OvrAvatarAssetTexture.cs.meta │ │ ├── OvrAvatarBase.cs │ │ ├── OvrAvatarBase.cs.meta │ │ ├── OvrAvatarBody.cs │ │ ├── OvrAvatarBody.cs.meta │ │ ├── OvrAvatarComponent.cs │ │ ├── OvrAvatarComponent.cs.meta │ │ ├── OvrAvatarDriver.cs │ │ ├── OvrAvatarDriver.cs.meta │ │ ├── OvrAvatarHand.cs │ │ ├── OvrAvatarHand.cs.meta │ │ ├── OvrAvatarLocalDriver.cs │ │ ├── OvrAvatarLocalDriver.cs.meta │ │ ├── OvrAvatarPacket.cs │ │ ├── OvrAvatarPacket.cs.meta │ │ ├── OvrAvatarProjectorRenderComponent.cs │ │ ├── OvrAvatarProjectorRenderComponent.cs.meta │ │ ├── OvrAvatarRemoteDriver.cs │ │ ├── OvrAvatarRemoteDriver.cs.meta │ │ ├── OvrAvatarRenderComponent.cs │ │ ├── OvrAvatarRenderComponent.cs.meta │ │ ├── OvrAvatarSDKCAPI.cs │ │ ├── OvrAvatarSDKCAPI.cs.meta │ │ ├── OvrAvatarSDKManager.cs │ │ ├── OvrAvatarSDKManager.cs.meta │ │ ├── OvrAvatarSettings.cs │ │ ├── OvrAvatarSettings.cs.meta │ │ ├── OvrAvatarSettingsEditor.cs │ │ ├── OvrAvatarSettingsEditor.cs.meta │ │ ├── OvrAvatarSkinnedMeshRenderComponent.cs │ │ ├── OvrAvatarSkinnedMeshRenderComponent.cs.meta │ │ ├── OvrAvatarSkinnedMeshRenderPBSComponent.cs │ │ ├── OvrAvatarSkinnedMeshRenderPBSComponent.cs.meta │ │ ├── OvrAvatarTouchController.cs │ │ └── OvrAvatarTouchController.cs.meta ├── ParabolaTest.meta ├── ParabolaTest │ ├── Material.meta │ ├── Material │ │ ├── line.mat │ │ └── line.mat.meta │ ├── ParabolaTest.unity │ ├── ParabolaTest.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── ParabolaDrawer.cs │ │ ├── ParabolaDrawer.cs.meta │ │ ├── ParabolaRaycaster.cs │ │ └── ParabolaRaycaster.cs.meta ├── Plugins.meta ├── Plugins │ ├── OVRGamepad.bundle.meta │ └── OVRGamepad.bundle │ │ ├── Contents.meta │ │ └── Contents │ │ ├── Info.plist │ │ ├── Info.plist.meta │ │ ├── MacOS.meta │ │ └── MacOS │ │ ├── OVRGamepad │ │ └── OVRGamepad.meta ├── Resources.meta ├── Resources │ ├── OvrAvatarSettings.asset │ └── OvrAvatarSettings.asset.meta ├── SteamVR.meta ├── SteamVR │ ├── Editor.meta │ ├── Editor │ │ ├── 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_Update.cs │ │ └── SteamVR_Update.cs.meta │ ├── Extras.meta │ ├── Extras │ │ ├── SteamVR_GazeTracker.cs │ │ ├── SteamVR_GazeTracker.cs.meta │ │ ├── SteamVR_LaserPointer.cs │ │ ├── SteamVR_LaserPointer.cs.meta │ │ ├── SteamVR_Teleporter.cs │ │ ├── SteamVR_Teleporter.cs.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 │ │ ├── SteamVR_TrackedController.cs │ │ └── SteamVR_TrackedController.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 │ │ │ │ ├── BlankController.prefab │ │ │ │ ├── BlankController.prefab.meta │ │ │ │ ├── Player.prefab │ │ │ │ └── Player.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 │ │ │ │ ├── FallbackCameraController.cs │ │ │ │ ├── FallbackCameraController.cs.meta │ │ │ │ ├── Hand.cs │ │ │ │ ├── Hand.cs.meta │ │ │ │ ├── HapticRack.cs │ │ │ │ ├── HapticRack.cs.meta │ │ │ │ ├── HideOnHandFocusLost.cs │ │ │ │ ├── HideOnHandFocusLost.cs.meta │ │ │ │ ├── IgnoreHovering.cs │ │ │ │ ├── IgnoreHovering.cs.meta │ │ │ │ ├── InputModule.cs │ │ │ │ ├── InputModule.cs.meta │ │ │ │ ├── Interactable.cs │ │ │ │ ├── Interactable.cs.meta │ │ │ │ ├── InteractableButtonEvents.cs │ │ │ │ ├── InteractableButtonEvents.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 │ │ │ │ ├── PlaySound.cs │ │ │ │ ├── PlaySound.cs.meta │ │ │ │ ├── Player.cs │ │ │ │ ├── Player.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 │ │ │ │ ├── SpawnRenderModel.cs │ │ │ │ ├── SpawnRenderModel.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 │ │ │ │ ├── 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.tga │ │ │ │ ├── ArrowAlbedoTransparency.tga.meta │ │ │ │ ├── ArrowAmbientOcclusion.tga │ │ │ │ ├── ArrowAmbientOcclusion.tga.meta │ │ │ │ ├── ArrowEmissive.psd │ │ │ │ ├── ArrowEmissive.psd.meta │ │ │ │ ├── ArrowGlint.png │ │ │ │ ├── ArrowGlint.png.meta │ │ │ │ ├── ArrowMetallicSmoothness.tga │ │ │ │ ├── ArrowMetallicSmoothness.tga.meta │ │ │ │ ├── ArrowNormal.tga │ │ │ │ ├── ArrowNormal.tga.meta │ │ │ │ ├── BalloonColor.tga │ │ │ │ ├── BalloonColor.tga.meta │ │ │ │ ├── BalloonPop.png │ │ │ │ ├── BalloonPop.png.meta │ │ │ │ ├── BalloonPopLine.png │ │ │ │ ├── BalloonPopLine.png.meta │ │ │ │ ├── Longbow.psd │ │ │ │ ├── Longbow.psd.meta │ │ │ │ ├── TorchFire.png │ │ │ │ └── TorchFire.png.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 │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Grey.mat │ │ │ │ ├── Grey.mat.meta │ │ │ │ ├── LightGreen.mat │ │ │ │ ├── LightGreen.mat.meta │ │ │ │ ├── ShinyWhite.mat │ │ │ │ ├── ShinyWhite.mat.meta │ │ │ │ ├── ShinyWhiteHighlighted.mat │ │ │ │ ├── ShinyWhiteHighlighted.mat.meta │ │ │ │ ├── ShinyYellow.mat │ │ │ │ └── ShinyYellow.mat.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── ThrowableBall.prefab │ │ │ │ ├── ThrowableBall.prefab.meta │ │ │ │ ├── ThrowableCube.prefab │ │ │ │ └── ThrowableCube.prefab.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── Interactions_Example.unity │ │ │ │ └── Interactions_Example.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── ControllerHintsExample.cs │ │ │ │ ├── ControllerHintsExample.cs.meta │ │ │ │ ├── InteractableExample.cs │ │ │ │ └── InteractableExample.cs.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 │ │ │ ├── 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 │ │ ├── workshop.mat │ │ └── workshop.mat.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 │ ├── Resources.meta │ ├── Resources │ │ ├── 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_SphericalProjection.shader │ │ └── SteamVR_SphericalProjection.shader.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── example.unity │ │ └── example.unity.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── SteamVR.cs │ │ ├── SteamVR.cs.meta │ │ ├── SteamVR_Camera.cs │ │ ├── SteamVR_Camera.cs.meta │ │ ├── SteamVR_CameraFlip.cs │ │ ├── SteamVR_CameraFlip.cs.meta │ │ ├── SteamVR_CameraMask.cs │ │ ├── SteamVR_CameraMask.cs.meta │ │ ├── SteamVR_Controller.cs │ │ ├── SteamVR_Controller.cs.meta │ │ ├── SteamVR_ControllerManager.cs │ │ ├── SteamVR_ControllerManager.cs.meta │ │ ├── SteamVR_Ears.cs │ │ ├── SteamVR_Ears.cs.meta │ │ ├── SteamVR_Events.cs │ │ ├── SteamVR_Events.cs.meta │ │ ├── SteamVR_ExternalCamera.cs │ │ ├── SteamVR_ExternalCamera.cs.meta │ │ ├── SteamVR_Fade.cs │ │ ├── SteamVR_Fade.cs.meta │ │ ├── SteamVR_Frustum.cs │ │ ├── SteamVR_Frustum.cs.meta │ │ ├── SteamVR_GameView.cs │ │ ├── SteamVR_GameView.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_Skybox.cs │ │ ├── SteamVR_Skybox.cs.meta │ │ ├── SteamVR_SphericalProjection.cs │ │ ├── SteamVR_SphericalProjection.cs.meta │ │ ├── SteamVR_Stats.cs │ │ ├── SteamVR_Stats.cs.meta │ │ ├── SteamVR_TestController.cs │ │ ├── SteamVR_TestController.cs.meta │ │ ├── SteamVR_TrackedCamera.cs │ │ ├── SteamVR_TrackedCamera.cs.meta │ │ ├── SteamVR_TrackedObject.cs │ │ ├── SteamVR_TrackedObject.cs.meta │ │ ├── SteamVR_UpdatePoses.cs │ │ ├── SteamVR_UpdatePoses.cs.meta │ │ ├── SteamVR_Utils.cs │ │ └── SteamVR_Utils.cs.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 │ ├── quickstart.pdf │ ├── quickstart.pdf.meta │ ├── readme.txt │ └── readme.txt.meta ├── VRInputModule.meta └── VRInputModule │ ├── Prefabs.meta │ ├── Prefabs │ ├── VRInputModule.prefab │ ├── VRInputModule.prefab.meta │ ├── [CameraRig].prefab │ └── [CameraRig].prefab.meta │ ├── Resources.meta │ ├── Resources │ ├── LaserPointer.shader │ └── LaserPointer.shader.meta │ ├── Scripts.meta │ ├── Scripts │ ├── IUILaserPointer.cs │ ├── IUILaserPointer.cs.meta │ ├── LaserPointerEventData.cs │ ├── LaserPointerEventData.cs.meta │ ├── LaserPointerInputModule.cs │ ├── LaserPointerInputModule.cs.meta │ ├── OVRUILaserPointer.cs │ ├── OVRUILaserPointer.cs.meta │ ├── UIIgnoreRaycast.cs │ ├── UIIgnoreRaycast.cs.meta │ ├── ViveUILaserPointer.cs │ └── ViveUILaserPointer.cs.meta │ ├── _demo.meta │ └── _demo │ ├── Scenes.meta │ ├── Scenes │ ├── demo_ovr.unity │ ├── demo_ovr.unity.meta │ ├── demo_test.unity │ ├── demo_test.unity.meta │ ├── demo_vive.unity │ └── demo_vive.unity.meta │ ├── Scripts.meta │ └── Scripts │ ├── DemoLaserPointerTest.cs │ ├── DemoLaserPointerTest.cs.meta │ ├── DemoMenu.cs │ ├── DemoMenu.cs.meta │ ├── GravityGun.cs │ └── GravityGun.cs.meta ├── LICENSE.md ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityAdsSettings.asset └── UnityConnectSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Temp/ 3 | Library/ 4 | Build/ 5 | 6 | ExportedObj/ 7 | obj/ 8 | *.svd 9 | *.userprefs 10 | *.csproj 11 | *.pidb 12 | *.suo 13 | *.sln 14 | *.user 15 | *.unityproj 16 | *.booproj 17 | UnityVS/ 18 | UnityVS.meta 19 | 20 | .DS_Store 21 | .DS_Store? 22 | ._* 23 | .Spotlight-V100 24 | .Trashes 25 | ehthumbs.db 26 | Thumbs.db -------------------------------------------------------------------------------- /Assets/OVR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 869fc009969608e4a9071237c584be0d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/OVR/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76c19abd24bec62459b5f0d26fdd9a85 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/OVR/Editor/AndroidManifest.OVRSubmission.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a16cc136accf1f42bdc6f71f94b50ac 3 | timeCreated: 1475710636 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Editor/OVRBuild.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fef522d0247215a43be6b1a8819bd940 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Editor/OVRMoonlightLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c86538ded11bfe24c8c79818bb9ea66a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Editor/OVRScreenshotWizard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8b9ee1d7b188284f90d944cd54eb026 3 | timeCreated: 1462825988 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: 8 | - renderFrom: {fileID: 168286, guid: a5014611cefbb6b4398b7e4c82203d08, type: 2} 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/OVR/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 981b5bce7fc4a2d43a2169710da4b892 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/OVR/Materials/Arrow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 669025377795b574da66d9bb2472fcab 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/OVR/Materials/CubeMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62db2d638434d5a488dfb1e789e34b37 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/OVR/Materials/cursor_timer_material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9531aa878fd5c4749b288b72024e8d2f 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/OVR/Materials/gaze_cursor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f31de375e167154aa45929466af30e4 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/OVR/Meshes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db348133d6680dd459f3e1cb19922746 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/OVR/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfe39332fdb4cb044b619b3e4b890396 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/OVR/Prefabs/Cursor_Timer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a7682c244a150b49965c007720bdbb7 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/OVR/Prefabs/OVRCameraRig.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 126d619cf4daa52469682f85c1378b4a 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/OVR/Prefabs/OVRCubemapCaptureProbe.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a400e96d4650ff4e827a7e727fad81d 3 | timeCreated: 1464847331 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Prefabs/OVRPlayerController.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce816f2e6abb0504092c23ed9b970dfd 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/OVR/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 807714291dbf2a54c9b3975c271b2493 3 | folderAsset: yes 4 | timeCreated: 1466707364 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OVR/Resources/Unlit Transparent Color.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ced943c76cb8fb8489bab18c3dfcdcd3 3 | timeCreated: 1435284538 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OVR/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68bc04068edcc1a4d89699ab4e2e69ae 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/OVR/Scenes/Cubes.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d920b3d2525670f4abad3d20eda3b349 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/OVR/Scenes/Room.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54445976c1dbf1c49bb38ba7eba558e8 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/OVR/Scenes/Trivial.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8d21f2460d13554780e4af04a9e0d6e 3 | timeCreated: 1427350486 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 859d6d3fcffe1bb41ac06f93d267fc9d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVRBoundary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 332b8e08854932543ba356eec601c0ef 3 | timeCreated: 1470352252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVRCameraRig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df9f338034892c44ebb62d97894772f1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVRCommon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 176f8d665b1d78048b1e87956698df6b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVRDebugHeadController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 563681618daa71b4c89f979b1fd7170b 3 | timeCreated: 1433450365 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVRDisplay.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb365ebe8e821fc4e81e9dca9d704357 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVRHaptics.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3b22b858e27329498781f145fa42610 3 | timeCreated: 1463018541 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVRHapticsClip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c123270a848515b458069b5242866451 3 | timeCreated: 1467575852 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVRInput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d210caf8a50e1954c80690fa858572ad 3 | timeCreated: 1438295094 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVRManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e933e81d3c20c74ea6fdc708a67e3a5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -100 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVROnCompleteListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8730118d7f00f9b47b09be73f7e91d2b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVROverlay.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4444ce35d262aa648ad0c425a559b931 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVRPlatformMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2afcf575f4a68de4db434c7b7233c451 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVRPlugin.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61abd23f3aff5394ba8027ee380760b8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVRProfile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08539141953f28e439731aaf7cd5362f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVRTouchpad.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ab9178817a837a49a7da8cd5a5792e5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/OVRTracker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cb3c9d4cb0970e448c655096649e814 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0c7a593695f68e4bbe0cabb0f4f93f2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/Util/OVRChromaticAberration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b56515a831f2fb44bc7ae02679aeebc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/Util/OVRCubemapCapture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a489178b0acf0147846b3873447beaf 3 | timeCreated: 1464728890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/Util/OVRDebugInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b71d1996d67004241a3b69960856ffcb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/Util/OVRGridCube.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4988596c8a187f94f8e6a345ebb4254b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/Util/OVRModeParms.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a6ae8e8def81df429a8fdfc00f63e5c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/Util/OVRMonoscopic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06ef2a389c534554c848533f88dbb32c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/Util/OVRPlayerController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0950df82e7936c84983497630bde5b54 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/Util/OVRRTOverlayConnector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a32cb96623ab18541962acb63c7fb18e 3 | timeCreated: 1469334708 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/Util/OVRResetOrientation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09bb0a17b6a704298b65be4fb08ef480 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/Util/OVRSceneSampleController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f07515ada089df47868559a20dd6783 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/Util/OVRScreenFade.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df8e1d778abf442e4bec449c360e9e1c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -100 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Scripts/Util/OVRWaitCursor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d313011a8bc474fe49260bde01cffcd3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/OVR/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d79c5fa4d57bda54f88884a89963d684 3 | folderAsset: yes 4 | timeCreated: 1466707365 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OVR/Shaders/OVRColorRampAlpha.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b95caf64e2cc3614892026a94bb2be84 3 | timeCreated: 1433268462 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OVR/Shaders/Unlit Crosshair.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05b53b473302943b58b8e33c93a38dac 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/OVR/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1938789817fe3974ea20e502ed4bcd76 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/OVR/Textures/Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/OVR/Textures/Black.png -------------------------------------------------------------------------------- /Assets/OVR/Textures/Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e081f465852cec14380da085e957c52b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/OVR/Textures/Icons/OculusIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/OVR/Textures/Icons/OculusIcon.png -------------------------------------------------------------------------------- /Assets/OVR/Textures/Logos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c18650754748f647bacde4e2116cbff 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/OVR/Textures/Logos/OculusLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/OVR/Textures/Logos/OculusLogo.png -------------------------------------------------------------------------------- /Assets/OVR/Textures/Logos/OculusLogoSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/OVR/Textures/Logos/OculusLogoSplash.png -------------------------------------------------------------------------------- /Assets/OVR/Textures/color_ramp_timer.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/OVR/Textures/color_ramp_timer.tga -------------------------------------------------------------------------------- /Assets/OVR/Textures/cube_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/OVR/Textures/cube_texture.png -------------------------------------------------------------------------------- /Assets/OVR/Textures/gaze_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/OVR/Textures/gaze_cursor.png -------------------------------------------------------------------------------- /Assets/OVR/Textures/gaze_cursor_timer.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/OVR/Textures/gaze_cursor_timer.tga -------------------------------------------------------------------------------- /Assets/OvrAvatar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4808572c3a25f0d4090c2ab5af88c08f 3 | folderAsset: yes 4 | timeCreated: 1466550217 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Content.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7b5af4818686f84f844c1ae9df0f700 3 | folderAsset: yes 4 | timeCreated: 1466716731 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Content/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03c5cda4272cb2746a668ce131f04c0f 3 | folderAsset: yes 4 | timeCreated: 1466717994 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Content/Materials/AvatarMaterialStateShader.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 462c52c09cf9a244bbc11a016d763ea7 3 | timeCreated: 1443137462 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Content/Materials/AvatarSurfaceShader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0f6e1942d3d1f946a96fd8a00175474 3 | timeCreated: 1470862124 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Content/Materials/AvatarSurfaceShaderPBS.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7662dbac0646464a9b4a48e93989adb 3 | timeCreated: 1470862124 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Content/Materials/AvatarSurfaceShaderSelfOccluding.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10513ef587704324487f3061a7e6699d 3 | timeCreated: 1470862124 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Content/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2c4ef7503877e647b22a4089384f04f 3 | folderAsset: yes 4 | timeCreated: 1466717433 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Content/Prefabs/LocalAvatar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84c8b8609f9bb434eaf5248f17ff1293 3 | timeCreated: 1466806466 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Content/Prefabs/RemoteAvatar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90bf33f968e6bb44ea0208fc82c90a44 3 | timeCreated: 1468001728 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f6a577c077cce945b722f02f34c29f3 3 | folderAsset: yes 4 | timeCreated: 1472072258 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Editor/AvatarMaterialEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdddb32bde2072f4da6baf73fd9ebddc 3 | timeCreated: 1470865818 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Samples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b18c7ae976868a4499e2dbd7f60e92a4 3 | folderAsset: yes 4 | timeCreated: 1467313717 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Samples/Controllers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2856d681f3672e641a2e57df9676108c 3 | folderAsset: yes 4 | timeCreated: 1468456735 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Samples/Controllers/Controllers.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a83dd010542d2744bf59af99b4bc47c 3 | timeCreated: 1468457372 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Samples/GripPoses.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8c4b9475079cf040953bf344ff4e44f 3 | folderAsset: yes 4 | timeCreated: 1477955918 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Samples/GripPoses/GripPoses.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 697c6df5e1eddad40b634d311b0bb2e5 3 | timeCreated: 1477966491 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Samples/GripPoses/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85678699140c6c3429a87f4d679b1a17 3 | folderAsset: yes 4 | timeCreated: 1477957292 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Samples/GripPoses/Scripts/PoseEditHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bc5b4ba964e02b4ea773b2aaca7dc67 3 | timeCreated: 1477957304 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Samples/LocalAvatar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2883b756c033a864ca988b3f522f3339 3 | folderAsset: yes 4 | timeCreated: 1467313725 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Samples/LocalAvatar/LocalAvatar.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c65ef87480e70eb43931036c9c66d08d 3 | timeCreated: 1466730185 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Samples/RemoteLoopback.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f26892c9951b6f54c82a5f1bf34e8d8a 3 | folderAsset: yes 4 | timeCreated: 1468000039 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Samples/RemoteLoopback/RemoteLoopback.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa35ff5ba76fb384d839383c84209da9 3 | timeCreated: 1468000130 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Samples/RemoteLoopback/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edf34aa3892fd9f4eb0795663f7e3ffc 3 | folderAsset: yes 4 | timeCreated: 1468000607 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Samples/RemoteLoopback/Scripts/RemoteLoopbackManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1675d6690178fd0459887aed66409f70 3 | timeCreated: 1468000639 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1eb18b8db6c77f04c96874806a37143d 3 | folderAsset: yes 4 | timeCreated: 1466714102 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatar.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00f3402a2ea5bff4880c0313515240cd 3 | timeCreated: 1464046614 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarAsset.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | public class OvrAvatarAsset { 4 | public UInt64 assetID; 5 | } 6 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarAsset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7045bb39115f484a89ecaa778a2a60f 3 | timeCreated: 1475521356 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarAssetMesh.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80be643e69fa4a4478a5cb27a190bbd2 3 | timeCreated: 1475522461 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarAssetTexture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a3167eed50e56346be5b1cc65ad7226 3 | timeCreated: 1475522480 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0e33623ec5372748b5703f61a4df82d 3 | timeCreated: 1477606822 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarBody.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb7a6650b6cb46545967d3b380b7396c 3 | timeCreated: 1466814542 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarComponent.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | using System.Collections.Generic; 4 | 5 | public class OvrAvatarComponent : MonoBehaviour { 6 | public List RenderParts = new List(); 7 | } 8 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d8af585c6ed18849905454f83194043 3 | timeCreated: 1479155378 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarDriver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0bda905d6cc47640bc17f99e364a1b9 3 | timeCreated: 1464049373 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarHand.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e53b07ad62d980a4da9fffff0b05fd2e 3 | timeCreated: 1464054646 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarLocalDriver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac27124318cf8e84aa7350c2ac1cdb80 3 | timeCreated: 1464049705 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarPacket.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b7dd866fbed2654e838d772129dc70c 3 | timeCreated: 1464197799 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarProjectorRenderComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f909beaa7f33f914b90f9addaedcae18 3 | timeCreated: 1479156352 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarRemoteDriver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c198a42a3843ca04fa633b60f428ff51 3 | timeCreated: 1464302604 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarRenderComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a9e8691abb99884880df5ecada5e4d8 3 | timeCreated: 1479155394 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarSDKCAPI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0348026b48363904bb332b53a21c35b2 3 | timeCreated: 1474928508 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarSDKManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ba08ec2733a3a54fbc9490f0f4ab2f0 3 | timeCreated: 1475011862 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70c2f484f132c044097f03d65cac3b24 3 | timeCreated: 1478024706 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarSettingsEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1511f2aaa4ab15e4b8a0ac1a805a402b 3 | timeCreated: 1478024800 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarSkinnedMeshRenderComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4efdf8bc42b8b8843aff4ca38233f362 3 | timeCreated: 1479156282 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarSkinnedMeshRenderPBSComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69cc01a6441317c4c8a6e24d979cc1b0 3 | timeCreated: 1479158964 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/OvrAvatar/Scripts/OvrAvatarTouchController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77e19ec58d4a9e844970103e5bd8946a 3 | timeCreated: 1464050556 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/ParabolaTest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17b56b6f3ac7c4888b7454ecb9b58de1 3 | folderAsset: yes 4 | timeCreated: 1489589627 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ParabolaTest/Material.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f475f4cb3c20f4e55b48ada39675daa6 3 | folderAsset: yes 4 | timeCreated: 1489604554 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ParabolaTest/Material/line.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/ParabolaTest/Material/line.mat -------------------------------------------------------------------------------- /Assets/ParabolaTest/Material/line.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9620bfdbf6b0e496eadfc39b093bc4ad 3 | timeCreated: 1489590371 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ParabolaTest/ParabolaTest.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/ParabolaTest/ParabolaTest.unity -------------------------------------------------------------------------------- /Assets/ParabolaTest/ParabolaTest.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87503c967741540e498aa8e6710c9c6e 3 | timeCreated: 1489589630 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ParabolaTest/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 759f7ae8988d0425d9b3e1be4dd03f4f 3 | folderAsset: yes 4 | timeCreated: 1489604468 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ParabolaTest/Scripts/ParabolaDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2f1b12ea8bbf41b0990cdb4f451d7cc 3 | timeCreated: 1489589725 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/ParabolaTest/Scripts/ParabolaRaycaster.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ce0d944a0ffd4058a9d5b11e0451d63 3 | timeCreated: 1489587840 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8619015675705434a8d74b228676b99c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/OVRGamepad.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 648a2605a2bc848728f27adc59fe8010 3 | folderAsset: yes 4 | timeCreated: 1441327083 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/OVRGamepad.bundle/Contents/Info.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5de957de5187b406687f99aa5a30871b 3 | timeCreated: 1441327083 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/OVRGamepad.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fad9c333897547a59f91edacd69f7db 3 | folderAsset: yes 4 | timeCreated: 1441327083 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/OVRGamepad.bundle/Contents/MacOS/OVRGamepad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/Plugins/OVRGamepad.bundle/Contents/MacOS/OVRGamepad -------------------------------------------------------------------------------- /Assets/Plugins/OVRGamepad.bundle/Contents/MacOS/OVRGamepad.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3af79ea9cc1984e498b6a7e5409cdcac 3 | timeCreated: 1441327083 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48aa487dd903da9488125ad095ff54d5 3 | folderAsset: yes 4 | timeCreated: 1485196086 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/OvrAvatarSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/Resources/OvrAvatarSettings.asset -------------------------------------------------------------------------------- /Assets/Resources/OvrAvatarSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34ee5a22e189f964fa0a413c3eed6b1c 3 | timeCreated: 1485196086 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 597b661ae716c624988ba1f0dc028b99 3 | folderAsset: yes 4 | timeCreated: 1488984793 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c33af0785775d7548b22541da37936fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_Editor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ba22c80948c94e44a82b9fd1b3abd0d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_Preferences.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29abf75f7265ccb45b799eac4ab0ca94 3 | timeCreated: 1487968203 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_RenderModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67867a20919f7db45a2e7034fda1c28e 3 | timeCreated: 1433373945 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_Settings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2244eee8a3a4784fb40d1123ff69301 3 | timeCreated: 1438809573 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_SkyboxEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80087fbbf7bf93a46bb4aea276b19568 3 | timeCreated: 1446765449 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_Update.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73a0556bda803bf4e898751dcfcf21a8 3 | timeCreated: 1433880062 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61f4796ee4f00314e8d8b1ad39a78c28 3 | folderAsset: yes 4 | timeCreated: 1438797390 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_GazeTracker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 501eb8b744f73714fbe7dbdd5e3ef66e 3 | timeCreated: 1426193800 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_LaserPointer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4e8a839a7c5b7e4580c59e305fb5f01 3 | timeCreated: 1430337756 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_Teleporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24c7d7d77dd0d2a4b8e1ad129b170ee3 3 | timeCreated: 1430337756 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestIK.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b6669fb4e4df9c48926f02b694be9d1 3 | timeCreated: 1437433018 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestThrow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff4f36585e15b1942827390ff1a92502 3 | timeCreated: 1437513988 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestThrow.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d936163b5e9a5047b5e4ba5afaf5126 3 | timeCreated: 1437513966 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b18b36a995ecb04599f35c2741be8d5 3 | timeCreated: 1465946679 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99ee8d48ccf36264e9d9a72baa681249 3 | timeCreated: 1465950289 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fb811b0ffe615b4dbf1d5e6ced385fd 3 | timeCreated: 1464227836 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TrackedController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7346a42905a29b347b1f492e8ad7b49f 3 | timeCreated: 1430337756 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8941a9f98c35d84cb19a5e044467de9 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ab2780fe1da2544b86a1020e5f638e2 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fcf8377413b60c44afff7b2e4efd8f7 3 | folderAsset: yes 4 | timeCreated: 1482867667 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system.png -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_feet.png -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_left_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_left_hand.png -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_left_hand_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_left_hand_question.png -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_right_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_right_hand.png -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_right_hand_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_right_hand_question.png -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_unknown_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Core/Icons/vr_interaction_system_unknown_hand.png -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05a69997deb9f5944a894239434f00a9 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Materials/FallbackHandIndicator.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e995e61de69d8647ae2b2d65eceab3f 3 | timeCreated: 1436394722 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Materials/HoverHighlight.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b939e5e799d98a469f594828ebab52e 3 | timeCreated: 1439237525 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Materials/SeeThru.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bbb445147c574240a8b87a1193788b5 3 | timeCreated: 1456708947 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Materials/SteamVRControllerModel.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c433e134e4719444b65bf064a77e22e 3 | timeCreated: 1455877211 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d60d25020af6fb4f8d436244db7cc4b 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs/BlankController.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f39fc63a93686e4a8e9168ee73f24d9 3 | timeCreated: 1439253462 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs/Player.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc06161b6d97feb419f45f03b62e14b9 3 | timeCreated: 1430240738 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77a23888f82e2ab4c8bc825f20235e1e 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/BodyCollider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1731d642c0b250b48bb8cdfb153d9792 3 | timeCreated: 1434649753 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/CircularDrive.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f32883eed859804dbb0c5fedac91496 3 | timeCreated: 1440531244 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/ComplexThrowable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad77666522338cf49ba83b80b25e6476 3 | timeCreated: 1440023090 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/CustomEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f3294e06115d0047a2ac7659a11b168 3 | timeCreated: 1437076614 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/DebugUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f3bba2c36dd79242b3157dbcd876bf2 3 | timeCreated: 1458703500 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/DestroyOnTriggerEnter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ba84888c9d4c504cb752a3904551a6c 3 | timeCreated: 1438101498 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/DistanceHaptics.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65ef702aaa09d3f46a75659678b1a711 3 | timeCreated: 1430871385 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/DontDestroyOnLoad.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d1c07a6449b0ca439ee6fac5f6f7d83 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/EnumFlags.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88a2ccbdad9948c45b28f5e63902705b 3 | timeCreated: 1440536338 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/Hand.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29e3e4511966ba94d8ba0b98c6c62f82 3 | timeCreated: 1484266511 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/HapticRack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 817521c5973e4ee45905ee97df3c38ad 3 | timeCreated: 1433796170 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/IgnoreHovering.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5a1be5da1c87864582d778e52de4e9b 3 | timeCreated: 1444166650 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/InputModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9e05292e0d62b542ac5bba92674a86d 3 | timeCreated: 1429055028 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/Interactable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b93b6a877adcbf94c89a9d6e0c0e844d 3 | timeCreated: 1430943024 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/ItemPackage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9f83db71b9a6764abf964ab7679f035 3 | timeCreated: 1436836633 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/ItemPackageSpawner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43e53a985809f0949b9a42cc2a6888c9 3 | timeCreated: 1436915041 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/LinearAnimation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49a60120b932b59409171f5ff611b639 3 | timeCreated: 1433799038 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/LinearAnimator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 634b98c3ef8bc6d4f834f80a4613a4a4 3 | timeCreated: 1435864149 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/LinearAudioPitch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb07dbf09f9933e49b22c82d8428c53b 3 | timeCreated: 1436834777 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/LinearBlendshape.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a3622562855c9a40a14846ffdc8bfe4 3 | timeCreated: 1447859480 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/LinearDisplacement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13d876e5d485004448f3e7b57eece9ab 3 | timeCreated: 1433730007 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/LinearDrive.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c81a27fd18a29444be92481fe681f4b 3 | timeCreated: 1434650764 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/LinearMapping.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46f8e9e70f68ee3418ad85992778c116 3 | timeCreated: 1433728353 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/PlaySound.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a125d9df683e2a49b12babced273360 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/Player.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 202a6e24b48d1684398409c47161adcb 3 | timeCreated: 1435864159 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/SleepOnAwake.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0584375ad2f33ef4da0b276de8507487 3 | timeCreated: 1430167006 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/SoundDeparent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f53662f45a4454944a06629fec9c941e 3 | timeCreated: 1457503214 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/SoundPlayOneshot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32c1c9a5bbab2e54280027c0ecaf42db 3 | timeCreated: 1436566670 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/SpawnRenderModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fb3fe54664b917489646492ee8c4993 3 | timeCreated: 1441140218 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/Throwable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffefbea063cab884ca33e5a449e5c22c 3 | timeCreated: 1432687610 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/UIElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53cd2ef2dd3d5d64e96af4420220d1d2 3 | timeCreated: 1430953100 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/Unparent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba42448c9a2fa44409034eead650b5f4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/Util.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4dbb95c6efc21548ac6d079a65a2d50 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/VelocityEstimator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 783750eec4c41da428b7651515146d14 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4939542f83f4e84f8604e20bce42eba 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Shaders/SeeThru.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6337aa7e7823eee43af8ffe676935e74 3 | timeCreated: 1456708850 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Shaders/Silhouette.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c1cf10ea69e60e4f9eb8955749f88ec 3 | timeCreated: 1456009779 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30dfcd9dafb9bea459e0b03505e418a1 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2300d431cc9116478ccc8bb42061072 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Materials/ControllerButtonHints.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11b050e661ec0cf48a289a7266451e91 3 | timeCreated: 1452301140 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Materials/ControllerTextHintAnchor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f08f06256ab27b4cb9eb0b41831a69f 3 | timeCreated: 1456565286 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Materials/ControllerTextHintLine.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa05b1dac59aa764184da0aba83b2bf9 3 | timeCreated: 1456610834 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbecae3d442b2b0478f2e6a2afc24059 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Prefabs/ControllerTextHint.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fa42bb9e52706a42b8a1eaf0b54326a 3 | timeCreated: 1456611350 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f511b02628aaca43be0aecee58c1b71 3 | folderAsset: yes 4 | timeCreated: 1479769520 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1375c26e5558daa48ae7ab8a8117cbe1 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Shaders/ControllerButtonHints.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de053fb214897cc439db35fc0361a282 3 | timeCreated: 1452302861 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fa11a15b6830ea40808c51f7a5f0a4e 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Textures/HintBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Hints/Textures/HintBackground.png -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/InteractionSystem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/InteractionSystem.pdf -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/InteractionSystem.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 124a48a5a1579224481a3f34686d56e4 3 | timeCreated: 1483063553 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee2359d7e6460d4449d8b8c70d3045b4 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Animators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44a536d7fede4b140b3647935ea8c8fa 3 | folderAsset: yes 4 | timeCreated: 1479853728 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Animators/LongbowAnimationController.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57d4c0e09fe27de44a83d11d4f4969c7 3 | timeCreated: 1454447900 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38392bbe7ae2c464daae1fe24a1147c1 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/ArcheryTargetWeeble.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ae132d3c08907a4d931b3ed4debc646 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/Arrow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7cd62d595c763c428123f260c78b711 3 | timeCreated: 1456804074 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/ArrowGlint.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3004e0c0e5df074abcb3548fd812bfc 3 | timeCreated: 1478651609 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/BalloonColor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 406981998f1234442a4f2eb50cfe07e1 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/BalloonPop.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d01d8c885250364bac66a45791f02e1 3 | timeCreated: 1478656020 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/BalloonPopLine.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25bc1e9c1d9042d4781cb174093aaaed 3 | timeCreated: 1478656749 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/ItemPickupOutline.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d938759d8b7a414988ec3261fb5265d 3 | timeCreated: 1442338990 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/ItemPickupOutlineThick.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 425031c746a6df44aa1dfdb17c2b8b45 3 | timeCreated: 1442427993 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/Longbow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 921837a5408991d429e86efc66f8be6b 3 | timeCreated: 1453848957 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/LongbowNotch.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5be56a64c3c6c434eb746320e06a27ac 3 | timeCreated: 1454951948 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/LongbowString.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40fa752affdc6cf45a47396764154085 3 | timeCreated: 1454951948 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/TorchFire.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fff76eb68ad4c44b87be9e2ca168a80 3 | timeCreated: 1478653933 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/TorchHead.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67c31797bbf07114eb2d50aa3ae184e9 3 | timeCreated: 1478737675 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials/TorchShaft.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24e73955ba8338f41a24cd3aea0285a6 3 | timeCreated: 1478737675 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f4c3e904395a784199b9a0e3166fd96 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Models/Arrow.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Models/Arrow.fbx -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Models/Balloon.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Models/Balloon.fbx -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/PhysicMaterials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c360cf037a4ff3f4cb643392da004156 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/PhysicMaterials/ArcheryTargetPhysMaterial.physicMaterial.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c509d5711dc2cc346be2763cd92383ca 3 | timeCreated: 1437607164 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4acc435c26639c4fac0c4358c455259 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/ArcheryWeeble.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fe1fef3cfad86946b3a549d6934330b 3 | timeCreated: 1444265605 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/Arrow.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81fc1450441aca64e8cc1a0e14b1aa77 3 | timeCreated: 1457490155 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/ArrowHand.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d410d7126dd411c4ea651fc94eae9202 3 | timeCreated: 1457490326 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/Balloon.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e13c6e5a21aeea4db3c25ef0e529308 3 | timeCreated: 1435794528 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/BalloonPop.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d2dddaae5c812841accc43e4da1fccd 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/BalloonPopNoSound.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a41945a8549c580408301691c2fd374e 3 | timeCreated: 1457902375 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/BalloonSpawner.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01c670ceb931d524b9a80b70652eb18b 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/FireSmall.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9471d2206e57ca246a4bf982f3c29c8f 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/FireTiny.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6990c59ffac7cf4b87f644ab4782007 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/FireWhip.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: daf28736fcb032a44b7a5c1fd0a27b15 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/Longbow.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1f5f898fbfdb80478825ce9b01fe8ae 3 | timeCreated: 1457488966 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/LongbowItemPackage.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98a3ad29136d5c04f8a025adf1cbd704 3 | timeCreated: 1457489493 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/LongbowOutline.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9d299b8c6aa86242bec9a060f7e2d81 3 | timeCreated: 1442339331 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/LongbowPreview.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5b684916cfe6804985d74652a2af09f 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs/Torch.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 380bbbca09a806c4c8607dd111d9ed8f 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6596adb54aab23a40abe01461d35a26f 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Scripts/ArcheryTarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2f2850d002f14a47bff32fdf73df53e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Scripts/Arrow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d520699ed41daaf48b924d994ac87378 3 | timeCreated: 1437005176 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Scripts/ArrowHand.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d85480da87762944399dab6c99985eef 3 | timeCreated: 1437005170 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Scripts/Balloon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 429a484b95998f84eaa98fa068caa5e9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Scripts/BalloonSpawner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc1b8e5b8c3365a49b0274fb637151d6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Scripts/ExplosionWobble.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 012bb97850e84ad4c890dcab506009bc 3 | timeCreated: 1457151512 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Scripts/FireSource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f86ab2e727cd09f43849955c5b35f490 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Scripts/Longbow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30032368544f1a341976db391b260507 3 | timeCreated: 1436921549 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Scripts/SoundBowClick.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc121f192dd724945a1998a9c1f1727d 3 | timeCreated: 1436570818 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5c78ec7a0919a445ad9472465dc95e3 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir02.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir03.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir04.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir05.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir06.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir06.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir07.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir07.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir08.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir08.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir09.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowAir09.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround02.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround03.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround04.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround05.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround06.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround06.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround07.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFallGround07.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFireLoop01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowFireLoop01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit02.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit03.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit04.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit05.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit06.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowHit06.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowIgnite01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowIgnite01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire02.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire03.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire04.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire05.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire06.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire06.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire07.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire07.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire08.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire08.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire09.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire09.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire10.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire10.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire11.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire11.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire12.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire12.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire13.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowLaunchFire13.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock02.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock03.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock04.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock05.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock06.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock06.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock07.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock07.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock08.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock08.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock09.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock09.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock10.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock10.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock11.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock11.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock12.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock12.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock13.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock13.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock14.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock14.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock15.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock15.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock16.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock16.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock17.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowNock17.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease02.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease03.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease04.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease05.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease06.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease06.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease07.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease07.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease08.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease08.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease09.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowRelease09.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn02.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn03.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn04.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn05.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn06.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn06.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn07.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn07.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn08.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/ArrowSpawn08.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce02.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce03.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce04.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce05.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce07.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonBounce07.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonInflate01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonInflate01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop02.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop03.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop04.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop05.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop06.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop06.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop07.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonPop07.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonRubber01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonRubber01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonRubber02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonRubber02.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonRubber03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/BalloonRubber03.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack02.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack03.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack04.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack05.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack06.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack06.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack07.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack07.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack08.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack08.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack09.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack09.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack10.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack10.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack11.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack11.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack12.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack12.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack13.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack13.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack14.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack14.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack15.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack15.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack16.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBack16.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBackclick_01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/LongbowPullBackclick_01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/MasterLongbowMix.mixer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95096f29d1ddcd647ace66f3641d42f5 3 | timeCreated: 1439327332 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/TorchFireLoop01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/TorchFireLoop01.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/TorchFireLoop02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/TorchFireLoop02.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/TorchFireLoop03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/TorchFireLoop03.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds/TorchFireLoop04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Sounds/TorchFireLoop04.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cab18f37a1da964ba73601017942665 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArcheryWeebleTarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Textures/ArcheryWeebleTarget.png -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowAlbedoTransparency.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowAlbedoTransparency.tga -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowAmbientOcclusion.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowAmbientOcclusion.tga -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowEmissive.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowEmissive.psd -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowGlint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowGlint.png -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowMetallicSmoothness.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowMetallicSmoothness.tga -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowNormal.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Textures/ArrowNormal.tga -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/BalloonColor.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Textures/BalloonColor.tga -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/BalloonPop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Textures/BalloonPop.png -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/BalloonPopLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Textures/BalloonPopLine.png -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/Longbow.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Textures/Longbow.psd -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures/TorchFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Longbow/Textures/TorchFire.png -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Readme_InteractionSystem.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 771a37fff499d604b9560d415e371d5e 3 | timeCreated: 1482968518 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd2dd58615e1ced41ae3178451fab370 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Animations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ad10a5377ae04748b1455a7184c6971 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Animations/BallAnimation.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40c8cba0bc8712e4ead8747ee58dd141 3 | timeCreated: 1436402878 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Animators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1c0e3b33fba81e4f854a8bc367fc1d7 3 | folderAsset: yes 4 | timeCreated: 1479867650 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Animators/BallAnimationController.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a34de06929382804eb01e06cd6e8decf 3 | timeCreated: 1436402878 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 452b45a02bfe51243a19acb7251c865b 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/Grey.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07bcd4e0597eb0648b7a45624f2e0594 3 | timeCreated: 1436400675 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/LightGreen.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80a6bae7122d17d4c9243b982a652788 3 | timeCreated: 1436484832 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/ShinyWhite.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e90f10e44a186a49a00679d068515ed 3 | timeCreated: 1436400737 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/ShinyWhiteHighlighted.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6729a932de5127b419aacfd9be7dde0d 3 | timeCreated: 1436400936 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials/ShinyYellow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f5766a8b67794141ac19c1a51d27083 3 | timeCreated: 1436402817 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1a38babac376b7418f11ad0254a0cf2 3 | folderAsset: yes 4 | timeCreated: 1479770193 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Prefabs/ThrowableBall.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0b086fbb874df143b6ac8f53cea5424 3 | timeCreated: 1478570038 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Prefabs/ThrowableCube.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb710a001890d9a44bb74a8ce4f20cc0 3 | timeCreated: 1478570042 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03889921b093f9047aa4cc9b216d6e03 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Scenes/Interactions_Example.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3b77830391f10343929883b18f4d5ae 3 | timeCreated: 1478562444 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39bd76f2a1f5f3d4fa65ddb1d3c4e978 3 | folderAsset: yes 4 | timeCreated: 1479855639 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f105d731b4539940bf471aeb837ac94 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7aaf325fc9c2739499d94017488bd120 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials/TeleportAreaHighlighted.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8cac5516702311429fe7478ff4d7d05 3 | timeCreated: 1446615653 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials/TeleportAreaHighlightedBright.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f649883aab635740a41d91edf1080a4 3 | timeCreated: 1457049960 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials/TeleportAreaHighlightedLow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec3dc73cf20a842438065d10e72e1b14 3 | timeCreated: 1457053661 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials/TeleportAreaLocked.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6802bd638faedf4dbe4a57c1f222991 3 | timeCreated: 1448412208 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials/TeleportAreaVisible.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 417e639b66cd3a24e9c5312be99ce3bd 3 | timeCreated: 1446615653 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials/TeleportAreaVisibleBright.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2d37238fea5a8c4a86c80912b379030 3 | timeCreated: 1457049974 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials/TeleportAreaVisibleLow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f0129f65bc822d429cfad1b63fb9db4 3 | timeCreated: 1457053648 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials/TeleportPlaySpace.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1313a5fd0b97df4798c301e337a1eb8 3 | timeCreated: 1457269507 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials/TeleportPlayspaceVisualize.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e070196015a41bc419ea9e03ba170df5 3 | timeCreated: 1450144946 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials/TeleportPointHighlighted.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f71819766ca687246a2150260bcfc1c5 3 | timeCreated: 1446611747 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials/TeleportPointInvalid.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75bd1350b322bc149ad4b79c719cb687 3 | timeCreated: 1457259521 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials/TeleportPointLocked.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f855134cdd14ab54fa2838027b3eec2f 3 | timeCreated: 1446844603 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials/TeleportPointText.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e8b24558e6899742b276a1b6c480de1 3 | timeCreated: 1447098742 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials/TeleportPointVisible.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 510c6e0b8b5c948458c2b4bc3de5a637 3 | timeCreated: 1446611686 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials/TeleportPointer.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 140bd0e59d9bee94f9f0284c9eef5b32 3 | timeCreated: 1446615653 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5d8794b03b325e4eb7f26642c221012 3 | folderAsset: yes 4 | timeCreated: 1479762245 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Models/TeleportMarker.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Teleport/Models/TeleportMarker.fbx -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 068e188dddb83fb489788207ff119e08 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Prefabs/TeleportPoint.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73ac470d3d909d645a6c89a4664b6849 3 | timeCreated: 1447098240 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Prefabs/Teleporting.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a135b1a2cb9c8f488d4dd00c55ab283 3 | timeCreated: 1446612033 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4c4a2a27a81a8047ab1987a441abb3e 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Scripts/ChaperoneInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebcc975aa3c1d5240936c86b600ca2a5 3 | timeCreated: 1455300521 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Scripts/Teleport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f260935093f73f241bfaa1578e5e5506 3 | timeCreated: 1463176609 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Scripts/TeleportArc.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a043c731a29ecd745a9270fbf002ee68 3 | timeCreated: 1454381251 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Scripts/TeleportArea.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84a4f15a3179f1d4993aded11f4d0232 3 | timeCreated: 1448409114 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Scripts/TeleportPoint.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0135c95e70592e4fac2f29e7b78abcf 3 | timeCreated: 1446611516 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: b93fe5c516cf6ed4b9153ec790f856e2, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15041afb62e0f4f4382863e73ff1eeb5 3 | folderAsset: yes 4 | timeCreated: 1482894611 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Shaders/Highlight.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 787d7485aa6482341a9f55fa37fb84f1 3 | timeCreated: 1458163733 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Sounds.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95cdcc94cf9ba8348b4384b840e4c54c 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Sounds/TeleportBadArea.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Teleport/Sounds/TeleportBadArea.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Sounds/TeleportGo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Teleport/Sounds/TeleportGo.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Sounds/TeleportGoodArea.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Teleport/Sounds/TeleportGoodArea.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Sounds/TeleportPointerLoop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Teleport/Sounds/TeleportPointerLoop.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Sounds/TeleportPointerStart.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Teleport/Sounds/TeleportPointerStart.wav -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0339153ea7d8a9e4b8411691b9a95fdc 3 | folderAsset: yes 4 | timeCreated: 1479762244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Textures/TeleportAreaPatternColor.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Teleport/Textures/TeleportAreaPatternColor.tga -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Textures/TeleportMarker.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/InteractionSystem/Teleport/Textures/TeleportMarker.psd -------------------------------------------------------------------------------- /Assets/SteamVR/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1459d94e0a5b7af4a8a3fa067ae575e9 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/SteamVR/Materials/workshop.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 712cd3a70a5a1da41a6594aac6a97abe 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/SteamVR/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2a747d8f314a8449a70c1fb1807f8dd 3 | folderAsset: yes 4 | timeCreated: 1488984793 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Plugins/openvr_api.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d26b9eddedb33d48be044bb268a57c7 3 | timeCreated: 1429123043 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e2543c4beea3eb4e9ea1e02a4bc2df2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/[CameraRig].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d293c8e162f3874b982baadd71153d2 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/[Status].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 255333d57084e4e46b3d948279746a47 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/[SteamVR].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f35fa249b5008c44ac2998be6f82d4d 3 | timeCreated: 1429757514 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40af2f692be87864ba388a27fcac9ed8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_AlphaOut.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da25bb0dccfd3894181fc5e84714cd17 3 | timeCreated: 1456189850 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_ClearAll.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1eded52540dd0a4988d5d4d76382da9 3 | timeCreated: 1457042024 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_ColorOut.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04d03a6e2ff64bf47911d08912140c31 3 | timeCreated: 1456866489 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_ExternalCamera.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b259143c09ffc447ad059e5b8d8cf89 3 | timeCreated: 1456288801 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_Fade.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f884441bea153347be721454dc13716 3 | timeCreated: 1433284862 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_SphericalProjection.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43b10deca54ca524c8cd9a0fcb622325 3 | timeCreated: 1462380123 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c7547f24e8b4864d87d59903b1f8c40 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scenes/example.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 274ae687a94e2444b85ce2bcf56c1df3 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d88af1b1098a33a42bc43c910c864102 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fae0ddab09ac324c85494471274d6a4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Camera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bca9ccf900ccc84c887d783321d27e2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_CameraFlip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5be45115742b07478e21c85fcc233ec 3 | timeCreated: 1430851231 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_CameraMask.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5828f252c3c228f4b931f66c21e525c4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Controller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9c6e0c408020c341b3c329ec30355a1 3 | timeCreated: 1429900414 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_ControllerManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3b47c2980b93bc48844a54641dab5b8 3 | timeCreated: 1437430318 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Ears.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49a86c1078ce4314b9c4224560e031b9 3 | timeCreated: 1457243016 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Events.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44cb57742f235524189e5d8af1c4f3cc 3 | timeCreated: 1483744463 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_ExternalCamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9da270df5147d24597cc106058c1fa7 3 | timeCreated: 1455761349 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Fade.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ad1e469d4e3e04489f9a36419f1a4f8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Frustum.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2d1785fa0c551e408b6c94398847b76 3 | timeCreated: 1427400484 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_GameView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be96d45fe21847a4a805d408a8015c84 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_IK.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea22dba3baf2ecc4d886bf2444444228 3 | timeCreated: 1437502789 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_LoadLevel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5a6a70209b6e6345bfe18b02314a54e 3 | timeCreated: 1446783318 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Menu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7afc8c74d1f73b458705e0b946292a0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Overlay.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46fe9e0b23166454c8cb73040321d78c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_PlayArea.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f0522eaef74d984591c060d05a095c8 3 | timeCreated: 1438043592 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Render.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e979227f3384fac4b8ca0b3550bf005c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -32000 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_RenderModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5890e3cad70bea64d91aef9145ba3454 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Skybox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13a43e992568b8e48b4bd489b9d96f40 3 | timeCreated: 1439344311 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_SphericalProjection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f4097fabec5d2b4da2b861750319952 3 | timeCreated: 1462380202 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Stats.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c3faa610c019764a81eb8497109e2d4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_TestController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0811e240274b8ea4a8469e82b86747b4 3 | timeCreated: 1432764931 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_TrackedCamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55da3adbb5d30254c97687991608dda0 3 | timeCreated: 1464217571 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_TrackedObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d37c2cf88f7c59f4c8cf5d3812568143 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_UpdatePoses.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b61cd59d8f02e454186a61a5f55c21b9 3 | timeCreated: 1457229804 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Utils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be3c3a084f7b29b4880b42b4cfbf4d8f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/SteamVR/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abfc00e0350ad744083849e2d7ae06ee 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/Textures/arrow.png -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/Textures/background.png -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/Textures/logo.png -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/overlay.renderTexture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 005ed5a6df2f5ff468efd6497d37fefa 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/workshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/Textures/workshop.png -------------------------------------------------------------------------------- /Assets/SteamVR/quickstart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/SteamVR/quickstart.pdf -------------------------------------------------------------------------------- /Assets/SteamVR/quickstart.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7e681076fb2fad47bed246936de90bf 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/SteamVR/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a51c3dbd81ecb6741b7a2c5b06dbcb2e 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/VRInputModule.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f37a4e4f857bd044585c77b4bb55ab6b 3 | folderAsset: yes 4 | timeCreated: 1464341342 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/VRInputModule/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d71819b497380ce429f61db4ea53850f 3 | folderAsset: yes 4 | timeCreated: 1467617299 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/VRInputModule/Prefabs/VRInputModule.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/VRInputModule/Prefabs/VRInputModule.prefab -------------------------------------------------------------------------------- /Assets/VRInputModule/Prefabs/VRInputModule.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6474e98a13233344fab96481295d71ec 3 | timeCreated: 1467617302 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/VRInputModule/Prefabs/[CameraRig].prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/VRInputModule/Prefabs/[CameraRig].prefab -------------------------------------------------------------------------------- /Assets/VRInputModule/Prefabs/[CameraRig].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7bdf19787359bb4eafecb92a93dde27 3 | timeCreated: 1467617339 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/VRInputModule/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e000d10ab35de4d41a9dcf05af4668ce 3 | folderAsset: yes 4 | timeCreated: 1464682741 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/VRInputModule/Resources/LaserPointer.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43af05647f7853a4eb6495653b7384c2 3 | timeCreated: 1464329781 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/VRInputModule/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 988134433e371684997c045c3842fa95 3 | folderAsset: yes 4 | timeCreated: 1464341391 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/VRInputModule/Scripts/IUILaserPointer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b2b7fae172a4b048b467cfeb92909dc 3 | timeCreated: 1464678100 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/VRInputModule/Scripts/LaserPointerEventData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a74fc24349cd574782c1fdb6d2b717a 3 | timeCreated: 1488988389 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/VRInputModule/Scripts/LaserPointerInputModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5844423217c233642ad78db00d4109d5 3 | timeCreated: 1464678100 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/VRInputModule/Scripts/OVRUILaserPointer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0181fc420c845e4d9c0050b3e4999e9 3 | timeCreated: 1485194554 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/VRInputModule/Scripts/UIIgnoreRaycast.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | namespace UnityEngine.UI 5 | { 6 | [AddComponentMenu("UI/Raycast Filters/Ignore Raycast Filter")] 7 | public class UIIgnoreRaycast : MonoBehaviour, ICanvasRaycastFilter 8 | { 9 | public bool IsRaycastLocationValid(Vector2 sp, Camera eventCamera) 10 | { 11 | return false; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Assets/VRInputModule/Scripts/UIIgnoreRaycast.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58749c1a3461591409aeef04e4cac8df 3 | timeCreated: 1464678100 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/VRInputModule/Scripts/ViveUILaserPointer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b11875d151e90904f92783f88b72a991 3 | timeCreated: 1464678100 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/VRInputModule/_demo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1902f576d907fd241bfdca07166d6191 3 | folderAsset: yes 4 | timeCreated: 1464678682 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/VRInputModule/_demo/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02f3c75a0db6e8643b267ea48b407070 3 | folderAsset: yes 4 | timeCreated: 1464678431 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/VRInputModule/_demo/Scenes/demo_ovr.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/VRInputModule/_demo/Scenes/demo_ovr.unity -------------------------------------------------------------------------------- /Assets/VRInputModule/_demo/Scenes/demo_ovr.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 382f207aa3265d74cb7e18203c6db85a 3 | timeCreated: 1464678444 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/VRInputModule/_demo/Scenes/demo_test.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/VRInputModule/_demo/Scenes/demo_test.unity -------------------------------------------------------------------------------- /Assets/VRInputModule/_demo/Scenes/demo_test.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ce1887bc2525654db9524edb62d3e48 3 | timeCreated: 1464678444 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/VRInputModule/_demo/Scenes/demo_vive.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/Assets/VRInputModule/_demo/Scenes/demo_vive.unity -------------------------------------------------------------------------------- /Assets/VRInputModule/_demo/Scenes/demo_vive.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6927fd76fb6f96c46965a0d153d7a6e1 3 | timeCreated: 1464678444 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/VRInputModule/_demo/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a813b8414efeb7498e1863d8a810df5 3 | folderAsset: yes 4 | timeCreated: 1464678694 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/VRInputModule/_demo/Scripts/DemoLaserPointerTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 749c6a71b58fcc94fa52e1b8e9092bad 3 | timeCreated: 1471612144 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/VRInputModule/_demo/Scripts/DemoMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4caab64de7ee5243a46a31427314983 3 | timeCreated: 1464678729 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/VRInputModule/_demo/Scripts/GravityGun.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a5c7070a4ddf0242aafbb87144e6f9c 3 | timeCreated: 1488987758 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.4.1f1 2 | m_StandardAssetsVersion: 0 3 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wacki/Unity-VRInputModule/cde4c63511283580fe599fb5bf850748c81a7504/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Unity-VRInputModule 2 | 3 | VR GUI Input Module for Unity. Includes implementation for the HTC Vive. 4 | (Unity 5.4!) 5 | 6 | ![](http://wacki.me/assets/posts/images/2016-06-vrgui/gui.png) 7 | --------------------------------------------------------------------------------