├── .gitignore ├── .vscode └── settings.json ├── Assets ├── NVIDIA.meta ├── NVIDIA │ ├── Flex Samples.meta │ ├── Flex Samples │ │ ├── 1. Array Actor.meta │ │ ├── 1. Array Actor │ │ │ ├── FlexArrayAsset.asset │ │ │ ├── FlexArrayAsset.asset.meta │ │ │ ├── FlexContainer.asset │ │ │ ├── FlexContainer.asset.meta │ │ │ ├── Scene.unity │ │ │ └── Scene.unity.meta │ │ ├── 2. Source Actor.meta │ │ ├── 2. Source Actor │ │ │ ├── FlexContainer.asset │ │ │ ├── FlexContainer.asset.meta │ │ │ ├── FlexSourceAsset.asset │ │ │ ├── FlexSourceAsset.asset.meta │ │ │ ├── Scene.unity │ │ │ └── Scene.unity.meta │ │ ├── 3. Solid Actor.meta │ │ ├── 3. Solid Actor │ │ │ ├── FlexContainer.asset │ │ │ ├── FlexContainer.asset.meta │ │ │ ├── FlexSolidAsset.asset │ │ │ ├── FlexSolidAsset.asset.meta │ │ │ ├── Scene.unity │ │ │ └── Scene.unity.meta │ │ ├── 4. Soft Actor.meta │ │ ├── 4. Soft Actor │ │ │ ├── FlexContainer.asset │ │ │ ├── FlexContainer.asset.meta │ │ │ ├── FlexSoftAsset.asset │ │ │ ├── FlexSoftAsset.asset.meta │ │ │ ├── Scene.unity │ │ │ └── Scene.unity.meta │ │ ├── 5. Cloth Actor.meta │ │ ├── 5. Cloth Actor │ │ │ ├── FlexClothAsset.asset │ │ │ ├── FlexClothAsset.asset.meta │ │ │ ├── FlexContainer.asset │ │ │ ├── FlexContainer.asset.meta │ │ │ ├── Scene.unity │ │ │ └── Scene.unity.meta │ │ ├── 6. Particle Controller.meta │ │ ├── 6. Particle Controller │ │ │ ├── FlexArrayAsset.asset │ │ │ ├── FlexArrayAsset.asset.meta │ │ │ ├── FlexContainer.asset │ │ │ ├── FlexContainer.asset.meta │ │ │ ├── Red.mat │ │ │ ├── Red.mat.meta │ │ │ ├── Scene.unity │ │ │ └── Scene.unity.meta │ │ ├── 7. Soft Skinning.meta │ │ ├── 7. Soft Skinning │ │ │ ├── FlexContainer.asset │ │ │ ├── FlexContainer.asset.meta │ │ │ ├── FlexSoftAsset.asset │ │ │ ├── FlexSoftAsset.asset.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── default.mat │ │ │ │ └── default.mat.meta │ │ │ ├── Octopus.FBX │ │ │ ├── Octopus.FBX.meta │ │ │ ├── Pink.mat │ │ │ ├── Pink.mat.meta │ │ │ ├── Scene.unity │ │ │ └── Scene.unity.meta │ │ ├── 8. Cloth Deformation.meta │ │ ├── 8. Cloth Deformation │ │ │ ├── Blue.mat │ │ │ ├── Blue.mat.meta │ │ │ ├── FlexClothAsset.asset │ │ │ ├── FlexClothAsset.asset.meta │ │ │ ├── FlexContainer.asset │ │ │ ├── FlexContainer.asset.meta │ │ │ ├── Green.mat │ │ │ ├── Green.mat.meta │ │ │ ├── Red.mat │ │ │ ├── Red.mat.meta │ │ │ ├── Scene.unity │ │ │ └── Scene.unity.meta │ │ ├── 9. Fluid Renderer.meta │ │ └── 9. Fluid Renderer │ │ │ ├── FlexArrayAsset.asset │ │ │ ├── FlexArrayAsset.asset.meta │ │ │ ├── FlexContainer.asset │ │ │ ├── FlexContainer.asset.meta │ │ │ ├── FlexSourceAsset.asset │ │ │ ├── FlexSourceAsset.asset.meta │ │ │ ├── Scene.unity │ │ │ └── Scene.unity.meta │ ├── Flex.meta │ └── Flex │ │ ├── Actors.meta │ │ ├── Actors │ │ ├── FlexActor.cs │ │ ├── FlexActor.cs.meta │ │ ├── FlexArrayActor.cs │ │ ├── FlexArrayActor.cs.meta │ │ ├── FlexClothActor.cs │ │ ├── FlexClothActor.cs.meta │ │ ├── FlexSoftActor.cs │ │ ├── FlexSoftActor.cs.meta │ │ ├── FlexSolidActor.cs │ │ ├── FlexSolidActor.cs.meta │ │ ├── FlexSourceActor.cs │ │ └── FlexSourceActor.cs.meta │ │ ├── Assets.meta │ │ ├── Assets │ │ ├── FlexArrayAsset.cs │ │ ├── FlexArrayAsset.cs.meta │ │ ├── FlexAsset.cs │ │ ├── FlexAsset.cs.meta │ │ ├── FlexClothAsset.cs │ │ ├── FlexClothAsset.cs.meta │ │ ├── FlexContainer.cs │ │ ├── FlexContainer.cs.meta │ │ ├── FlexSoftAsset.cs │ │ ├── FlexSoftAsset.cs.meta │ │ ├── FlexSolidAsset.cs │ │ ├── FlexSolidAsset.cs.meta │ │ ├── FlexSourceAsset.cs │ │ └── FlexSourceAsset.cs.meta │ │ ├── Auxiliary.meta │ │ ├── Auxiliary │ │ ├── _auxFlexDetectShapes.cs │ │ ├── _auxFlexDetectShapes.cs.meta │ │ ├── _auxFlexDrawFluid.cs │ │ ├── _auxFlexDrawFluid.cs.meta │ │ ├── _auxFlexDrawParticles.cs │ │ └── _auxFlexDrawParticles.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── Editors.meta │ │ ├── Editors │ │ │ ├── FlexActorEditor.cs │ │ │ ├── FlexActorEditor.cs.meta │ │ │ ├── FlexArrayActorEditor.cs │ │ │ ├── FlexArrayActorEditor.cs.meta │ │ │ ├── FlexArrayAssetEditor.cs │ │ │ ├── FlexArrayAssetEditor.cs.meta │ │ │ ├── FlexAssetEditor.cs │ │ │ ├── FlexAssetEditor.cs.meta │ │ │ ├── FlexClothActorEditor.cs │ │ │ ├── FlexClothActorEditor.cs.meta │ │ │ ├── FlexClothAssetEditor.cs │ │ │ ├── FlexClothAssetEditor.cs.meta │ │ │ ├── FlexClothDeformationEditor.cs │ │ │ ├── FlexClothDeformationEditor.cs.meta │ │ │ ├── FlexContainerEditor.cs │ │ │ ├── FlexContainerEditor.cs.meta │ │ │ ├── FlexEditor.cs │ │ │ ├── FlexEditor.cs.meta │ │ │ ├── FlexFluidMaterialEditor.cs │ │ │ ├── FlexFluidMaterialEditor.cs.meta │ │ │ ├── FlexFluidRendererEditor.cs │ │ │ ├── FlexFluidRendererEditor.cs.meta │ │ │ ├── FlexSoftActorEditor.cs │ │ │ ├── FlexSoftActorEditor.cs.meta │ │ │ ├── FlexSoftAssetEditor.cs │ │ │ ├── FlexSoftAssetEditor.cs.meta │ │ │ ├── FlexSoftSkinningEditor.cs │ │ │ ├── FlexSoftSkinningEditor.cs.meta │ │ │ ├── FlexSolidActorEditor.cs │ │ │ ├── FlexSolidActorEditor.cs.meta │ │ │ ├── FlexSolidAssetEditor.cs │ │ │ ├── FlexSolidAssetEditor.cs.meta │ │ │ ├── FlexSourceActorEditor.cs │ │ │ ├── FlexSourceActorEditor.cs.meta │ │ │ ├── FlexSourceAssetEditor.cs │ │ │ └── FlexSourceAssetEditor.cs.meta │ │ ├── Tests.meta │ │ └── Tests │ │ │ ├── FlexActorTests.cs │ │ │ ├── FlexActorTests.cs.meta │ │ │ ├── FlexAssetTests.cs │ │ │ ├── FlexAssetTests.cs.meta │ │ │ ├── FlexExtTests.cs │ │ │ ├── FlexExtTests.cs.meta │ │ │ ├── FlexTests.cs │ │ │ ├── FlexTests.cs.meta │ │ │ ├── FlexUtilsTests.cs │ │ │ └── FlexUtilsTests.cs.meta │ │ ├── Helpers.meta │ │ ├── Helpers │ │ ├── FlexBuffer.cs │ │ ├── FlexBuffer.cs.meta │ │ ├── FlexClothDeformation.cs │ │ ├── FlexClothDeformation.cs.meta │ │ ├── FlexFluidRenderer.cs │ │ ├── FlexFluidRenderer.cs.meta │ │ ├── FlexParticleController.cs │ │ ├── FlexParticleController.cs.meta │ │ ├── FlexScene.cs │ │ ├── FlexScene.cs.meta │ │ ├── FlexSoftSkinning.cs │ │ └── FlexSoftSkinning.cs.meta │ │ ├── Native.meta │ │ ├── Native │ │ ├── Flex.cs │ │ ├── Flex.cs.meta │ │ ├── FlexExt.cs │ │ ├── FlexExt.cs.meta │ │ ├── FlexUtils.cs │ │ ├── FlexUtils.cs.meta │ │ ├── Plugins.meta │ │ └── Plugins │ │ │ ├── Win64.meta │ │ │ └── Win64 │ │ │ ├── GFSDK_Aftermath_Lib.x64.dll │ │ │ ├── GFSDK_Aftermath_Lib.x64.dll.meta │ │ │ ├── NvFlexExtReleaseCUDA_x64.dll │ │ │ ├── NvFlexExtReleaseCUDA_x64.dll.meta │ │ │ ├── NvFlexExtReleaseD3D_x64.dll │ │ │ ├── NvFlexExtReleaseD3D_x64.dll.meta │ │ │ ├── NvFlexReleaseCUDA_x64.dll │ │ │ ├── NvFlexReleaseCUDA_x64.dll.meta │ │ │ ├── NvFlexReleaseD3D_x64.dll │ │ │ ├── NvFlexReleaseD3D_x64.dll.meta │ │ │ ├── amd_ags_x64.dll │ │ │ ├── amd_ags_x64.dll.meta │ │ │ ├── cudart64_92.dll │ │ │ ├── cudart64_92.dll.meta │ │ │ ├── flexUtils.dll │ │ │ ├── flexUtils.dll.meta │ │ │ ├── nvToolsExt64_1.dll │ │ │ └── nvToolsExt64_1.dll.meta │ │ ├── Resources.meta │ │ └── Resources │ │ ├── Materials.meta │ │ ├── Materials │ │ ├── DebugParticles.mat │ │ ├── DebugParticles.mat.meta │ │ ├── FlexDrawFluid.mat │ │ ├── FlexDrawFluid.mat.meta │ │ ├── FlexFluidMaterial.mat │ │ ├── FlexFluidMaterial.mat.meta │ │ ├── FluidComposite.mat │ │ ├── FluidComposite.mat.meta │ │ ├── FluidDepth.mat │ │ ├── FluidDepth.mat.meta │ │ ├── FluidDepthBlur.mat │ │ ├── FluidDepthBlur.mat.meta │ │ ├── FluidThickness.mat │ │ ├── FluidThickness.mat.meta │ │ ├── SourcePreview.mat │ │ ├── SourcePreview.mat.meta │ │ ├── SurfaceTest.mat │ │ └── SurfaceTest.mat.meta │ │ ├── Shaders.meta │ │ └── Shaders │ │ ├── DebugPoints.shader │ │ ├── DebugPoints.shader.meta │ │ ├── FlexDrawFluid.cginc │ │ ├── FlexDrawFluid.cginc.meta │ │ ├── FlexDrawFluid.shader │ │ ├── FlexDrawFluid.shader.meta │ │ ├── FlexDrawFluid2.shader │ │ ├── FlexDrawFluid2.shader.meta │ │ ├── FlexDrawParticles.shader │ │ ├── FlexDrawParticles.shader.meta │ │ ├── FlexFluidShader.shader │ │ ├── FlexFluidShader.shader.meta │ │ ├── FlexPrepareFluid.shader │ │ ├── FlexPrepareFluid.shader.meta │ │ ├── FluidComposite.shader │ │ ├── FluidComposite.shader.meta │ │ ├── FluidDepth.shader │ │ ├── FluidDepth.shader.meta │ │ ├── FluidDepthBlur.shader │ │ ├── FluidDepthBlur.shader.meta │ │ ├── FluidThickness.shader │ │ ├── FluidThickness.shader.meta │ │ ├── SourcePreview.shader │ │ ├── SourcePreview.shader.meta │ │ ├── SurfaceShader.shader │ │ ├── SurfaceShader.shader.meta │ │ ├── SurfaceTest.shader │ │ └── SurfaceTest.shader.meta ├── Scenes.meta ├── Scenes │ ├── ArrayAsset-Cylinder.asset │ ├── ArrayAsset-Cylinder.asset.meta │ ├── ClothAsset-Ball.asset │ ├── ClothAsset-Ball.asset.meta │ ├── ClothAsset-Flag.asset │ ├── ClothAsset-Flag.asset.meta │ ├── ClothAssetCurtain.asset │ ├── ClothAssetCurtain.asset.meta │ ├── Container.asset │ ├── Container.asset.meta │ ├── ContainerWind.asset │ ├── ContainerWind.asset.meta │ ├── DeactTeleportHints.cs │ ├── DeactTeleportHints.cs.meta │ ├── MainScene.unity │ ├── MainScene.unity.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Black.mat │ │ ├── Black.mat.meta │ │ ├── JJHat-JJHat.mat │ │ ├── JJHat-JJHat.mat.meta │ │ ├── JJHat.mat │ │ ├── JJHat.mat.meta │ │ ├── YellowMaterial.mat │ │ └── YellowMaterial.mat.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── OnOffWaterScript.cs │ │ └── OnOffWaterScript.cs.meta │ ├── SoftAsset=Oct.asset │ ├── SoftAsset=Oct.asset.meta │ ├── SoftAsset=Rope.asset │ ├── SoftAsset=Rope.asset.meta │ ├── SolidAsset.asset │ ├── SolidAsset.asset.meta │ ├── SolıdCapuccıno.asset │ ├── SolıdCapuccıno.asset.meta │ ├── SourceAsset.asset │ ├── SourceAsset.asset.meta │ ├── TestIgorShader.shader │ ├── TestIgorShader.shader.meta │ ├── models.meta │ └── models │ │ ├── 3d-model2.fbx │ │ ├── 3d-model2.fbx.meta │ │ ├── Cappuccino_cup.obj │ │ ├── Cappuccino_cup.obj.meta │ │ ├── Curtain_Flannel.fbx │ │ ├── Curtain_Flannel.fbx.meta │ │ ├── JJHat.fbx │ │ ├── JJHat.fbx.meta │ │ ├── Room.prefab │ │ ├── Room.prefab.meta │ │ ├── shirt_lp__corona.fbx │ │ ├── shirt_lp__corona.fbx.meta │ │ ├── t+shirts.fbx │ │ ├── t+shirts.fbx.meta │ │ ├── trousers_fbx.fbx │ │ └── trousers_fbx.fbx.meta ├── SteamVR.meta ├── SteamVR │ ├── Editor.meta │ ├── Editor │ │ ├── SteamVR_AutoEnableVR_2018to2019.cs │ │ ├── SteamVR_AutoEnableVR_2018to2019.cs.meta │ │ ├── SteamVR_AutoEnableVR_2019plus.cs │ │ ├── SteamVR_AutoEnableVR_2019plus.cs.meta │ │ ├── SteamVR_AutoEnableVR_5.4to2018.cs │ │ ├── SteamVR_AutoEnableVR_5.4to2018.cs.meta │ │ ├── SteamVR_Editor.asmdef │ │ ├── SteamVR_Editor.asmdef.meta │ │ ├── SteamVR_Editor.cs │ │ ├── SteamVR_Editor.cs.meta │ │ ├── SteamVR_Preferences.cs │ │ ├── SteamVR_Preferences.cs.meta │ │ ├── SteamVR_RenderModelEditor.cs │ │ ├── SteamVR_RenderModelEditor.cs.meta │ │ ├── SteamVR_SkyboxEditor.cs │ │ ├── SteamVR_SkyboxEditor.cs.meta │ │ ├── SteamVR_UnitySettingsWindow.cs │ │ ├── SteamVR_UnitySettingsWindow.cs.meta │ │ ├── SteamVR_Update.cs │ │ ├── SteamVR_Update.cs.meta │ │ ├── SteamVR_UpdateModeEditor.cs │ │ └── SteamVR_UpdateModeEditor.cs.meta │ ├── Extras.meta │ ├── Extras │ │ ├── SteamVR_CameraHelper.cs │ │ ├── SteamVR_CameraHelper.cs.meta │ │ ├── SteamVR_ForceSteamVRMode.cs │ │ ├── SteamVR_ForceSteamVRMode.cs.meta │ │ ├── SteamVR_ForceSteamVRMode.unity │ │ ├── SteamVR_ForceSteamVRMode.unity.meta │ │ ├── SteamVR_GazeTracker.cs │ │ ├── SteamVR_GazeTracker.cs.meta │ │ ├── SteamVR_LaserPointer.cs │ │ ├── SteamVR_LaserPointer.cs.meta │ │ ├── SteamVR_LaserPointer.unity │ │ ├── SteamVR_LaserPointer.unity.meta │ │ ├── SteamVR_ShowTrackingReferences.unity │ │ ├── SteamVR_ShowTrackingReferences.unity.meta │ │ ├── SteamVR_TestIK.unity │ │ ├── SteamVR_TestIK.unity.meta │ │ ├── SteamVR_TestThrow.cs │ │ ├── SteamVR_TestThrow.cs.meta │ │ ├── SteamVR_TestThrow.unity │ │ ├── SteamVR_TestThrow.unity.meta │ │ ├── SteamVR_TestTrackedCamera.cs │ │ ├── SteamVR_TestTrackedCamera.cs.meta │ │ ├── SteamVR_TestTrackedCamera.mat │ │ ├── SteamVR_TestTrackedCamera.mat.meta │ │ ├── SteamVR_TestTrackedCamera.unity │ │ └── SteamVR_TestTrackedCamera.unity.meta │ ├── Icon.meta │ ├── Icon │ │ ├── SteamVR_Skeleton_Pose Icon.png │ │ ├── SteamVR_Skeleton_Pose Icon.png.meta │ │ ├── _steamvr.png │ │ └── _steamvr.png.meta │ ├── Input.meta │ ├── Input │ │ ├── BehaviourUnityEvents.meta │ │ ├── BehaviourUnityEvents │ │ │ ├── SteamVR_Behaviour_BooleanEvent.cs │ │ │ ├── SteamVR_Behaviour_BooleanEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_PoseEvent.cs │ │ │ ├── SteamVR_Behaviour_PoseEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_Pose_ConnectedChangedEvent.cs │ │ │ ├── SteamVR_Behaviour_Pose_ConnectedChangedEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_Pose_DeviceIndexChangedEvent.cs │ │ │ ├── SteamVR_Behaviour_Pose_DeviceIndexChangedEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_Pose_TrackingChangedEvent.cs │ │ │ ├── SteamVR_Behaviour_Pose_TrackingChangedEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_SingleEvent.cs │ │ │ ├── SteamVR_Behaviour_SingleEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_SkeletonEvent.cs │ │ │ ├── SteamVR_Behaviour_SkeletonEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_Skeleton_ConnectedChangedEvent.cs │ │ │ ├── SteamVR_Behaviour_Skeleton_ConnectedChangedEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_Skeleton_TrackingChangedEvent.cs │ │ │ ├── SteamVR_Behaviour_Skeleton_TrackingChangedEvent.cs.meta │ │ │ ├── SteamVR_Behaviour_Vector2Event.cs │ │ │ ├── SteamVR_Behaviour_Vector2Event.cs.meta │ │ │ ├── SteamVR_Behaviour_Vector3Event.cs │ │ │ └── SteamVR_Behaviour_Vector3Event.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── InputSkin.guiskin │ │ │ ├── InputSkin.guiskin.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── Icons.meta │ │ │ │ └── Icons │ │ │ │ │ ├── BlenderBehaviour_Analog_Icon.png │ │ │ │ │ ├── BlenderBehaviour_Analog_Icon.png.meta │ │ │ │ │ ├── BlenderBehaviour_Boolean_Icon.png │ │ │ │ │ ├── BlenderBehaviour_Boolean_Icon.png.meta │ │ │ │ │ ├── BlenderBehaviour_Manual_Icon.png │ │ │ │ │ ├── BlenderBehaviour_Manual_Icon.png.meta │ │ │ │ │ ├── HandLeftIcon.png │ │ │ │ │ ├── HandLeftIcon.png.meta │ │ │ │ │ ├── HandRightIcon.png │ │ │ │ │ ├── HandRightIcon.png.meta │ │ │ │ │ ├── handmask.png │ │ │ │ │ ├── handmask.png.meta │ │ │ │ │ ├── handmask_Index.png │ │ │ │ │ ├── handmask_Index.png.meta │ │ │ │ │ ├── handmask_Middle.png │ │ │ │ │ ├── handmask_Middle.png.meta │ │ │ │ │ ├── handmask_Palm.png │ │ │ │ │ ├── handmask_Palm.png.meta │ │ │ │ │ ├── handmask_Pinky.png │ │ │ │ │ ├── handmask_Pinky.png.meta │ │ │ │ │ ├── handmask_Ring.png │ │ │ │ │ ├── handmask_Ring.png.meta │ │ │ │ │ ├── handmask_Thumb.png │ │ │ │ │ └── handmask_Thumb.png.meta │ │ │ ├── SteamVR_CopyExampleInputFiles.cs │ │ │ ├── SteamVR_CopyExampleInputFiles.cs.meta │ │ │ ├── SteamVR_Input_ActionManifest_Manager.cs │ │ │ ├── SteamVR_Input_ActionManifest_Manager.cs.meta │ │ │ ├── SteamVR_Input_ActionSetPropertyEditor.cs │ │ │ ├── SteamVR_Input_ActionSetPropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Boolean_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Boolean_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_GenericPropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_GenericPropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_In_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_In_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Out_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Out_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Pose_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Pose_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Single_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Single_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Skeleton_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Skeleton_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Vector2_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Vector2_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Vector3_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Vector3_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Action_Vibration_PropertyEditor.cs │ │ │ ├── SteamVR_Input_Action_Vibration_PropertyEditor.cs.meta │ │ │ ├── SteamVR_Input_Editor.asmdef │ │ │ ├── SteamVR_Input_Editor.asmdef.meta │ │ │ ├── SteamVR_Input_EditorWindow.cs │ │ │ ├── SteamVR_Input_EditorWindow.cs.meta │ │ │ ├── SteamVR_Input_Generator.cs │ │ │ ├── SteamVR_Input_Generator.cs.meta │ │ │ ├── SteamVR_Input_LiveWindow.cs │ │ │ ├── SteamVR_Input_LiveWindow.cs.meta │ │ │ ├── SteamVR_Input_PostProcessBuild.cs │ │ │ ├── SteamVR_Input_PostProcessBuild.cs.meta │ │ │ ├── SteamVR_Skeleton_PoserEditor.cs │ │ │ └── SteamVR_Skeleton_PoserEditor.cs.meta │ │ ├── ExampleJSON.meta │ │ ├── ExampleJSON │ │ │ ├── actions.json │ │ │ ├── actions.json.meta │ │ │ ├── binding_holographic_hmd.json │ │ │ ├── binding_holographic_hmd.json.meta │ │ │ ├── binding_index_hmd.json │ │ │ ├── binding_index_hmd.json.meta │ │ │ ├── binding_rift.json │ │ │ ├── binding_rift.json.meta │ │ │ ├── binding_vive.json │ │ │ ├── binding_vive.json.meta │ │ │ ├── binding_vive_cosmos.json │ │ │ ├── binding_vive_cosmos.json.meta │ │ │ ├── binding_vive_pro.json │ │ │ ├── binding_vive_pro.json.meta │ │ │ ├── binding_vive_tracker_camera.json │ │ │ ├── binding_vive_tracker_camera.json.meta │ │ │ ├── bindings_holographic_controller.json │ │ │ ├── bindings_holographic_controller.json.meta │ │ │ ├── bindings_knuckles.json │ │ │ ├── bindings_knuckles.json.meta │ │ │ ├── bindings_logitech_stylus.json │ │ │ ├── bindings_logitech_stylus.json.meta │ │ │ ├── bindings_oculus_touch.json │ │ │ ├── bindings_oculus_touch.json.meta │ │ │ ├── bindings_vive_controller.json │ │ │ ├── bindings_vive_controller.json.meta │ │ │ ├── bindings_vive_cosmos_controller.json │ │ │ └── bindings_vive_cosmos_controller.json.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── JSON.NET.meta │ │ │ └── JSON.NET │ │ │ │ ├── LICENSE_James_Newton-King │ │ │ │ ├── LICENSE_James_Newton-King.meta │ │ │ │ ├── LICENSE_SaladLab │ │ │ │ ├── LICENSE_SaladLab.meta │ │ │ │ ├── Valve.Newtonsoft.Json.dll │ │ │ │ └── Valve.Newtonsoft.Json.dll.meta │ │ ├── SteamVR_Action.cs │ │ ├── SteamVR_Action.cs.meta │ │ ├── SteamVR_ActionDirections.cs │ │ ├── SteamVR_ActionDirections.cs.meta │ │ ├── SteamVR_ActionSet.cs │ │ ├── SteamVR_ActionSet.cs.meta │ │ ├── SteamVR_ActionSet_Manager.cs │ │ ├── SteamVR_ActionSet_Manager.cs.meta │ │ ├── SteamVR_Action_Boolean.cs │ │ ├── SteamVR_Action_Boolean.cs.meta │ │ ├── SteamVR_Action_In.cs │ │ ├── SteamVR_Action_In.cs.meta │ │ ├── SteamVR_Action_Out.cs │ │ ├── SteamVR_Action_Out.cs.meta │ │ ├── SteamVR_Action_Pose.cs │ │ ├── SteamVR_Action_Pose.cs.meta │ │ ├── SteamVR_Action_Single.cs │ │ ├── SteamVR_Action_Single.cs.meta │ │ ├── SteamVR_Action_Skeleton.cs │ │ ├── SteamVR_Action_Skeleton.cs.meta │ │ ├── SteamVR_Action_Vector2.cs │ │ ├── SteamVR_Action_Vector2.cs.meta │ │ ├── SteamVR_Action_Vector3.cs │ │ ├── SteamVR_Action_Vector3.cs.meta │ │ ├── SteamVR_Action_Vibration.cs │ │ ├── SteamVR_Action_Vibration.cs.meta │ │ ├── SteamVR_ActivateActionSetOnLoad.cs │ │ ├── SteamVR_ActivateActionSetOnLoad.cs.meta │ │ ├── SteamVR_Behaviour_Boolean.cs │ │ ├── SteamVR_Behaviour_Boolean.cs.meta │ │ ├── SteamVR_Behaviour_Pose.cs │ │ ├── SteamVR_Behaviour_Pose.cs.meta │ │ ├── SteamVR_Behaviour_Single.cs │ │ ├── SteamVR_Behaviour_Single.cs.meta │ │ ├── SteamVR_Behaviour_Skeleton.cs │ │ ├── SteamVR_Behaviour_Skeleton.cs.meta │ │ ├── SteamVR_Behaviour_SkeletonCustom.cs │ │ ├── SteamVR_Behaviour_SkeletonCustom.cs.meta │ │ ├── SteamVR_Behaviour_Vector2.cs │ │ ├── SteamVR_Behaviour_Vector2.cs.meta │ │ ├── SteamVR_Behaviour_Vector3.cs │ │ ├── SteamVR_Behaviour_Vector3.cs.meta │ │ ├── SteamVR_DefaultAction.cs │ │ ├── SteamVR_DefaultAction.cs.meta │ │ ├── SteamVR_DefaultActionSet.cs │ │ ├── SteamVR_DefaultActionSet.cs.meta │ │ ├── SteamVR_Input.cs │ │ ├── SteamVR_Input.cs.meta │ │ ├── SteamVR_Input_ActionFile.cs │ │ ├── SteamVR_Input_ActionFile.cs.meta │ │ ├── SteamVR_Input_ActionScopes.cs │ │ ├── SteamVR_Input_ActionScopes.cs.meta │ │ ├── SteamVR_Input_ActionSetUsages.cs │ │ ├── SteamVR_Input_ActionSetUsages.cs.meta │ │ ├── SteamVR_Input_BindingFile.cs │ │ ├── SteamVR_Input_BindingFile.cs.meta │ │ ├── SteamVR_Input_Generator_Names.cs │ │ ├── SteamVR_Input_Generator_Names.cs.meta │ │ ├── SteamVR_Input_References.cs │ │ ├── SteamVR_Input_References.cs.meta │ │ ├── SteamVR_Input_Source.cs │ │ ├── SteamVR_Input_Source.cs.meta │ │ ├── SteamVR_Input_Sources.cs │ │ ├── SteamVR_Input_Sources.cs.meta │ │ ├── SteamVR_Skeleton_Pose.cs │ │ ├── SteamVR_Skeleton_Pose.cs.meta │ │ ├── SteamVR_Skeleton_Poser.cs │ │ ├── SteamVR_Skeleton_Poser.cs.meta │ │ ├── SteamVR_UpdateModes.cs │ │ └── SteamVR_UpdateModes.cs.meta │ ├── InteractionSystem.meta │ ├── InteractionSystem │ │ ├── Core.meta │ │ ├── Core │ │ │ ├── Icons.meta │ │ │ ├── Icons │ │ │ │ ├── vr_interaction_system.png │ │ │ │ ├── vr_interaction_system.png.meta │ │ │ │ ├── vr_interaction_system_feet.png │ │ │ │ ├── vr_interaction_system_feet.png.meta │ │ │ │ ├── vr_interaction_system_left_hand.png │ │ │ │ ├── vr_interaction_system_left_hand.png.meta │ │ │ │ ├── vr_interaction_system_left_hand_question.png │ │ │ │ ├── vr_interaction_system_left_hand_question.png.meta │ │ │ │ ├── vr_interaction_system_right_hand.png │ │ │ │ ├── vr_interaction_system_right_hand.png.meta │ │ │ │ ├── vr_interaction_system_right_hand_question.png │ │ │ │ ├── vr_interaction_system_right_hand_question.png.meta │ │ │ │ ├── vr_interaction_system_unknown_hand.png │ │ │ │ └── vr_interaction_system_unknown_hand.png.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── FallbackHandIndicator.mat │ │ │ │ ├── FallbackHandIndicator.mat.meta │ │ │ │ ├── HoverHighlight.mat │ │ │ │ ├── HoverHighlight.mat.meta │ │ │ │ ├── SeeThru.mat │ │ │ │ ├── SeeThru.mat.meta │ │ │ │ ├── SteamVRControllerModel.mat │ │ │ │ └── SteamVRControllerModel.mat.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── HandColliderLeft.prefab │ │ │ │ ├── HandColliderLeft.prefab.meta │ │ │ │ ├── HandColliderRight.prefab │ │ │ │ ├── HandColliderRight.prefab.meta │ │ │ │ ├── LeftRenderModel Alien.prefab │ │ │ │ ├── LeftRenderModel Alien.prefab.meta │ │ │ │ ├── LeftRenderModel Slim.prefab │ │ │ │ ├── LeftRenderModel Slim.prefab.meta │ │ │ │ ├── LeftRenderModel.prefab │ │ │ │ ├── LeftRenderModel.prefab.meta │ │ │ │ ├── LeftRenderModelFloppy.prefab │ │ │ │ ├── LeftRenderModelFloppy.prefab.meta │ │ │ │ ├── Player.prefab │ │ │ │ ├── Player.prefab.meta │ │ │ │ ├── RightRenderModel Alien.prefab │ │ │ │ ├── RightRenderModel Alien.prefab.meta │ │ │ │ ├── RightRenderModel Slim.prefab │ │ │ │ ├── RightRenderModel Slim.prefab.meta │ │ │ │ ├── RightRenderModel.prefab │ │ │ │ ├── RightRenderModel.prefab.meta │ │ │ │ ├── RightRenderModelFloppy.prefab │ │ │ │ └── RightRenderModelFloppy.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── BodyCollider.cs │ │ │ │ ├── BodyCollider.cs.meta │ │ │ │ ├── CircularDrive.cs │ │ │ │ ├── CircularDrive.cs.meta │ │ │ │ ├── ComplexThrowable.cs │ │ │ │ ├── ComplexThrowable.cs.meta │ │ │ │ ├── ControllerHoverHighlight.cs │ │ │ │ ├── ControllerHoverHighlight.cs.meta │ │ │ │ ├── CustomEvents.cs │ │ │ │ ├── CustomEvents.cs.meta │ │ │ │ ├── DebugUI.cs │ │ │ │ ├── DebugUI.cs.meta │ │ │ │ ├── DestroyOnDetachedFromHand.cs │ │ │ │ ├── DestroyOnDetachedFromHand.cs.meta │ │ │ │ ├── DestroyOnParticleSystemDeath.cs │ │ │ │ ├── DestroyOnParticleSystemDeath.cs.meta │ │ │ │ ├── DestroyOnTriggerEnter.cs │ │ │ │ ├── DestroyOnTriggerEnter.cs.meta │ │ │ │ ├── DistanceHaptics.cs │ │ │ │ ├── DistanceHaptics.cs.meta │ │ │ │ ├── DontDestroyOnLoad.cs │ │ │ │ ├── DontDestroyOnLoad.cs.meta │ │ │ │ ├── EnumFlags.cs │ │ │ │ ├── EnumFlags.cs.meta │ │ │ │ ├── Equippable.cs │ │ │ │ ├── Equippable.cs.meta │ │ │ │ ├── FallbackCameraController.cs │ │ │ │ ├── FallbackCameraController.cs.meta │ │ │ │ ├── GrabTypes.cs │ │ │ │ ├── GrabTypes.cs.meta │ │ │ │ ├── Hand.cs │ │ │ │ ├── Hand.cs.meta │ │ │ │ ├── HandCollider.cs │ │ │ │ ├── HandCollider.cs.meta │ │ │ │ ├── HandPhysics.cs │ │ │ │ ├── HandPhysics.cs.meta │ │ │ │ ├── HapticRack.cs │ │ │ │ ├── HapticRack.cs.meta │ │ │ │ ├── HideOnHandFocusLost.cs │ │ │ │ ├── HideOnHandFocusLost.cs.meta │ │ │ │ ├── HoverButton.cs │ │ │ │ ├── HoverButton.cs.meta │ │ │ │ ├── IgnoreHovering.cs │ │ │ │ ├── IgnoreHovering.cs.meta │ │ │ │ ├── InputModule.cs │ │ │ │ ├── InputModule.cs.meta │ │ │ │ ├── Interactable.cs │ │ │ │ ├── Interactable.cs.meta │ │ │ │ ├── InteractableDebug.cs │ │ │ │ ├── InteractableDebug.cs.meta │ │ │ │ ├── InteractableHoverEvents.cs │ │ │ │ ├── InteractableHoverEvents.cs.meta │ │ │ │ ├── ItemPackage.cs │ │ │ │ ├── ItemPackage.cs.meta │ │ │ │ ├── ItemPackageReference.cs │ │ │ │ ├── ItemPackageReference.cs.meta │ │ │ │ ├── ItemPackageSpawner.cs │ │ │ │ ├── ItemPackageSpawner.cs.meta │ │ │ │ ├── LinearAnimation.cs │ │ │ │ ├── LinearAnimation.cs.meta │ │ │ │ ├── LinearAnimator.cs │ │ │ │ ├── LinearAnimator.cs.meta │ │ │ │ ├── LinearAudioPitch.cs │ │ │ │ ├── LinearAudioPitch.cs.meta │ │ │ │ ├── LinearBlendshape.cs │ │ │ │ ├── LinearBlendshape.cs.meta │ │ │ │ ├── LinearDisplacement.cs │ │ │ │ ├── LinearDisplacement.cs.meta │ │ │ │ ├── LinearDrive.cs │ │ │ │ ├── LinearDrive.cs.meta │ │ │ │ ├── LinearMapping.cs │ │ │ │ ├── LinearMapping.cs.meta │ │ │ │ ├── ModalThrowable.cs │ │ │ │ ├── ModalThrowable.cs.meta │ │ │ │ ├── PlaySound.cs │ │ │ │ ├── PlaySound.cs.meta │ │ │ │ ├── Player.cs │ │ │ │ ├── Player.cs.meta │ │ │ │ ├── RenderModel.cs │ │ │ │ ├── RenderModel.cs.meta │ │ │ │ ├── SeeThru.cs │ │ │ │ ├── SeeThru.cs.meta │ │ │ │ ├── SleepOnAwake.cs │ │ │ │ ├── SleepOnAwake.cs.meta │ │ │ │ ├── SoundDeparent.cs │ │ │ │ ├── SoundDeparent.cs.meta │ │ │ │ ├── SoundPlayOneshot.cs │ │ │ │ ├── SoundPlayOneshot.cs.meta │ │ │ │ ├── SpawnAndAttachAfterControllerIsTracking.cs │ │ │ │ ├── SpawnAndAttachAfterControllerIsTracking.cs.meta │ │ │ │ ├── SpawnAndAttachToHand.cs │ │ │ │ ├── SpawnAndAttachToHand.cs.meta │ │ │ │ ├── Throwable.cs │ │ │ │ ├── Throwable.cs.meta │ │ │ │ ├── UIElement.cs │ │ │ │ ├── UIElement.cs.meta │ │ │ │ ├── Unparent.cs │ │ │ │ ├── Unparent.cs.meta │ │ │ │ ├── Util.cs │ │ │ │ ├── Util.cs.meta │ │ │ │ ├── VelocityEstimator.cs │ │ │ │ └── VelocityEstimator.cs.meta │ │ │ ├── Shaders.meta │ │ │ └── Shaders │ │ │ │ ├── SeeThru.shader │ │ │ │ ├── SeeThru.shader.meta │ │ │ │ ├── Silhouette.shader │ │ │ │ └── Silhouette.shader.meta │ │ ├── Hints.meta │ │ ├── Hints │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── ControllerButtonHints.mat │ │ │ │ ├── ControllerButtonHints.mat.meta │ │ │ │ ├── ControllerTextHintAnchor.mat │ │ │ │ ├── ControllerTextHintAnchor.mat.meta │ │ │ │ ├── ControllerTextHintLine.mat │ │ │ │ ├── ControllerTextHintLine.mat.meta │ │ │ │ ├── URPControllerButtonHints.mat │ │ │ │ ├── URPControllerButtonHints.mat.meta │ │ │ │ ├── URPControllerTextHintAnchor.mat │ │ │ │ ├── URPControllerTextHintAnchor.mat.meta │ │ │ │ ├── URPControllerTextHintLine.mat │ │ │ │ └── URPControllerTextHintLine.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 │ │ ├── Longbow.meta │ │ ├── Longbow │ │ │ ├── Animators.meta │ │ │ ├── Animators │ │ │ │ ├── LongbowAnimationController.controller │ │ │ │ └── LongbowAnimationController.controller.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── ArcheryTargetWeeble.mat │ │ │ │ ├── ArcheryTargetWeeble.mat.meta │ │ │ │ ├── Arrow.mat │ │ │ │ ├── Arrow.mat.meta │ │ │ │ ├── ArrowGlint.mat │ │ │ │ ├── ArrowGlint.mat.meta │ │ │ │ ├── BalloonColor.mat │ │ │ │ ├── BalloonColor.mat.meta │ │ │ │ ├── BalloonPop.mat │ │ │ │ ├── BalloonPop.mat.meta │ │ │ │ ├── BalloonPopLine.mat │ │ │ │ ├── BalloonPopLine.mat.meta │ │ │ │ ├── ItemPickupOutline.mat │ │ │ │ ├── ItemPickupOutline.mat.meta │ │ │ │ ├── ItemPickupOutlineThick.mat │ │ │ │ ├── ItemPickupOutlineThick.mat.meta │ │ │ │ ├── Longbow.mat │ │ │ │ ├── Longbow.mat.meta │ │ │ │ ├── LongbowNotch.mat │ │ │ │ ├── LongbowNotch.mat.meta │ │ │ │ ├── LongbowString.mat │ │ │ │ ├── LongbowString.mat.meta │ │ │ │ ├── TorchFire.mat │ │ │ │ ├── TorchFire.mat.meta │ │ │ │ ├── TorchHead.mat │ │ │ │ ├── TorchHead.mat.meta │ │ │ │ ├── TorchShaft.mat │ │ │ │ └── TorchShaft.mat.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ │ ├── Arrow.fbx │ │ │ │ ├── Arrow.fbx.meta │ │ │ │ ├── Balloon.fbx │ │ │ │ ├── Balloon.fbx.meta │ │ │ │ ├── Longbow.fbx │ │ │ │ └── Longbow.fbx.meta │ │ │ ├── PhysicMaterials.meta │ │ │ ├── PhysicMaterials │ │ │ │ ├── ArcheryTargetPhysMaterial.physicMaterial │ │ │ │ └── ArcheryTargetPhysMaterial.physicMaterial.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── ArcheryWeeble.prefab │ │ │ │ ├── ArcheryWeeble.prefab.meta │ │ │ │ ├── Arrow.prefab │ │ │ │ ├── Arrow.prefab.meta │ │ │ │ ├── ArrowHand.prefab │ │ │ │ ├── ArrowHand.prefab.meta │ │ │ │ ├── Balloon.prefab │ │ │ │ ├── Balloon.prefab.meta │ │ │ │ ├── BalloonPop.prefab │ │ │ │ ├── BalloonPop.prefab.meta │ │ │ │ ├── BalloonPopNoSound.prefab │ │ │ │ ├── BalloonPopNoSound.prefab.meta │ │ │ │ ├── BalloonSpawner.prefab │ │ │ │ ├── BalloonSpawner.prefab.meta │ │ │ │ ├── FireSmall.prefab │ │ │ │ ├── FireSmall.prefab.meta │ │ │ │ ├── FireTiny.prefab │ │ │ │ ├── FireTiny.prefab.meta │ │ │ │ ├── FireWhip.prefab │ │ │ │ ├── FireWhip.prefab.meta │ │ │ │ ├── Longbow.prefab │ │ │ │ ├── Longbow.prefab.meta │ │ │ │ ├── LongbowItemPackage.prefab │ │ │ │ ├── LongbowItemPackage.prefab.meta │ │ │ │ ├── LongbowOutline.prefab │ │ │ │ ├── LongbowOutline.prefab.meta │ │ │ │ ├── LongbowPreview.prefab │ │ │ │ ├── LongbowPreview.prefab.meta │ │ │ │ ├── Torch.prefab │ │ │ │ └── Torch.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── ArcheryTarget.cs │ │ │ │ ├── ArcheryTarget.cs.meta │ │ │ │ ├── Arrow.cs │ │ │ │ ├── Arrow.cs.meta │ │ │ │ ├── ArrowHand.cs │ │ │ │ ├── ArrowHand.cs.meta │ │ │ │ ├── ArrowheadRotation.cs │ │ │ │ ├── ArrowheadRotation.cs.meta │ │ │ │ ├── Balloon.cs │ │ │ │ ├── Balloon.cs.meta │ │ │ │ ├── BalloonColliders.cs │ │ │ │ ├── BalloonColliders.cs.meta │ │ │ │ ├── BalloonHapticBump.cs │ │ │ │ ├── BalloonHapticBump.cs.meta │ │ │ │ ├── BalloonSpawner.cs │ │ │ │ ├── BalloonSpawner.cs.meta │ │ │ │ ├── ExplosionWobble.cs │ │ │ │ ├── ExplosionWobble.cs.meta │ │ │ │ ├── FireSource.cs │ │ │ │ ├── FireSource.cs.meta │ │ │ │ ├── Longbow.cs │ │ │ │ ├── Longbow.cs.meta │ │ │ │ ├── SoundBowClick.cs │ │ │ │ └── SoundBowClick.cs.meta │ │ │ ├── Sounds.meta │ │ │ ├── Sounds │ │ │ │ ├── ArrowAir01.wav │ │ │ │ ├── ArrowAir01.wav.meta │ │ │ │ ├── ArrowAir02.wav │ │ │ │ ├── ArrowAir02.wav.meta │ │ │ │ ├── ArrowAir03.wav │ │ │ │ ├── ArrowAir03.wav.meta │ │ │ │ ├── ArrowAir04.wav │ │ │ │ ├── ArrowAir04.wav.meta │ │ │ │ ├── ArrowAir05.wav │ │ │ │ ├── ArrowAir05.wav.meta │ │ │ │ ├── ArrowAir06.wav │ │ │ │ ├── ArrowAir06.wav.meta │ │ │ │ ├── ArrowAir07.wav │ │ │ │ ├── ArrowAir07.wav.meta │ │ │ │ ├── ArrowAir08.wav │ │ │ │ ├── ArrowAir08.wav.meta │ │ │ │ ├── ArrowAir09.wav │ │ │ │ ├── ArrowAir09.wav.meta │ │ │ │ ├── ArrowFallGround01.wav │ │ │ │ ├── ArrowFallGround01.wav.meta │ │ │ │ ├── ArrowFallGround02.wav │ │ │ │ ├── ArrowFallGround02.wav.meta │ │ │ │ ├── ArrowFallGround03.wav │ │ │ │ ├── ArrowFallGround03.wav.meta │ │ │ │ ├── ArrowFallGround04.wav │ │ │ │ ├── ArrowFallGround04.wav.meta │ │ │ │ ├── ArrowFallGround05.wav │ │ │ │ ├── ArrowFallGround05.wav.meta │ │ │ │ ├── ArrowFallGround06.wav │ │ │ │ ├── ArrowFallGround06.wav.meta │ │ │ │ ├── ArrowFallGround07.wav │ │ │ │ ├── ArrowFallGround07.wav.meta │ │ │ │ ├── ArrowFireLoop01.wav │ │ │ │ ├── ArrowFireLoop01.wav.meta │ │ │ │ ├── ArrowHit01.wav │ │ │ │ ├── ArrowHit01.wav.meta │ │ │ │ ├── ArrowHit02.wav │ │ │ │ ├── ArrowHit02.wav.meta │ │ │ │ ├── ArrowHit03.wav │ │ │ │ ├── ArrowHit03.wav.meta │ │ │ │ ├── ArrowHit04.wav │ │ │ │ ├── ArrowHit04.wav.meta │ │ │ │ ├── ArrowHit05.wav │ │ │ │ ├── ArrowHit05.wav.meta │ │ │ │ ├── ArrowHit06.wav │ │ │ │ ├── ArrowHit06.wav.meta │ │ │ │ ├── ArrowIgnite01.wav │ │ │ │ ├── ArrowIgnite01.wav.meta │ │ │ │ ├── ArrowLaunchFire01.wav │ │ │ │ ├── ArrowLaunchFire01.wav.meta │ │ │ │ ├── ArrowLaunchFire02.wav │ │ │ │ ├── ArrowLaunchFire02.wav.meta │ │ │ │ ├── ArrowLaunchFire03.wav │ │ │ │ ├── ArrowLaunchFire03.wav.meta │ │ │ │ ├── ArrowLaunchFire04.wav │ │ │ │ ├── ArrowLaunchFire04.wav.meta │ │ │ │ ├── ArrowLaunchFire05.wav │ │ │ │ ├── ArrowLaunchFire05.wav.meta │ │ │ │ ├── ArrowLaunchFire06.wav │ │ │ │ ├── ArrowLaunchFire06.wav.meta │ │ │ │ ├── ArrowLaunchFire07.wav │ │ │ │ ├── ArrowLaunchFire07.wav.meta │ │ │ │ ├── ArrowLaunchFire08.wav │ │ │ │ ├── ArrowLaunchFire08.wav.meta │ │ │ │ ├── ArrowLaunchFire09.wav │ │ │ │ ├── ArrowLaunchFire09.wav.meta │ │ │ │ ├── ArrowLaunchFire10.wav │ │ │ │ ├── ArrowLaunchFire10.wav.meta │ │ │ │ ├── ArrowLaunchFire11.wav │ │ │ │ ├── ArrowLaunchFire11.wav.meta │ │ │ │ ├── ArrowLaunchFire12.wav │ │ │ │ ├── ArrowLaunchFire12.wav.meta │ │ │ │ ├── ArrowLaunchFire13.wav │ │ │ │ ├── ArrowLaunchFire13.wav.meta │ │ │ │ ├── ArrowNock01.wav │ │ │ │ ├── ArrowNock01.wav.meta │ │ │ │ ├── ArrowNock02.wav │ │ │ │ ├── ArrowNock02.wav.meta │ │ │ │ ├── ArrowNock03.wav │ │ │ │ ├── ArrowNock03.wav.meta │ │ │ │ ├── ArrowNock04.wav │ │ │ │ ├── ArrowNock04.wav.meta │ │ │ │ ├── ArrowNock05.wav │ │ │ │ ├── ArrowNock05.wav.meta │ │ │ │ ├── ArrowNock06.wav │ │ │ │ ├── ArrowNock06.wav.meta │ │ │ │ ├── ArrowNock07.wav │ │ │ │ ├── ArrowNock07.wav.meta │ │ │ │ ├── ArrowNock08.wav │ │ │ │ ├── ArrowNock08.wav.meta │ │ │ │ ├── ArrowNock09.wav │ │ │ │ ├── ArrowNock09.wav.meta │ │ │ │ ├── ArrowNock10.wav │ │ │ │ ├── ArrowNock10.wav.meta │ │ │ │ ├── ArrowNock11.wav │ │ │ │ ├── ArrowNock11.wav.meta │ │ │ │ ├── ArrowNock12.wav │ │ │ │ ├── ArrowNock12.wav.meta │ │ │ │ ├── ArrowNock13.wav │ │ │ │ ├── ArrowNock13.wav.meta │ │ │ │ ├── ArrowNock14.wav │ │ │ │ ├── ArrowNock14.wav.meta │ │ │ │ ├── ArrowNock15.wav │ │ │ │ ├── ArrowNock15.wav.meta │ │ │ │ ├── ArrowNock16.wav │ │ │ │ ├── ArrowNock16.wav.meta │ │ │ │ ├── ArrowNock17.wav │ │ │ │ ├── ArrowNock17.wav.meta │ │ │ │ ├── ArrowRelease01.wav │ │ │ │ ├── ArrowRelease01.wav.meta │ │ │ │ ├── ArrowRelease02.wav │ │ │ │ ├── ArrowRelease02.wav.meta │ │ │ │ ├── ArrowRelease03.wav │ │ │ │ ├── ArrowRelease03.wav.meta │ │ │ │ ├── ArrowRelease04.wav │ │ │ │ ├── ArrowRelease04.wav.meta │ │ │ │ ├── ArrowRelease05.wav │ │ │ │ ├── ArrowRelease05.wav.meta │ │ │ │ ├── ArrowRelease06.wav │ │ │ │ ├── ArrowRelease06.wav.meta │ │ │ │ ├── ArrowRelease07.wav │ │ │ │ ├── ArrowRelease07.wav.meta │ │ │ │ ├── ArrowRelease08.wav │ │ │ │ ├── ArrowRelease08.wav.meta │ │ │ │ ├── ArrowRelease09.wav │ │ │ │ ├── ArrowRelease09.wav.meta │ │ │ │ ├── ArrowSpawn01.wav │ │ │ │ ├── ArrowSpawn01.wav.meta │ │ │ │ ├── ArrowSpawn02.wav │ │ │ │ ├── ArrowSpawn02.wav.meta │ │ │ │ ├── ArrowSpawn03.wav │ │ │ │ ├── ArrowSpawn03.wav.meta │ │ │ │ ├── ArrowSpawn04.wav │ │ │ │ ├── ArrowSpawn04.wav.meta │ │ │ │ ├── ArrowSpawn05.wav │ │ │ │ ├── ArrowSpawn05.wav.meta │ │ │ │ ├── ArrowSpawn06.wav │ │ │ │ ├── ArrowSpawn06.wav.meta │ │ │ │ ├── ArrowSpawn07.wav │ │ │ │ ├── ArrowSpawn07.wav.meta │ │ │ │ ├── ArrowSpawn08.wav │ │ │ │ ├── ArrowSpawn08.wav.meta │ │ │ │ ├── BalloonBounce01.wav │ │ │ │ ├── BalloonBounce01.wav.meta │ │ │ │ ├── BalloonBounce02.wav │ │ │ │ ├── BalloonBounce02.wav.meta │ │ │ │ ├── BalloonBounce03.wav │ │ │ │ ├── BalloonBounce03.wav.meta │ │ │ │ ├── BalloonBounce04.wav │ │ │ │ ├── BalloonBounce04.wav.meta │ │ │ │ ├── BalloonBounce05.wav │ │ │ │ ├── BalloonBounce05.wav.meta │ │ │ │ ├── BalloonBounce07.wav │ │ │ │ ├── BalloonBounce07.wav.meta │ │ │ │ ├── BalloonInflate01.wav │ │ │ │ ├── BalloonInflate01.wav.meta │ │ │ │ ├── BalloonPop01.wav │ │ │ │ ├── BalloonPop01.wav.meta │ │ │ │ ├── BalloonPop02.wav │ │ │ │ ├── BalloonPop02.wav.meta │ │ │ │ ├── BalloonPop03.wav │ │ │ │ ├── BalloonPop03.wav.meta │ │ │ │ ├── BalloonPop04.wav │ │ │ │ ├── BalloonPop04.wav.meta │ │ │ │ ├── BalloonPop05.wav │ │ │ │ ├── BalloonPop05.wav.meta │ │ │ │ ├── BalloonPop06.wav │ │ │ │ ├── BalloonPop06.wav.meta │ │ │ │ ├── BalloonPop07.wav │ │ │ │ ├── BalloonPop07.wav.meta │ │ │ │ ├── BalloonRubber01.wav │ │ │ │ ├── BalloonRubber01.wav.meta │ │ │ │ ├── BalloonRubber02.wav │ │ │ │ ├── BalloonRubber02.wav.meta │ │ │ │ ├── BalloonRubber03.wav │ │ │ │ ├── BalloonRubber03.wav.meta │ │ │ │ ├── Default.mixer │ │ │ │ ├── Default.mixer.meta │ │ │ │ ├── LongbowPullBack01.wav │ │ │ │ ├── LongbowPullBack01.wav.meta │ │ │ │ ├── LongbowPullBack02.wav │ │ │ │ ├── LongbowPullBack02.wav.meta │ │ │ │ ├── LongbowPullBack03.wav │ │ │ │ ├── LongbowPullBack03.wav.meta │ │ │ │ ├── LongbowPullBack04.wav │ │ │ │ ├── LongbowPullBack04.wav.meta │ │ │ │ ├── LongbowPullBack05.wav │ │ │ │ ├── LongbowPullBack05.wav.meta │ │ │ │ ├── LongbowPullBack06.wav │ │ │ │ ├── LongbowPullBack06.wav.meta │ │ │ │ ├── LongbowPullBack07.wav │ │ │ │ ├── LongbowPullBack07.wav.meta │ │ │ │ ├── LongbowPullBack08.wav │ │ │ │ ├── LongbowPullBack08.wav.meta │ │ │ │ ├── LongbowPullBack09.wav │ │ │ │ ├── LongbowPullBack09.wav.meta │ │ │ │ ├── LongbowPullBack10.wav │ │ │ │ ├── LongbowPullBack10.wav.meta │ │ │ │ ├── LongbowPullBack11.wav │ │ │ │ ├── LongbowPullBack11.wav.meta │ │ │ │ ├── LongbowPullBack12.wav │ │ │ │ ├── LongbowPullBack12.wav.meta │ │ │ │ ├── LongbowPullBack13.wav │ │ │ │ ├── LongbowPullBack13.wav.meta │ │ │ │ ├── LongbowPullBack14.wav │ │ │ │ ├── LongbowPullBack14.wav.meta │ │ │ │ ├── LongbowPullBack15.wav │ │ │ │ ├── LongbowPullBack15.wav.meta │ │ │ │ ├── LongbowPullBack16.wav │ │ │ │ ├── LongbowPullBack16.wav.meta │ │ │ │ ├── LongbowPullBackclick_01.wav │ │ │ │ ├── LongbowPullBackclick_01.wav.meta │ │ │ │ ├── MasterLongbowMix.mixer │ │ │ │ ├── MasterLongbowMix.mixer.meta │ │ │ │ ├── TorchFireLoop01.wav │ │ │ │ ├── TorchFireLoop01.wav.meta │ │ │ │ ├── TorchFireLoop02.wav │ │ │ │ ├── TorchFireLoop02.wav.meta │ │ │ │ ├── TorchFireLoop03.wav │ │ │ │ ├── TorchFireLoop03.wav.meta │ │ │ │ ├── TorchFireLoop04.wav │ │ │ │ └── TorchFireLoop04.wav.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── ArcheryWeebleTarget.png │ │ │ │ ├── ArcheryWeebleTarget.png.meta │ │ │ │ ├── ArrowAlbedoTransparency.png │ │ │ │ ├── ArrowAlbedoTransparency.png.meta │ │ │ │ ├── ArrowAmbientOcclusion.png │ │ │ │ ├── ArrowAmbientOcclusion.png.meta │ │ │ │ ├── ArrowGlint.png │ │ │ │ ├── ArrowGlint.png.meta │ │ │ │ ├── ArrowMetallicSmoothness.png │ │ │ │ ├── ArrowMetallicSmoothness.png.meta │ │ │ │ ├── ArrowNormal.png │ │ │ │ ├── ArrowNormal.png.meta │ │ │ │ ├── BalloonColor.png │ │ │ │ ├── BalloonColor.png.meta │ │ │ │ ├── BalloonPop.png │ │ │ │ ├── BalloonPop.png.meta │ │ │ │ ├── BalloonPopLine.png │ │ │ │ ├── BalloonPopLine.png.meta │ │ │ │ ├── Longbow.png │ │ │ │ ├── Longbow.png.meta │ │ │ │ ├── TorchFire.png │ │ │ │ └── TorchFire.png.meta │ │ ├── Poses.meta │ │ ├── Poses │ │ │ ├── CubePose small.asset │ │ │ ├── CubePose small.asset.meta │ │ │ ├── CubePose.asset │ │ │ ├── CubePose.asset.meta │ │ │ ├── GrenadePose.asset │ │ │ ├── GrenadePose.asset.meta │ │ │ ├── GrenadePose_pinch.asset │ │ │ ├── GrenadePose_pinch.asset.meta │ │ │ ├── HappyBallPose.asset │ │ │ ├── HappyBallPose.asset.meta │ │ │ ├── HappyBallPoseSqueezed.asset │ │ │ ├── HappyBallPoseSqueezed.asset.meta │ │ │ ├── SquishyBase.asset │ │ │ ├── SquishyBase.asset.meta │ │ │ ├── SquishySqueeze.asset │ │ │ ├── SquishySqueeze.asset.meta │ │ │ ├── fallback_fist.asset │ │ │ ├── fallback_fist.asset.meta │ │ │ ├── fallback_point.asset │ │ │ ├── fallback_point.asset.meta │ │ │ ├── fallback_relaxed.asset │ │ │ ├── fallback_relaxed.asset.meta │ │ │ ├── longbowArrowPose.asset │ │ │ ├── longbowArrowPose.asset.meta │ │ │ ├── longbowPose.asset │ │ │ ├── longbowPose.asset.meta │ │ │ ├── spherePose.asset │ │ │ ├── spherePose.asset.meta │ │ │ ├── sphereSmallPose.asset │ │ │ └── sphereSmallPose.asset.meta │ │ ├── Samples.meta │ │ ├── Samples │ │ │ ├── Animations.meta │ │ │ ├── Animations │ │ │ │ ├── BallAnimation.anim │ │ │ │ └── BallAnimation.anim.meta │ │ │ ├── Animators.meta │ │ │ ├── Animators │ │ │ │ ├── BallAnimationController.controller │ │ │ │ └── BallAnimationController.controller.meta │ │ │ ├── BuggyBuddy.meta │ │ │ ├── BuggyBuddy │ │ │ │ ├── Audio.meta │ │ │ │ ├── Audio │ │ │ │ │ ├── AmbientSound.cs │ │ │ │ │ ├── AmbientSound.cs.meta │ │ │ │ │ ├── Idle_loop.wav │ │ │ │ │ ├── Idle_loop.wav.meta │ │ │ │ │ ├── motor_loop.wav │ │ │ │ │ ├── motor_loop.wav.meta │ │ │ │ │ ├── skidLoop.wav │ │ │ │ │ └── skidLoop.wav.meta │ │ │ │ ├── Buggy Controller.fbx │ │ │ │ ├── Buggy Controller.fbx.meta │ │ │ │ ├── Buggy.fbx │ │ │ │ ├── Buggy.fbx.meta │ │ │ │ ├── Buggy.physicMaterial │ │ │ │ ├── Buggy.physicMaterial.meta │ │ │ │ ├── BuggyBuddy.cs │ │ │ │ ├── BuggyBuddy.cs.meta │ │ │ │ ├── BuggyController.cs │ │ │ │ ├── BuggyController.cs.meta │ │ │ │ ├── Lightcone.fbx │ │ │ │ ├── Lightcone.fbx.meta │ │ │ │ ├── LockToPoint.cs │ │ │ │ ├── LockToPoint.cs.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Buggy.mat │ │ │ │ │ ├── Buggy.mat.meta │ │ │ │ │ ├── BuggyController.mat │ │ │ │ │ ├── BuggyController.mat.meta │ │ │ │ │ ├── BuggyController__Controller.mat │ │ │ │ │ ├── BuggyController__Controller.mat.meta │ │ │ │ │ ├── LightCone.shader │ │ │ │ │ ├── LightCone.shader.meta │ │ │ │ │ ├── LightCone_Blue.mat │ │ │ │ │ ├── LightCone_Blue.mat.meta │ │ │ │ │ ├── No Name.mat │ │ │ │ │ ├── No Name.mat.meta │ │ │ │ │ ├── laser.mat │ │ │ │ │ ├── laser.mat.meta │ │ │ │ │ ├── skidDust.mat │ │ │ │ │ ├── skidDust.mat.meta │ │ │ │ │ ├── smokeTurbo.mat │ │ │ │ │ ├── smokeTurbo.mat.meta │ │ │ │ │ ├── unnamed.mat │ │ │ │ │ └── unnamed.mat.meta │ │ │ │ ├── Textures.meta │ │ │ │ ├── Textures │ │ │ │ │ ├── Buggy_LO_Buggy_AlbedoTransparency.png │ │ │ │ │ ├── Buggy_LO_Buggy_AlbedoTransparency.png.meta │ │ │ │ │ ├── Buggy_LO_Buggy_Emission.png │ │ │ │ │ ├── Buggy_LO_Buggy_Emission.png.meta │ │ │ │ │ ├── Buggy_LO_Buggy_MetallicSmoothness.png │ │ │ │ │ ├── Buggy_LO_Buggy_MetallicSmoothness.png.meta │ │ │ │ │ ├── Buggy_LO_Buggy_Normal.png │ │ │ │ │ ├── Buggy_LO_Buggy_Normal.png.meta │ │ │ │ │ ├── controlerbuggy_LO_BuggyController_AlbedoTransparency.png │ │ │ │ │ ├── controlerbuggy_LO_BuggyController_AlbedoTransparency.png.meta │ │ │ │ │ ├── controlerbuggy_LO_BuggyController_Emission.png │ │ │ │ │ ├── controlerbuggy_LO_BuggyController_Emission.png.meta │ │ │ │ │ ├── controlerbuggy_LO_BuggyController_MetallicSmoothness.png │ │ │ │ │ ├── controlerbuggy_LO_BuggyController_MetallicSmoothness.png.meta │ │ │ │ │ ├── controlerbuggy_LO_BuggyController_Normal.png │ │ │ │ │ ├── controlerbuggy_LO_BuggyController_Normal.png.meta │ │ │ │ │ ├── dusty.meta │ │ │ │ │ └── dusty │ │ │ │ │ │ ├── wg_dust_particles_11.png │ │ │ │ │ │ └── wg_dust_particles_11.png.meta │ │ │ │ ├── UI.meta │ │ │ │ ├── UI │ │ │ │ │ ├── BuggyUI.meta │ │ │ │ │ ├── BuggyUI │ │ │ │ │ │ ├── RPMCounterBorder.png │ │ │ │ │ │ ├── RPMCounterBorder.png.meta │ │ │ │ │ │ ├── RPMCounterFill.png │ │ │ │ │ │ ├── RPMCounterFill.png.meta │ │ │ │ │ │ ├── blob.png │ │ │ │ │ │ ├── blob.png.meta │ │ │ │ │ │ ├── steering.png │ │ │ │ │ │ └── steering.png.meta │ │ │ │ │ ├── Roundsquare.png │ │ │ │ │ └── Roundsquare.png.meta │ │ │ │ ├── URPLightCone_Blue.mat │ │ │ │ ├── URPLightCone_Blue.mat.meta │ │ │ │ ├── WheelDust.cs │ │ │ │ ├── WheelDust.cs.meta │ │ │ │ ├── trackCam.cs │ │ │ │ ├── trackCam.cs.meta │ │ │ │ ├── trackObj.cs │ │ │ │ └── trackObj.cs.meta │ │ │ ├── Grenade.meta │ │ │ ├── Grenade │ │ │ │ ├── Grenade.cs │ │ │ │ ├── Grenade.cs.meta │ │ │ │ ├── Grenade.fbx │ │ │ │ ├── Grenade.fbx.meta │ │ │ │ ├── Grenade.mat │ │ │ │ ├── Grenade.mat.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Nade.mat │ │ │ │ │ └── Nade.mat.meta │ │ │ │ ├── ModalThrowable.prefab │ │ │ │ ├── ModalThrowable.prefab.meta │ │ │ │ ├── Nade_Nade_AlbedoTransparency.png │ │ │ │ ├── Nade_Nade_AlbedoTransparency.png.meta │ │ │ │ ├── Nade_Nade_MetallicSmoothness.png │ │ │ │ ├── Nade_Nade_MetallicSmoothness.png.meta │ │ │ │ ├── Nade_Nade_Normal.png │ │ │ │ ├── Nade_Nade_Normal.png.meta │ │ │ │ ├── SunFlare.png │ │ │ │ └── SunFlare.png.meta │ │ │ ├── Interactions_Example.meta │ │ │ ├── Interactions_Example.unity │ │ │ ├── Interactions_Example.unity.meta │ │ │ ├── Interactions_Example │ │ │ │ ├── LightingData.asset │ │ │ │ ├── LightingData.asset.meta │ │ │ │ ├── ReflectionProbe-0.exr │ │ │ │ └── ReflectionProbe-0.exr.meta │ │ │ ├── JoeJeff.meta │ │ │ ├── JoeJeff │ │ │ │ ├── Animation.meta │ │ │ │ ├── Animation │ │ │ │ │ ├── HumanoidIdle.fbx │ │ │ │ │ ├── HumanoidIdle.fbx.meta │ │ │ │ │ ├── HumanoidIdleJumpUp.fbx │ │ │ │ │ ├── HumanoidIdleJumpUp.fbx.meta │ │ │ │ │ ├── HumanoidJumpAndFall.fbx │ │ │ │ │ ├── HumanoidJumpAndFall.fbx.meta │ │ │ │ │ ├── HumanoidMidAir.fbx │ │ │ │ │ ├── HumanoidMidAir.fbx.meta │ │ │ │ │ ├── HumanoidRun.fbx │ │ │ │ │ ├── HumanoidRun.fbx.meta │ │ │ │ │ ├── HumanoidRunTurn.fbx │ │ │ │ │ ├── HumanoidRunTurn.fbx.meta │ │ │ │ │ ├── HumanoidRunTurnSharp.fbx │ │ │ │ │ ├── HumanoidRunTurnSharp.fbx.meta │ │ │ │ │ ├── HumanoidStandTurn.fbx │ │ │ │ │ ├── HumanoidStandTurn.fbx.meta │ │ │ │ │ ├── HumanoidWalk.fbx │ │ │ │ │ ├── HumanoidWalk.fbx.meta │ │ │ │ │ ├── HumanoidWalkTurn.fbx │ │ │ │ │ ├── HumanoidWalkTurn.fbx.meta │ │ │ │ │ ├── HumanoidWalkTurnSharp.fbx │ │ │ │ │ └── HumanoidWalkTurnSharp.fbx.meta │ │ │ │ ├── Animator.meta │ │ │ │ ├── Animator │ │ │ │ │ ├── JoeJeff.controller │ │ │ │ │ └── JoeJeff.controller.meta │ │ │ │ ├── JJHat.fbx │ │ │ │ ├── JJHat.fbx.meta │ │ │ │ ├── JoeJeff.cs │ │ │ │ ├── JoeJeff.cs.meta │ │ │ │ ├── JoeJeff.fbx │ │ │ │ ├── JoeJeff.fbx.meta │ │ │ │ ├── JoeJeffController.cs │ │ │ │ ├── JoeJeffController.cs.meta │ │ │ │ ├── JoeJeffController.fbx │ │ │ │ ├── JoeJeffController.fbx.meta │ │ │ │ ├── JoeJeffGestures.cs │ │ │ │ ├── JoeJeffGestures.cs.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── JJHat.mat │ │ │ │ │ ├── JJHat.mat.meta │ │ │ │ │ ├── JoeJeff.mat │ │ │ │ │ ├── JoeJeff.mat.meta │ │ │ │ │ ├── PController.mat │ │ │ │ │ ├── PController.mat.meta │ │ │ │ │ ├── Platformer.mat │ │ │ │ │ └── Platformer.mat.meta │ │ │ │ ├── ProceduralHats.cs │ │ │ │ ├── ProceduralHats.cs.meta │ │ │ │ ├── Textures.meta │ │ │ │ ├── Textures │ │ │ │ │ ├── JJHat_JJHat_AlbedoTransparency.png │ │ │ │ │ ├── JJHat_JJHat_AlbedoTransparency.png.meta │ │ │ │ │ ├── JJHat_JJHat_MetallicSmoothness.png │ │ │ │ │ ├── JJHat_JJHat_MetallicSmoothness.png.meta │ │ │ │ │ ├── JJHat_JJHat_Normal.png │ │ │ │ │ ├── JJHat_JJHat_Normal.png.meta │ │ │ │ │ ├── JoeJeff_AlbedoTransparency.png │ │ │ │ │ ├── JoeJeff_AlbedoTransparency.png.meta │ │ │ │ │ ├── JoeJeff_MetallicSmoothness.png │ │ │ │ │ ├── JoeJeff_MetallicSmoothness.png.meta │ │ │ │ │ ├── JoeJeff_Normal.png │ │ │ │ │ ├── JoeJeff_Normal.png.meta │ │ │ │ │ ├── PlatformController_PController_AlbedoTransparency.png │ │ │ │ │ ├── PlatformController_PController_AlbedoTransparency.png.meta │ │ │ │ │ ├── PlatformController_PController_Emission.png │ │ │ │ │ ├── PlatformController_PController_Emission.png.meta │ │ │ │ │ ├── PlatformController_PController_MetallicSmoothness.png │ │ │ │ │ ├── PlatformController_PController_MetallicSmoothness.png.meta │ │ │ │ │ ├── PlatformController_PController_Normal.png │ │ │ │ │ └── PlatformController_PController_Normal.png.meta │ │ │ │ ├── platformer.physicMaterial │ │ │ │ └── platformer.physicMaterial.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Bouncy.physicMaterial │ │ │ │ ├── Bouncy.physicMaterial.meta │ │ │ │ ├── Grey.mat │ │ │ │ ├── Grey.mat.meta │ │ │ │ ├── LightGreen.mat │ │ │ │ ├── LightGreen.mat.meta │ │ │ │ ├── MeasurementLine.mat │ │ │ │ ├── MeasurementLine.mat.meta │ │ │ │ ├── ShinyWhite.mat │ │ │ │ ├── ShinyWhite.mat.meta │ │ │ │ ├── ShinyWhiteHand.mat │ │ │ │ ├── ShinyWhiteHand.mat.meta │ │ │ │ ├── ShinyWhiteHighlighted.mat │ │ │ │ ├── ShinyWhiteHighlighted.mat.meta │ │ │ │ ├── ShinyWhiteHighlightedHand.mat │ │ │ │ ├── ShinyWhiteHighlightedHand.mat.meta │ │ │ │ ├── ShinyWhiteHighlightedObject.mat │ │ │ │ ├── ShinyWhiteHighlightedObject.mat.meta │ │ │ │ ├── ShinyWhiteHighlightedOld.mat │ │ │ │ ├── ShinyWhiteHighlightedOld.mat.meta │ │ │ │ ├── ShinyWhiteObject.mat │ │ │ │ ├── ShinyWhiteObject.mat.meta │ │ │ │ ├── ShinyWhiteOld.mat │ │ │ │ ├── ShinyWhiteOld.mat.meta │ │ │ │ ├── ShinyYellow.mat │ │ │ │ ├── ShinyYellow.mat.meta │ │ │ │ ├── ThrowingTarget.mat │ │ │ │ ├── ThrowingTarget.mat.meta │ │ │ │ ├── URPflowerMat.mat │ │ │ │ ├── URPflowerMat.mat.meta │ │ │ │ ├── URPflowerMatOp.mat │ │ │ │ ├── URPflowerMatOp.mat.meta │ │ │ │ ├── Walls.physicMaterial │ │ │ │ ├── Walls.physicMaterial.meta │ │ │ │ ├── flowerMat.mat │ │ │ │ ├── flowerMat.mat.meta │ │ │ │ ├── flowerMatOp.mat │ │ │ │ └── flowerMatOp.mat.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ │ ├── Flower.FBX │ │ │ │ ├── Flower.FBX.meta │ │ │ │ ├── Furniture.fbx │ │ │ │ ├── Furniture.fbx.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Buggy.mat │ │ │ │ │ ├── Buggy.mat.meta │ │ │ │ │ ├── BuggyController.mat │ │ │ │ │ ├── BuggyController.mat.meta │ │ │ │ │ ├── BuggyController__Controller.mat │ │ │ │ │ ├── BuggyController__Controller.mat.meta │ │ │ │ │ ├── Furniture.mat │ │ │ │ │ ├── Furniture.mat.meta │ │ │ │ │ ├── Furniture_AlbedoTransparency.png │ │ │ │ │ ├── Furniture_AlbedoTransparency.png.meta │ │ │ │ │ ├── Furniture_MetallicSmoothness.png │ │ │ │ │ ├── Furniture_MetallicSmoothness.png.meta │ │ │ │ │ ├── Furniture_Normal.png │ │ │ │ │ ├── Furniture_Normal.png.meta │ │ │ │ │ ├── No Name.mat │ │ │ │ │ ├── No Name.mat.meta │ │ │ │ │ ├── fabric 1.mat │ │ │ │ │ ├── fabric 1.mat.meta │ │ │ │ │ ├── target.mat │ │ │ │ │ ├── target.mat.meta │ │ │ │ │ ├── unnamed.mat │ │ │ │ │ ├── unnamed.mat.meta │ │ │ │ │ ├── weird table.mat │ │ │ │ │ └── weird table.mat.meta │ │ │ │ ├── Table.prefab │ │ │ │ ├── Table.prefab.meta │ │ │ │ ├── Table_Round.prefab │ │ │ │ ├── Table_Round.prefab.meta │ │ │ │ ├── Table_Small.prefab │ │ │ │ ├── Table_Small.prefab.meta │ │ │ │ ├── Target.fbx │ │ │ │ ├── Target.fbx.meta │ │ │ │ ├── Wall.prefab │ │ │ │ ├── Wall.prefab.meta │ │ │ │ ├── Weird Table.prefab │ │ │ │ ├── Weird Table.prefab.meta │ │ │ │ ├── black_floor_metal_001a.jpg │ │ │ │ ├── black_floor_metal_001a.jpg.meta │ │ │ │ ├── black_floor_metal_MET.png │ │ │ │ ├── black_floor_metal_MET.png.meta │ │ │ │ ├── black_floor_metal_NRM.jpg │ │ │ │ ├── black_floor_metal_NRM.jpg.meta │ │ │ │ ├── floor far.mat │ │ │ │ ├── floor far.mat.meta │ │ │ │ ├── floor.mat │ │ │ │ ├── floor.mat.meta │ │ │ │ ├── simpleLeftHandController.controller │ │ │ │ ├── simpleLeftHandController.controller.meta │ │ │ │ ├── simpleRightHandController.controller │ │ │ │ └── simpleRightHandController.controller.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── Buggy Controller.prefab │ │ │ │ ├── Buggy Controller.prefab.meta │ │ │ │ ├── Buggy.prefab │ │ │ │ ├── Buggy.prefab.meta │ │ │ │ ├── Button.prefab │ │ │ │ ├── Button.prefab.meta │ │ │ │ ├── Flower.prefab │ │ │ │ ├── Flower.prefab.meta │ │ │ │ ├── JoeJeff.prefab │ │ │ │ ├── JoeJeff.prefab.meta │ │ │ │ ├── JoeJeffController.prefab │ │ │ │ ├── JoeJeffController.prefab.meta │ │ │ │ ├── ModalThrowable.prefab │ │ │ │ ├── ModalThrowable.prefab.meta │ │ │ │ ├── TargetHitEffect.prefab │ │ │ │ ├── TargetHitEffect.prefab.meta │ │ │ │ ├── ThrowableBall.prefab │ │ │ │ ├── ThrowableBall.prefab.meta │ │ │ │ ├── ThrowableCube.prefab │ │ │ │ └── ThrowableCube.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── ButtonEffect.cs │ │ │ │ ├── ButtonEffect.cs.meta │ │ │ │ ├── ButtonExample.cs │ │ │ │ ├── ButtonExample.cs.meta │ │ │ │ ├── ControllerHintsExample.cs │ │ │ │ ├── ControllerHintsExample.cs.meta │ │ │ │ ├── CustomSkeletonHelper.cs │ │ │ │ ├── CustomSkeletonHelper.cs.meta │ │ │ │ ├── FloppyHand.cs │ │ │ │ ├── FloppyHand.cs.meta │ │ │ │ ├── FlowerPlanted.cs │ │ │ │ ├── FlowerPlanted.cs.meta │ │ │ │ ├── InteractableExample.cs │ │ │ │ ├── InteractableExample.cs.meta │ │ │ │ ├── Planting.cs │ │ │ │ ├── Planting.cs.meta │ │ │ │ ├── RenderModelChangerUI.cs │ │ │ │ ├── RenderModelChangerUI.cs.meta │ │ │ │ ├── SkeletonUIOptions.cs │ │ │ │ ├── SkeletonUIOptions.cs.meta │ │ │ │ ├── TargetHitEffect.cs │ │ │ │ ├── TargetHitEffect.cs.meta │ │ │ │ ├── TargetMeasurement.cs │ │ │ │ ├── TargetMeasurement.cs.meta │ │ │ │ ├── URPMaterialSwitcher.cs │ │ │ │ └── URPMaterialSwitcher.cs.meta │ │ │ ├── Squishy.meta │ │ │ ├── Squishy │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Squish.mat │ │ │ │ │ ├── Squish.mat.meta │ │ │ │ │ ├── URPSquish.mat │ │ │ │ │ └── URPSquish.mat.meta │ │ │ │ ├── Squishy.fbx │ │ │ │ ├── Squishy.fbx.meta │ │ │ │ ├── Squishy.prefab │ │ │ │ ├── Squishy.prefab.meta │ │ │ │ ├── SquishyBall.physicMaterial │ │ │ │ ├── SquishyBall.physicMaterial.meta │ │ │ │ ├── SquishyDeform.shader │ │ │ │ ├── SquishyDeform.shader.meta │ │ │ │ ├── SquishyToy.cs │ │ │ │ ├── SquishyToy.cs.meta │ │ │ │ ├── Textures.meta │ │ │ │ └── Textures │ │ │ │ │ ├── Squishy_Squish_AlbedoTransparency.png │ │ │ │ │ ├── Squishy_Squish_AlbedoTransparency.png.meta │ │ │ │ │ ├── Squishy_Squish_MetallicSmoothness.png │ │ │ │ │ ├── Squishy_Squish_MetallicSmoothness.png.meta │ │ │ │ │ ├── Squishy_Squish_Normal.png │ │ │ │ │ ├── Squishy_Squish_Normal.png.meta │ │ │ │ │ ├── gooNoise.png │ │ │ │ │ ├── gooNoise.png.meta │ │ │ │ │ ├── gooNrm.png │ │ │ │ │ └── gooNrm.png.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── TargetLO_target_AlbedoTransparency.png │ │ │ │ ├── TargetLO_target_AlbedoTransparency.png.meta │ │ │ │ ├── TargetLO_target_MetallicSmoothness.png │ │ │ │ ├── TargetLO_target_MetallicSmoothness.png.meta │ │ │ │ ├── TargetLO_target_Normal.png │ │ │ │ ├── TargetLO_target_Normal.png.meta │ │ │ │ ├── checker.png │ │ │ │ ├── checker.png.meta │ │ │ │ ├── estimatedOnHand.png │ │ │ │ ├── estimatedOnHand.png.meta │ │ │ │ ├── estimatedOnObject.png │ │ │ │ ├── estimatedOnObject.png.meta │ │ │ │ ├── fabric nrm.png │ │ │ │ ├── fabric nrm.png.meta │ │ │ │ ├── fabric.png │ │ │ │ ├── fabric.png.meta │ │ │ │ ├── measurementTape.png │ │ │ │ ├── measurementTape.png.meta │ │ │ │ ├── oldControllerVelocity.png │ │ │ │ └── oldControllerVelocity.png.meta │ │ ├── SnapTurn.meta │ │ ├── SnapTurn │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── snapTurnArrow.mat │ │ │ │ └── snapTurnArrow.mat.meta │ │ │ ├── SnapTurn.cs │ │ │ ├── SnapTurn.cs.meta │ │ │ ├── snapTurnArrow.mat │ │ │ ├── snapTurnArrow.mat.meta │ │ │ ├── snapTurnFX.fbx │ │ │ ├── snapTurnFX.fbx.meta │ │ │ ├── snapturnFX.controller │ │ │ ├── snapturnFX.controller.meta │ │ │ ├── snapturn_go_01.wav │ │ │ └── snapturn_go_01.wav.meta │ │ ├── Teleport.meta │ │ └── Teleport │ │ │ ├── Materials URP.meta │ │ │ ├── Materials URP │ │ │ ├── URPTeleportAreaHighlighted.mat │ │ │ ├── URPTeleportAreaHighlighted.mat.meta │ │ │ ├── URPTeleportAreaHighlightedBright.mat │ │ │ ├── URPTeleportAreaHighlightedBright.mat.meta │ │ │ ├── URPTeleportAreaHighlightedLow.mat │ │ │ ├── URPTeleportAreaHighlightedLow.mat.meta │ │ │ ├── URPTeleportAreaLocked.mat │ │ │ ├── URPTeleportAreaLocked.mat.meta │ │ │ ├── URPTeleportAreaVisible.mat │ │ │ ├── URPTeleportAreaVisible.mat.meta │ │ │ ├── URPTeleportAreaVisibleBright.mat │ │ │ ├── URPTeleportAreaVisibleBright.mat.meta │ │ │ ├── URPTeleportAreaVisibleLow.mat │ │ │ ├── URPTeleportAreaVisibleLow.mat.meta │ │ │ ├── URPTeleportPlaySpace.mat │ │ │ ├── URPTeleportPlaySpace.mat.meta │ │ │ ├── URPTeleportPlayspaceVisualize.mat │ │ │ ├── URPTeleportPlayspaceVisualize.mat.meta │ │ │ ├── URPTeleportPointHighlighted.mat │ │ │ ├── URPTeleportPointHighlighted.mat.meta │ │ │ ├── URPTeleportPointInvalid.mat │ │ │ ├── URPTeleportPointInvalid.mat.meta │ │ │ ├── URPTeleportPointLocked.mat │ │ │ ├── URPTeleportPointLocked.mat.meta │ │ │ ├── URPTeleportPointText.mat │ │ │ ├── URPTeleportPointText.mat.meta │ │ │ ├── URPTeleportPointVisible.mat │ │ │ ├── URPTeleportPointVisible.mat.meta │ │ │ ├── URPTeleportPointer.mat │ │ │ └── URPTeleportPointer.mat.meta │ │ │ ├── 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 │ │ │ ├── TeleportURPHelper.cs │ │ │ └── TeleportURPHelper.cs.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ ├── HighlighGlobal.shader │ │ │ ├── HighlighGlobal.shader.meta │ │ │ ├── Highlight.shader │ │ │ └── Highlight.shader.meta │ │ │ ├── Sounds.meta │ │ │ ├── Sounds │ │ │ ├── TeleportBadArea.wav │ │ │ ├── TeleportBadArea.wav.meta │ │ │ ├── TeleportGo.wav │ │ │ ├── TeleportGo.wav.meta │ │ │ ├── TeleportGoodArea.wav │ │ │ ├── TeleportGoodArea.wav.meta │ │ │ ├── TeleportPointerLoop.wav │ │ │ ├── TeleportPointerLoop.wav.meta │ │ │ ├── TeleportPointerStart.wav │ │ │ └── TeleportPointerStart.wav.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ ├── TeleportAreaPatternColor.tga │ │ │ ├── TeleportAreaPatternColor.tga.meta │ │ │ ├── TeleportMarker.psd │ │ │ └── TeleportMarker.psd.meta │ ├── Materials.meta │ ├── Materials │ │ ├── def.mat │ │ ├── def.mat.meta │ │ ├── workshop.mat │ │ └── workshop.mat.meta │ ├── Models.meta │ ├── Models │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Abyss.mat │ │ │ ├── Abyss.mat.meta │ │ │ ├── AlienHand.mat │ │ │ ├── AlienHand.mat.meta │ │ │ ├── AlienHand_AlbedoTransparency.png │ │ │ ├── AlienHand_AlbedoTransparency.png.meta │ │ │ ├── AlienHand_MetallicSmoothness.png │ │ │ ├── AlienHand_MetallicSmoothness.png.meta │ │ │ ├── AlienHand_Normal.png │ │ │ ├── AlienHand_Normal.png.meta │ │ │ ├── No Name.mat │ │ │ ├── No Name.mat.meta │ │ │ ├── floppyHand Emit.png │ │ │ ├── floppyHand Emit.png.meta │ │ │ ├── floppyHand.mat │ │ │ ├── floppyHand.mat.meta │ │ │ ├── knuckles_right.mat │ │ │ ├── knuckles_right.mat.meta │ │ │ ├── models_hands_vr_glove.vmat.mat │ │ │ ├── models_hands_vr_glove.vmat.mat.meta │ │ │ ├── vr_glove_color.jpg │ │ │ ├── vr_glove_color.jpg.meta │ │ │ ├── vr_glove_color.mat │ │ │ ├── vr_glove_color.mat.meta │ │ │ ├── vr_glove_color_red.jpg │ │ │ ├── vr_glove_color_red.jpg.meta │ │ │ ├── vr_glove_color_red.mat │ │ │ ├── vr_glove_color_red.mat.meta │ │ │ ├── vr_glove_normal.png │ │ │ └── vr_glove_normal.png.meta │ │ ├── handFingers.mask │ │ ├── handFingers.mask.meta │ │ ├── vr_alien_hand.fbx │ │ ├── vr_alien_hand.fbx.meta │ │ ├── vr_floppyHand.fbx │ │ ├── vr_floppyHand.fbx.meta │ │ ├── vr_glove_graspPoses.controller │ │ ├── vr_glove_graspPoses.controller.meta │ │ ├── vr_glove_left_model_slim.fbx │ │ ├── vr_glove_left_model_slim.fbx.meta │ │ ├── vr_glove_model.fbx │ │ ├── vr_glove_model.fbx.meta │ │ ├── vr_glove_right_model_slim.fbx │ │ ├── vr_glove_right_model_slim.fbx.meta │ │ ├── vr_hand_grabposes.fbx │ │ └── vr_hand_grabposes.fbx.meta │ ├── OpenVRUnityXRPackage.meta │ ├── OpenVRUnityXRPackage │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── com.valvesoftware.unity.openvr-1.1.4.tgz │ │ │ └── com.valvesoftware.unity.openvr-1.1.4.tgz.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── openvr_api.cs │ │ └── openvr_api.cs.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── [CameraRig].prefab │ │ ├── [CameraRig].prefab.meta │ │ ├── [Status].prefab │ │ ├── [Status].prefab.meta │ │ ├── [SteamVR].prefab │ │ ├── [SteamVR].prefab.meta │ │ ├── controller.prefab │ │ ├── controller.prefab.meta │ │ ├── vr_glove_left.prefab │ │ ├── vr_glove_left.prefab.meta │ │ ├── vr_glove_left_model_slim.prefab │ │ ├── vr_glove_left_model_slim.prefab.meta │ │ ├── vr_glove_right.prefab │ │ ├── vr_glove_right.prefab.meta │ │ ├── vr_glove_right_model_slim.prefab │ │ ├── vr_glove_right_model_slim.prefab.meta │ │ ├── vr_hand_alien_left.prefab │ │ ├── vr_hand_alien_left.prefab.meta │ │ ├── vr_hand_alien_right.prefab │ │ ├── vr_hand_alien_right.prefab.meta │ │ ├── vr_hand_floppy_left.prefab │ │ ├── vr_hand_floppy_left.prefab.meta │ │ ├── vr_hand_floppy_right.prefab │ │ └── vr_hand_floppy_right.prefab.meta │ ├── Resources.meta │ ├── Resources │ │ ├── ReferencePose_BindPose.asset │ │ ├── ReferencePose_BindPose.asset.meta │ │ ├── ReferencePose_Fist.asset │ │ ├── ReferencePose_Fist.asset.meta │ │ ├── ReferencePose_OpenHand.asset │ │ ├── ReferencePose_OpenHand.asset.meta │ │ ├── SteamVR_AlphaOut.shader │ │ ├── SteamVR_AlphaOut.shader.meta │ │ ├── SteamVR_ClearAll.shader │ │ ├── SteamVR_ClearAll.shader.meta │ │ ├── SteamVR_ColorOut.shader │ │ ├── SteamVR_ColorOut.shader.meta │ │ ├── SteamVR_ExternalCamera.prefab │ │ ├── SteamVR_ExternalCamera.prefab.meta │ │ ├── SteamVR_Fade.shader │ │ ├── SteamVR_Fade.shader.meta │ │ ├── SteamVR_HoverHighlight.mat │ │ ├── SteamVR_HoverHighlight.mat.meta │ │ ├── SteamVR_HoverHighlight_URP.mat │ │ ├── SteamVR_HoverHighlight_URP.mat.meta │ │ ├── SteamVR_SphericalProjection.shader │ │ └── SteamVR_SphericalProjection.shader.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── SteamVR.cs │ │ ├── SteamVR.cs.meta │ │ ├── SteamVR_Behaviour.cs │ │ ├── SteamVR_Behaviour.cs.meta │ │ ├── SteamVR_Camera.cs │ │ ├── SteamVR_Camera.cs.meta │ │ ├── SteamVR_CameraFlip.cs │ │ ├── SteamVR_CameraFlip.cs.meta │ │ ├── SteamVR_CameraMask.cs │ │ ├── SteamVR_CameraMask.cs.meta │ │ ├── SteamVR_Ears.cs │ │ ├── SteamVR_Ears.cs.meta │ │ ├── SteamVR_EnumEqualityComparer.cs │ │ ├── SteamVR_EnumEqualityComparer.cs.meta │ │ ├── SteamVR_Events.cs │ │ ├── SteamVR_Events.cs.meta │ │ ├── SteamVR_ExternalCamera.cs │ │ ├── SteamVR_ExternalCamera.cs.meta │ │ ├── SteamVR_ExternalCamera_LegacyManager.cs │ │ ├── SteamVR_ExternalCamera_LegacyManager.cs.meta │ │ ├── SteamVR_Fade.cs │ │ ├── SteamVR_Fade.cs.meta │ │ ├── SteamVR_Frustum.cs │ │ ├── SteamVR_Frustum.cs.meta │ │ ├── SteamVR_IK.cs │ │ ├── SteamVR_IK.cs.meta │ │ ├── SteamVR_LoadLevel.cs │ │ ├── SteamVR_LoadLevel.cs.meta │ │ ├── SteamVR_Menu.cs │ │ ├── SteamVR_Menu.cs.meta │ │ ├── SteamVR_Overlay.cs │ │ ├── SteamVR_Overlay.cs.meta │ │ ├── SteamVR_PlayArea.cs │ │ ├── SteamVR_PlayArea.cs.meta │ │ ├── SteamVR_Render.cs │ │ ├── SteamVR_Render.cs.meta │ │ ├── SteamVR_RenderModel.cs │ │ ├── SteamVR_RenderModel.cs.meta │ │ ├── SteamVR_RingBuffer.cs │ │ ├── SteamVR_RingBuffer.cs.meta │ │ ├── SteamVR_Settings.cs │ │ ├── SteamVR_Settings.cs.meta │ │ ├── SteamVR_Skybox.cs │ │ ├── SteamVR_Skybox.cs.meta │ │ ├── SteamVR_SphericalProjection.cs │ │ ├── SteamVR_SphericalProjection.cs.meta │ │ ├── SteamVR_TrackedCamera.cs │ │ ├── SteamVR_TrackedCamera.cs.meta │ │ ├── SteamVR_TrackedObject.cs │ │ ├── SteamVR_TrackedObject.cs.meta │ │ ├── SteamVR_TrackingReferenceManager.cs │ │ ├── SteamVR_TrackingReferenceManager.cs.meta │ │ ├── SteamVR_Utils.cs │ │ └── SteamVR_Utils.cs.meta │ ├── Simple Sample.unity │ ├── Simple Sample.unity.meta │ ├── SteamVR Unity Plugin - Input System.pdf │ ├── SteamVR Unity Plugin - Input System.pdf.meta │ ├── SteamVR Unity Plugin.pdf │ ├── SteamVR Unity Plugin.pdf.meta │ ├── SteamVR.asmdef │ ├── SteamVR.asmdef.meta │ ├── Textures.meta │ ├── Textures │ │ ├── arrow.png │ │ ├── arrow.png.meta │ │ ├── background.png │ │ ├── background.png.meta │ │ ├── logo.png │ │ ├── logo.png.meta │ │ ├── overlay.renderTexture │ │ ├── overlay.renderTexture.meta │ │ ├── workshop.png │ │ └── workshop.png.meta │ ├── WindowsHelper.meta │ ├── WindowsHelper │ │ ├── SteamVR_Windows_EditorHelper.asmdef │ │ ├── SteamVR_Windows_EditorHelper.asmdef.meta │ │ ├── SteamVR_Windows_Editor_Helper.cs │ │ └── SteamVR_Windows_Editor_Helper.cs.meta │ ├── link.xml │ ├── link.xml.meta │ ├── readme.txt │ └── readme.txt.meta ├── SteamVR_Input.meta ├── SteamVR_Input │ ├── ActionSetClasses.meta │ ├── ActionSetClasses │ │ ├── SteamVR_Input_ActionSet_buggy.cs │ │ ├── SteamVR_Input_ActionSet_buggy.cs.meta │ │ ├── SteamVR_Input_ActionSet_default.cs │ │ ├── SteamVR_Input_ActionSet_default.cs.meta │ │ ├── SteamVR_Input_ActionSet_mixedreality.cs │ │ ├── SteamVR_Input_ActionSet_mixedreality.cs.meta │ │ ├── SteamVR_Input_ActionSet_platformer.cs │ │ └── SteamVR_Input_ActionSet_platformer.cs.meta │ ├── SteamVR_Actions.asmdef │ ├── SteamVR_Actions.asmdef.meta │ ├── SteamVR_Input_ActionSets.cs │ ├── SteamVR_Input_ActionSets.cs.meta │ ├── SteamVR_Input_Actions.cs │ ├── SteamVR_Input_Actions.cs.meta │ ├── SteamVR_Input_Initialization.cs │ └── SteamVR_Input_Initialization.cs.meta ├── SteamVR_Resources.meta ├── SteamVR_Resources │ ├── Resources.meta │ └── Resources │ │ ├── SteamVR_Settings.asset │ │ └── SteamVR_Settings.asset.meta ├── StreamingAssets.meta ├── StreamingAssets │ ├── SteamVR.meta │ └── SteamVR │ │ ├── actions.json │ │ ├── actions.json.meta │ │ ├── binding_holographic_hmd.json │ │ ├── binding_holographic_hmd.json.meta │ │ ├── binding_index_hmd.json │ │ ├── binding_index_hmd.json.meta │ │ ├── binding_rift.json │ │ ├── binding_rift.json.meta │ │ ├── binding_vive.json │ │ ├── binding_vive.json.meta │ │ ├── binding_vive_cosmos.json │ │ ├── binding_vive_cosmos.json.meta │ │ ├── binding_vive_pro.json │ │ ├── binding_vive_pro.json.meta │ │ ├── binding_vive_tracker_camera.json │ │ ├── binding_vive_tracker_camera.json.meta │ │ ├── bindings_holographic_controller.json │ │ ├── bindings_holographic_controller.json.meta │ │ ├── bindings_knuckles.json │ │ ├── bindings_knuckles.json.meta │ │ ├── bindings_logitech_stylus.json │ │ ├── bindings_logitech_stylus.json.meta │ │ ├── bindings_oculus_touch.json │ │ ├── bindings_oculus_touch.json.meta │ │ ├── bindings_vive_controller.json │ │ ├── bindings_vive_controller.json.meta │ │ ├── bindings_vive_cosmos_controller.json │ │ └── bindings_vive_cosmos_controller.json.meta ├── TextMesh Pro.meta ├── TextMesh Pro │ ├── Documentation.meta │ ├── Documentation │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ ├── Fonts.meta │ ├── Fonts │ │ ├── LiberationSans - OFL.txt │ │ ├── LiberationSans - OFL.txt.meta │ │ ├── LiberationSans.ttf │ │ └── LiberationSans.ttf.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Fonts & Materials.meta │ │ ├── Fonts & Materials │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ ├── LiberationSans SDF.asset │ │ │ └── LiberationSans SDF.asset.meta │ │ ├── LineBreaking Following Characters.txt │ │ ├── LineBreaking Following Characters.txt.meta │ │ ├── LineBreaking Leading Characters.txt │ │ ├── LineBreaking Leading Characters.txt.meta │ │ ├── Sprite Assets.meta │ │ ├── Sprite Assets │ │ │ ├── EmojiOne.asset │ │ │ └── EmojiOne.asset.meta │ │ ├── Style Sheets.meta │ │ ├── Style Sheets │ │ │ ├── Default Style Sheet.asset │ │ │ └── Default Style Sheet.asset.meta │ │ ├── TMP Settings.asset │ │ └── TMP Settings.asset.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ ├── TMP_Bitmap-Mobile.shader │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ ├── TMP_Bitmap.shader │ │ ├── TMP_Bitmap.shader.meta │ │ ├── TMP_SDF Overlay.shader │ │ ├── TMP_SDF Overlay.shader.meta │ │ ├── TMP_SDF SSD.shader │ │ ├── TMP_SDF SSD.shader.meta │ │ ├── TMP_SDF-Mobile Masking.shader │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ ├── TMP_SDF-Mobile SSD.shader │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ ├── TMP_SDF-Mobile.shader │ │ ├── TMP_SDF-Mobile.shader.meta │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ ├── TMP_SDF-Surface.shader │ │ ├── TMP_SDF-Surface.shader.meta │ │ ├── TMP_SDF.shader │ │ ├── TMP_SDF.shader.meta │ │ ├── TMP_Sprite.shader │ │ ├── TMP_Sprite.shader.meta │ │ ├── TMPro.cginc │ │ ├── TMPro.cginc.meta │ │ ├── TMPro_Mobile.cginc │ │ ├── TMPro_Mobile.cginc.meta │ │ ├── TMPro_Properties.cginc │ │ ├── TMPro_Properties.cginc.meta │ │ ├── TMPro_Surface.cginc │ │ └── TMPro_Surface.cginc.meta │ ├── Sprites.meta │ └── Sprites │ │ ├── EmojiOne Attribution.txt │ │ ├── EmojiOne Attribution.txt.meta │ │ ├── EmojiOne.json │ │ ├── EmojiOne.json.meta │ │ ├── EmojiOne.png │ │ └── EmojiOne.png.meta ├── XR.meta └── XR │ ├── Loaders.meta │ ├── Loaders │ ├── Open VR Loader.asset │ └── Open VR Loader.asset.meta │ ├── Settings.meta │ ├── Settings │ ├── Open VR Settings.asset │ └── Open VR Settings.asset.meta │ ├── XRGeneralSettings.asset │ └── XRGeneralSettings.asset.meta ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset ├── XRPackageSettings.asset └── XRSettings.asset ├── README.md ├── UserSettings └── EditorUserSettings.asset ├── _config.yml ├── img ├── Unity-NVIDIA-part.gif ├── result.gif └── thumbnail.png └── unityProject.vrmanifest /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Assets/NVIDIA.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/1. Array Actor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/1. Array Actor.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/1. Array Actor/FlexContainer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/1. Array Actor/FlexContainer.asset -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/1. Array Actor/Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/1. Array Actor/Scene.unity -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/1. Array Actor/Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/1. Array Actor/Scene.unity.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/2. Source Actor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/2. Source Actor.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/2. Source Actor/Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/2. Source Actor/Scene.unity -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/2. Source Actor/Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/2. Source Actor/Scene.unity.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/3. Solid Actor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/3. Solid Actor.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/3. Solid Actor/FlexContainer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/3. Solid Actor/FlexContainer.asset -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/3. Solid Actor/Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/3. Solid Actor/Scene.unity -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/3. Solid Actor/Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/3. Solid Actor/Scene.unity.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/4. Soft Actor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/4. Soft Actor.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/4. Soft Actor/FlexContainer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/4. Soft Actor/FlexContainer.asset -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/4. Soft Actor/FlexSoftAsset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/4. Soft Actor/FlexSoftAsset.asset -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/4. Soft Actor/Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/4. Soft Actor/Scene.unity -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/4. Soft Actor/Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/4. Soft Actor/Scene.unity.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/5. Cloth Actor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/5. Cloth Actor.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/5. Cloth Actor/FlexContainer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/5. Cloth Actor/FlexContainer.asset -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/5. Cloth Actor/Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/5. Cloth Actor/Scene.unity -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/5. Cloth Actor/Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/5. Cloth Actor/Scene.unity.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/6. Particle Controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/6. Particle Controller.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/6. Particle Controller/Red.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/6. Particle Controller/Red.mat -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/6. Particle Controller/Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/6. Particle Controller/Scene.unity -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/7. Soft Skinning.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/7. Soft Skinning.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/7. Soft Skinning/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/7. Soft Skinning/Materials.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/7. Soft Skinning/Octopus.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/7. Soft Skinning/Octopus.FBX -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/7. Soft Skinning/Octopus.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/7. Soft Skinning/Octopus.FBX.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/7. Soft Skinning/Pink.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/7. Soft Skinning/Pink.mat -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/7. Soft Skinning/Pink.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/7. Soft Skinning/Pink.mat.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/7. Soft Skinning/Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/7. Soft Skinning/Scene.unity -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/7. Soft Skinning/Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/7. Soft Skinning/Scene.unity.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/8. Cloth Deformation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/8. Cloth Deformation.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/8. Cloth Deformation/Blue.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/8. Cloth Deformation/Blue.mat -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/8. Cloth Deformation/Blue.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/8. Cloth Deformation/Blue.mat.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/8. Cloth Deformation/Green.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/8. Cloth Deformation/Green.mat -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/8. Cloth Deformation/Red.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/8. Cloth Deformation/Red.mat -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/8. Cloth Deformation/Red.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/8. Cloth Deformation/Red.mat.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/8. Cloth Deformation/Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/8. Cloth Deformation/Scene.unity -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/9. Fluid Renderer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/9. Fluid Renderer.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/9. Fluid Renderer/Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/9. Fluid Renderer/Scene.unity -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex Samples/9. Fluid Renderer/Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex Samples/9. Fluid Renderer/Scene.unity.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Actors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Actors.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Actors/FlexActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Actors/FlexActor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Actors/FlexActor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Actors/FlexActor.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Actors/FlexArrayActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Actors/FlexArrayActor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Actors/FlexArrayActor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Actors/FlexArrayActor.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Actors/FlexClothActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Actors/FlexClothActor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Actors/FlexClothActor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Actors/FlexClothActor.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Actors/FlexSoftActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Actors/FlexSoftActor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Actors/FlexSoftActor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Actors/FlexSoftActor.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Actors/FlexSolidActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Actors/FlexSolidActor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Actors/FlexSolidActor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Actors/FlexSolidActor.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Actors/FlexSourceActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Actors/FlexSourceActor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Actors/FlexSourceActor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Actors/FlexSourceActor.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Assets.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Assets/FlexArrayAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Assets/FlexArrayAsset.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Assets/FlexArrayAsset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Assets/FlexArrayAsset.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Assets/FlexAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Assets/FlexAsset.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Assets/FlexAsset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Assets/FlexAsset.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Assets/FlexClothAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Assets/FlexClothAsset.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Assets/FlexClothAsset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Assets/FlexClothAsset.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Assets/FlexContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Assets/FlexContainer.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Assets/FlexContainer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Assets/FlexContainer.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Assets/FlexSoftAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Assets/FlexSoftAsset.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Assets/FlexSoftAsset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Assets/FlexSoftAsset.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Assets/FlexSolidAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Assets/FlexSolidAsset.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Assets/FlexSolidAsset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Assets/FlexSolidAsset.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Assets/FlexSourceAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Assets/FlexSourceAsset.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Assets/FlexSourceAsset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Assets/FlexSourceAsset.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Auxiliary.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Auxiliary.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Auxiliary/_auxFlexDetectShapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Auxiliary/_auxFlexDetectShapes.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Auxiliary/_auxFlexDetectShapes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Auxiliary/_auxFlexDetectShapes.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Auxiliary/_auxFlexDrawFluid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Auxiliary/_auxFlexDrawFluid.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Auxiliary/_auxFlexDrawFluid.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Auxiliary/_auxFlexDrawFluid.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Auxiliary/_auxFlexDrawParticles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Auxiliary/_auxFlexDrawParticles.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Auxiliary/_auxFlexDrawParticles.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Auxiliary/_auxFlexDrawParticles.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexActorEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexActorEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexActorEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexActorEditor.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexArrayActorEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexArrayActorEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexArrayAssetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexArrayAssetEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexAssetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexAssetEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexAssetEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexAssetEditor.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexClothActorEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexClothActorEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexClothAssetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexClothAssetEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexContainerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexContainerEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexContainerEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexContainerEditor.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexEditor.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexFluidMaterialEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexFluidMaterialEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexFluidRendererEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexFluidRendererEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexSoftActorEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexSoftActorEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexSoftActorEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexSoftActorEditor.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexSoftAssetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexSoftAssetEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexSoftAssetEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexSoftAssetEditor.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexSoftSkinningEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexSoftSkinningEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexSolidActorEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexSolidActorEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexSolidAssetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexSolidAssetEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexSourceActorEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexSourceActorEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Editors/FlexSourceAssetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Editors/FlexSourceAssetEditor.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Tests.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Tests/FlexActorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Tests/FlexActorTests.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Tests/FlexActorTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Tests/FlexActorTests.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Tests/FlexAssetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Tests/FlexAssetTests.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Tests/FlexAssetTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Tests/FlexAssetTests.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Tests/FlexExtTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Tests/FlexExtTests.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Tests/FlexExtTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Tests/FlexExtTests.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Tests/FlexTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Tests/FlexTests.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Tests/FlexTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Tests/FlexTests.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Tests/FlexUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Tests/FlexUtilsTests.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Editor/Tests/FlexUtilsTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Editor/Tests/FlexUtilsTests.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Helpers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Helpers.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Helpers/FlexBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Helpers/FlexBuffer.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Helpers/FlexBuffer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Helpers/FlexBuffer.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Helpers/FlexClothDeformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Helpers/FlexClothDeformation.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Helpers/FlexClothDeformation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Helpers/FlexClothDeformation.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Helpers/FlexFluidRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Helpers/FlexFluidRenderer.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Helpers/FlexFluidRenderer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Helpers/FlexFluidRenderer.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Helpers/FlexParticleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Helpers/FlexParticleController.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Helpers/FlexParticleController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Helpers/FlexParticleController.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Helpers/FlexScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Helpers/FlexScene.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Helpers/FlexScene.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Helpers/FlexScene.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Helpers/FlexSoftSkinning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Helpers/FlexSoftSkinning.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Helpers/FlexSoftSkinning.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Helpers/FlexSoftSkinning.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native/Flex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native/Flex.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native/Flex.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native/Flex.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native/FlexExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native/FlexExt.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native/FlexExt.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native/FlexExt.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native/FlexUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native/FlexUtils.cs -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native/FlexUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native/FlexUtils.cs.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native/Plugins.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native/Plugins/Win64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native/Plugins/Win64.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native/Plugins/Win64/amd_ags_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native/Plugins/Win64/amd_ags_x64.dll -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native/Plugins/Win64/amd_ags_x64.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native/Plugins/Win64/amd_ags_x64.dll.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native/Plugins/Win64/cudart64_92.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native/Plugins/Win64/cudart64_92.dll -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native/Plugins/Win64/cudart64_92.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native/Plugins/Win64/cudart64_92.dll.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native/Plugins/Win64/flexUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native/Plugins/Win64/flexUtils.dll -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native/Plugins/Win64/flexUtils.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native/Plugins/Win64/flexUtils.dll.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Native/Plugins/Win64/nvToolsExt64_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Native/Plugins/Win64/nvToolsExt64_1.dll -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Materials.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Materials/DebugParticles.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Materials/DebugParticles.mat -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Materials/FlexDrawFluid.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Materials/FlexDrawFluid.mat -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Materials/FlexDrawFluid.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Materials/FlexDrawFluid.mat.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Materials/FlexFluidMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Materials/FlexFluidMaterial.mat -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Materials/FluidComposite.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Materials/FluidComposite.mat -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Materials/FluidDepth.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Materials/FluidDepth.mat -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Materials/FluidDepth.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Materials/FluidDepth.mat.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Materials/FluidDepthBlur.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Materials/FluidDepthBlur.mat -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Materials/FluidThickness.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Materials/FluidThickness.mat -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Materials/SourcePreview.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Materials/SourcePreview.mat -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Materials/SourcePreview.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Materials/SourcePreview.mat.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Materials/SurfaceTest.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Materials/SurfaceTest.mat -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Materials/SurfaceTest.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Materials/SurfaceTest.mat.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Shaders.meta -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Shaders/DebugPoints.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Shaders/DebugPoints.shader -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Shaders/FlexDrawFluid.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Shaders/FlexDrawFluid.cginc -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Shaders/FlexDrawFluid.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Shaders/FlexDrawFluid.shader -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Shaders/FlexDrawFluid2.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Shaders/FlexDrawFluid2.shader -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Shaders/FluidComposite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Shaders/FluidComposite.shader -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Shaders/FluidDepth.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Shaders/FluidDepth.shader -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Shaders/FluidDepthBlur.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Shaders/FluidDepthBlur.shader -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Shaders/FluidThickness.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Shaders/FluidThickness.shader -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Shaders/SourcePreview.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Shaders/SourcePreview.shader -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Shaders/SurfaceShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Shaders/SurfaceShader.shader -------------------------------------------------------------------------------- /Assets/NVIDIA/Flex/Resources/Shaders/SurfaceTest.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/NVIDIA/Flex/Resources/Shaders/SurfaceTest.shader -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/ArrayAsset-Cylinder.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/ArrayAsset-Cylinder.asset -------------------------------------------------------------------------------- /Assets/Scenes/ArrayAsset-Cylinder.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/ArrayAsset-Cylinder.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/ClothAsset-Ball.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/ClothAsset-Ball.asset -------------------------------------------------------------------------------- /Assets/Scenes/ClothAsset-Ball.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/ClothAsset-Ball.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/ClothAsset-Flag.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/ClothAsset-Flag.asset -------------------------------------------------------------------------------- /Assets/Scenes/ClothAsset-Flag.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/ClothAsset-Flag.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/ClothAssetCurtain.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/ClothAssetCurtain.asset -------------------------------------------------------------------------------- /Assets/Scenes/ClothAssetCurtain.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/ClothAssetCurtain.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/Container.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/Container.asset -------------------------------------------------------------------------------- /Assets/Scenes/Container.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/Container.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/ContainerWind.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/ContainerWind.asset -------------------------------------------------------------------------------- /Assets/Scenes/ContainerWind.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/ContainerWind.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/DeactTeleportHints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/DeactTeleportHints.cs -------------------------------------------------------------------------------- /Assets/Scenes/DeactTeleportHints.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/DeactTeleportHints.cs.meta -------------------------------------------------------------------------------- /Assets/Scenes/MainScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/MainScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/MainScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/MainScene.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/Materials.meta -------------------------------------------------------------------------------- /Assets/Scenes/Materials/Black.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/Materials/Black.mat -------------------------------------------------------------------------------- /Assets/Scenes/Materials/Black.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/Materials/Black.mat.meta -------------------------------------------------------------------------------- /Assets/Scenes/Materials/JJHat-JJHat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/Materials/JJHat-JJHat.mat -------------------------------------------------------------------------------- /Assets/Scenes/Materials/JJHat-JJHat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/Materials/JJHat-JJHat.mat.meta -------------------------------------------------------------------------------- /Assets/Scenes/Materials/JJHat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/Materials/JJHat.mat -------------------------------------------------------------------------------- /Assets/Scenes/Materials/JJHat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/Materials/JJHat.mat.meta -------------------------------------------------------------------------------- /Assets/Scenes/Materials/YellowMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/Materials/YellowMaterial.mat -------------------------------------------------------------------------------- /Assets/Scenes/Materials/YellowMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/Materials/YellowMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/Scenes/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scenes/Scripts/OnOffWaterScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/Scripts/OnOffWaterScript.cs -------------------------------------------------------------------------------- /Assets/Scenes/Scripts/OnOffWaterScript.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/Scripts/OnOffWaterScript.cs.meta -------------------------------------------------------------------------------- /Assets/Scenes/SoftAsset=Oct.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/SoftAsset=Oct.asset -------------------------------------------------------------------------------- /Assets/Scenes/SoftAsset=Oct.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/SoftAsset=Oct.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/SoftAsset=Rope.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/SoftAsset=Rope.asset -------------------------------------------------------------------------------- /Assets/Scenes/SoftAsset=Rope.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/SoftAsset=Rope.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/SolidAsset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/SolidAsset.asset -------------------------------------------------------------------------------- /Assets/Scenes/SolidAsset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/SolidAsset.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/SolıdCapuccıno.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/SolıdCapuccıno.asset -------------------------------------------------------------------------------- /Assets/Scenes/SolıdCapuccıno.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/SolıdCapuccıno.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/SourceAsset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/SourceAsset.asset -------------------------------------------------------------------------------- /Assets/Scenes/SourceAsset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/SourceAsset.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/TestIgorShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/TestIgorShader.shader -------------------------------------------------------------------------------- /Assets/Scenes/TestIgorShader.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/TestIgorShader.shader.meta -------------------------------------------------------------------------------- /Assets/Scenes/models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models.meta -------------------------------------------------------------------------------- /Assets/Scenes/models/3d-model2.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/3d-model2.fbx -------------------------------------------------------------------------------- /Assets/Scenes/models/3d-model2.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/3d-model2.fbx.meta -------------------------------------------------------------------------------- /Assets/Scenes/models/Cappuccino_cup.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/Cappuccino_cup.obj -------------------------------------------------------------------------------- /Assets/Scenes/models/Cappuccino_cup.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/Cappuccino_cup.obj.meta -------------------------------------------------------------------------------- /Assets/Scenes/models/Curtain_Flannel.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/Curtain_Flannel.fbx -------------------------------------------------------------------------------- /Assets/Scenes/models/Curtain_Flannel.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/Curtain_Flannel.fbx.meta -------------------------------------------------------------------------------- /Assets/Scenes/models/JJHat.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/JJHat.fbx -------------------------------------------------------------------------------- /Assets/Scenes/models/JJHat.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/JJHat.fbx.meta -------------------------------------------------------------------------------- /Assets/Scenes/models/Room.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/Room.prefab -------------------------------------------------------------------------------- /Assets/Scenes/models/Room.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/Room.prefab.meta -------------------------------------------------------------------------------- /Assets/Scenes/models/shirt_lp__corona.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/shirt_lp__corona.fbx -------------------------------------------------------------------------------- /Assets/Scenes/models/shirt_lp__corona.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/shirt_lp__corona.fbx.meta -------------------------------------------------------------------------------- /Assets/Scenes/models/t+shirts.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/t+shirts.fbx -------------------------------------------------------------------------------- /Assets/Scenes/models/t+shirts.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/t+shirts.fbx.meta -------------------------------------------------------------------------------- /Assets/Scenes/models/trousers_fbx.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/trousers_fbx.fbx -------------------------------------------------------------------------------- /Assets/Scenes/models/trousers_fbx.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/Scenes/models/trousers_fbx.fbx.meta -------------------------------------------------------------------------------- /Assets/SteamVR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_AutoEnableVR_2018to2019.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_AutoEnableVR_2018to2019.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_AutoEnableVR_2019plus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_AutoEnableVR_2019plus.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_AutoEnableVR_5.4to2018.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_AutoEnableVR_5.4to2018.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_Editor.asmdef -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_Editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_Editor.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_Editor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_Editor.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_Preferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_Preferences.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_Preferences.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_Preferences.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_RenderModelEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_RenderModelEditor.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_RenderModelEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_RenderModelEditor.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_SkyboxEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_SkyboxEditor.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_SkyboxEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_SkyboxEditor.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_UnitySettingsWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_UnitySettingsWindow.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_UnitySettingsWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_UnitySettingsWindow.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_Update.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_Update.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_Update.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_UpdateModeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_UpdateModeEditor.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Editor/SteamVR_UpdateModeEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Editor/SteamVR_UpdateModeEditor.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Extras.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_CameraHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_CameraHelper.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_CameraHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_CameraHelper.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_ForceSteamVRMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_ForceSteamVRMode.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_ForceSteamVRMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_ForceSteamVRMode.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_ForceSteamVRMode.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_ForceSteamVRMode.unity -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_ForceSteamVRMode.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_ForceSteamVRMode.unity.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_GazeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_GazeTracker.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_GazeTracker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_GazeTracker.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_LaserPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_LaserPointer.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_LaserPointer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_LaserPointer.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_LaserPointer.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_LaserPointer.unity -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_LaserPointer.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_LaserPointer.unity.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_ShowTrackingReferences.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_ShowTrackingReferences.unity -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestIK.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_TestIK.unity -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestIK.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_TestIK.unity.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestThrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_TestThrow.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestThrow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_TestThrow.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestThrow.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_TestThrow.unity -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestThrow.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_TestThrow.unity.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.mat -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.mat.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.unity -------------------------------------------------------------------------------- /Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Extras/SteamVR_TestTrackedCamera.unity.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Icon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Icon.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Icon/SteamVR_Skeleton_Pose Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Icon/SteamVR_Skeleton_Pose Icon.png -------------------------------------------------------------------------------- /Assets/SteamVR/Icon/SteamVR_Skeleton_Pose Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Icon/SteamVR_Skeleton_Pose Icon.png.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Icon/_steamvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Icon/_steamvr.png -------------------------------------------------------------------------------- /Assets/SteamVR/Icon/_steamvr.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Icon/_steamvr.png.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/BehaviourUnityEvents.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/BehaviourUnityEvents.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/Editor.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/InputSkin.guiskin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/Editor/InputSkin.guiskin -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/InputSkin.guiskin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/Editor/InputSkin.guiskin.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/Editor/Resources.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/Editor/Resources/Icons.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/Resources/Icons/handmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/Editor/Resources/Icons/handmask.png -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/SteamVR_Input_Action_PropertyEditor.cs: -------------------------------------------------------------------------------- 1 | // removed -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/SteamVR_Input_Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/Editor/SteamVR_Input_Editor.asmdef -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/SteamVR_Input_EditorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/Editor/SteamVR_Input_EditorWindow.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/SteamVR_Input_Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/Editor/SteamVR_Input_Generator.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Editor/SteamVR_Input_LiveWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/Editor/SteamVR_Input_LiveWindow.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/ExampleJSON.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/ExampleJSON/actions.json -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/actions.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/ExampleJSON/actions.json.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/binding_index_hmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/ExampleJSON/binding_index_hmd.json -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/binding_rift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/ExampleJSON/binding_rift.json -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/binding_rift.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/ExampleJSON/binding_rift.json.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/binding_vive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/ExampleJSON/binding_vive.json -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/binding_vive.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/ExampleJSON/binding_vive.json.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/binding_vive_cosmos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/ExampleJSON/binding_vive_cosmos.json -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/binding_vive_pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/ExampleJSON/binding_vive_pro.json -------------------------------------------------------------------------------- /Assets/SteamVR/Input/ExampleJSON/bindings_knuckles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/ExampleJSON/bindings_knuckles.json -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/Plugins.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Plugins/JSON.NET.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/Plugins/JSON.NET.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/Plugins/JSON.NET/LICENSE_SaladLab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/Plugins/JSON.NET/LICENSE_SaladLab -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_ActionDirections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_ActionDirections.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_ActionDirections.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_ActionDirections.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_ActionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_ActionSet.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_ActionSet.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_ActionSet.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_ActionSet_Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_ActionSet_Manager.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_ActionSet_Manager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_ActionSet_Manager.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Boolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Boolean.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Boolean.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Boolean.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_In.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_In.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_In.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Out.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Out.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Out.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Out.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Pose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Pose.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Pose.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Pose.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Single.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Single.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Single.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Skeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Skeleton.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Skeleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Skeleton.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Vector2.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Vector2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Vector2.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Vector3.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Vector3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Vector3.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Vibration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Vibration.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Action_Vibration.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Action_Vibration.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_ActivateActionSetOnLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_ActivateActionSetOnLoad.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Behaviour_Boolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Behaviour_Boolean.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Behaviour_Boolean.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Behaviour_Boolean.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Behaviour_Pose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Behaviour_Pose.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Behaviour_Pose.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Behaviour_Pose.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Behaviour_Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Behaviour_Single.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Behaviour_Single.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Behaviour_Single.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Behaviour_Skeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Behaviour_Skeleton.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Behaviour_Skeleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Behaviour_Skeleton.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Behaviour_SkeletonCustom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Behaviour_SkeletonCustom.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Behaviour_Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Behaviour_Vector2.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Behaviour_Vector2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Behaviour_Vector2.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Behaviour_Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Behaviour_Vector3.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Behaviour_Vector3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Behaviour_Vector3.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_DefaultAction.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_DefaultAction.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_DefaultAction.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_DefaultActionSet.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_DefaultActionSet.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_DefaultActionSet.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_ActionFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input_ActionFile.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_ActionFile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input_ActionFile.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_ActionScopes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input_ActionScopes.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_ActionScopes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input_ActionScopes.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_ActionSetUsages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input_ActionSetUsages.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_ActionSetUsages.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input_ActionSetUsages.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_BindingFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input_BindingFile.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_BindingFile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input_BindingFile.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_Generator_Names.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input_Generator_Names.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_Generator_Names.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input_Generator_Names.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_References.cs: -------------------------------------------------------------------------------- 1 | //removed -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_References.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input_References.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input_Source.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_Source.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input_Source.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_Sources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input_Sources.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Input_Sources.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Input_Sources.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Skeleton_Pose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Skeleton_Pose.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Skeleton_Pose.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Skeleton_Pose.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Skeleton_Poser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Skeleton_Poser.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_Skeleton_Poser.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_Skeleton_Poser.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_UpdateModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_UpdateModes.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Input/SteamVR_UpdateModes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Input/SteamVR_UpdateModes.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Icons.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Materials.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Prefabs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Scripts.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/DebugUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Scripts/DebugUI.cs -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/EnumFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Scripts/EnumFlags.cs -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/GrabTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Scripts/GrabTypes.cs -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/Hand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Scripts/Hand.cs -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/Hand.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Scripts/Hand.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/PlaySound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Scripts/PlaySound.cs -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Scripts/Player.cs -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/SeeThru.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Scripts/SeeThru.cs -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/Throwable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Scripts/Throwable.cs -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/UIElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Scripts/UIElement.cs -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/Unparent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Scripts/Unparent.cs -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Scripts/Util.cs -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Scripts/Util.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Scripts/Util.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Core/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Core/Shaders.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Hints.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Hints/Materials.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Hints/Prefabs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Hints/Scripts.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Hints/Shaders.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Hints/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Hints/Textures.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Longbow.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Animators.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Longbow/Animators.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Longbow/Materials.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Longbow/Models.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Models/Arrow.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Longbow/Models/Arrow.fbx -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Longbow/Prefabs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Longbow/Scripts.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Scripts/Arrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Longbow/Scripts/Arrow.cs -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Sounds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Longbow/Sounds.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Longbow/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Longbow/Textures.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Poses.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/CubePose.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Poses/CubePose.asset -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/CubePose.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Poses/CubePose.asset.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/GrenadePose.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Poses/GrenadePose.asset -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/HappyBallPose.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Poses/HappyBallPose.asset -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/SquishyBase.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Poses/SquishyBase.asset -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/fallback_fist.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Poses/fallback_fist.asset -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/longbowPose.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Poses/longbowPose.asset -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Poses/spherePose.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Poses/spherePose.asset -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples/Animations.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Animators.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples/Animators.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Grenade.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples/Grenade.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples/JoeJeff.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/JoeJeff/JJHat.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples/JoeJeff/JJHat.fbx -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples/Materials.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples/Models.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Flower.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples/Models/Flower.FBX -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/Target.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples/Models/Target.fbx -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Models/floor.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples/Models/floor.mat -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples/Prefabs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples/Scripts.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Squishy.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples/Squishy.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Samples/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Samples/Textures.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/SnapTurn.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/SnapTurn.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/SnapTurn/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/SnapTurn/Materials.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/SnapTurn/SnapTurn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/SnapTurn/SnapTurn.cs -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/SnapTurn/SnapTurn.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/SnapTurn/SnapTurn.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/SnapTurn/snapTurnFX.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/SnapTurn/snapTurnFX.fbx -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Teleport.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Teleport/Materials.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Teleport/Models.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Teleport/Prefabs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Teleport/Scripts.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Teleport/Shaders.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Sounds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Teleport/Sounds.meta -------------------------------------------------------------------------------- /Assets/SteamVR/InteractionSystem/Teleport/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/InteractionSystem/Teleport/Textures.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Materials.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Materials/def.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Materials/def.mat -------------------------------------------------------------------------------- /Assets/SteamVR/Materials/def.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Materials/def.mat.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Materials/workshop.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Materials/workshop.mat -------------------------------------------------------------------------------- /Assets/SteamVR/Materials/workshop.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Materials/workshop.mat.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/Abyss.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/Abyss.mat -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/Abyss.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/Abyss.mat.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/AlienHand.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/AlienHand.mat -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/AlienHand.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/AlienHand.mat.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/AlienHand_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/AlienHand_Normal.png -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/AlienHand_Normal.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/AlienHand_Normal.png.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/No Name.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/No Name.mat -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/No Name.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/No Name.mat.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/floppyHand Emit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/floppyHand Emit.png -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/floppyHand Emit.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/floppyHand Emit.png.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/floppyHand.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/floppyHand.mat -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/floppyHand.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/floppyHand.mat.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/knuckles_right.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/knuckles_right.mat -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/knuckles_right.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/knuckles_right.mat.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/vr_glove_color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/vr_glove_color.jpg -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/vr_glove_color.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/vr_glove_color.jpg.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/vr_glove_color.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/vr_glove_color.mat -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/vr_glove_color.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/vr_glove_color.mat.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/vr_glove_color_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/vr_glove_color_red.jpg -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/vr_glove_color_red.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/vr_glove_color_red.mat -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/vr_glove_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/vr_glove_normal.png -------------------------------------------------------------------------------- /Assets/SteamVR/Models/Materials/vr_glove_normal.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/Materials/vr_glove_normal.png.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/handFingers.mask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/handFingers.mask -------------------------------------------------------------------------------- /Assets/SteamVR/Models/handFingers.mask.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/handFingers.mask.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_alien_hand.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/vr_alien_hand.fbx -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_alien_hand.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/vr_alien_hand.fbx.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_floppyHand.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/vr_floppyHand.fbx -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_floppyHand.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/vr_floppyHand.fbx.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_glove_graspPoses.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/vr_glove_graspPoses.controller -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_glove_graspPoses.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/vr_glove_graspPoses.controller.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_glove_left_model_slim.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/vr_glove_left_model_slim.fbx -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_glove_left_model_slim.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/vr_glove_left_model_slim.fbx.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_glove_model.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/vr_glove_model.fbx -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_glove_model.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/vr_glove_model.fbx.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_glove_right_model_slim.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/vr_glove_right_model_slim.fbx -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_glove_right_model_slim.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/vr_glove_right_model_slim.fbx.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_hand_grabposes.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/vr_hand_grabposes.fbx -------------------------------------------------------------------------------- /Assets/SteamVR/Models/vr_hand_grabposes.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Models/vr_hand_grabposes.fbx.meta -------------------------------------------------------------------------------- /Assets/SteamVR/OpenVRUnityXRPackage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/OpenVRUnityXRPackage.meta -------------------------------------------------------------------------------- /Assets/SteamVR/OpenVRUnityXRPackage/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/OpenVRUnityXRPackage/Editor.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Plugins.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Plugins/openvr_api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Plugins/openvr_api.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Plugins/openvr_api.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Plugins/openvr_api.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/[CameraRig].prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/[CameraRig].prefab -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/[CameraRig].prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/[CameraRig].prefab.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/[Status].prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/[Status].prefab -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/[Status].prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/[Status].prefab.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/[SteamVR].prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/[SteamVR].prefab -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/[SteamVR].prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/[SteamVR].prefab.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/controller.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/controller.prefab -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/controller.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/controller.prefab.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_glove_left.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/vr_glove_left.prefab -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_glove_left.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/vr_glove_left.prefab.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_glove_left_model_slim.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/vr_glove_left_model_slim.prefab -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_glove_right.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/vr_glove_right.prefab -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_glove_right.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/vr_glove_right.prefab.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_glove_right_model_slim.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/vr_glove_right_model_slim.prefab -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_hand_alien_left.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/vr_hand_alien_left.prefab -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_hand_alien_left.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/vr_hand_alien_left.prefab.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_hand_alien_right.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/vr_hand_alien_right.prefab -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_hand_alien_right.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/vr_hand_alien_right.prefab.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_hand_floppy_left.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/vr_hand_floppy_left.prefab -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_hand_floppy_left.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/vr_hand_floppy_left.prefab.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_hand_floppy_right.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/vr_hand_floppy_right.prefab -------------------------------------------------------------------------------- /Assets/SteamVR/Prefabs/vr_hand_floppy_right.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Prefabs/vr_hand_floppy_right.prefab.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/ReferencePose_BindPose.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/ReferencePose_BindPose.asset -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/ReferencePose_BindPose.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/ReferencePose_BindPose.asset.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/ReferencePose_Fist.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/ReferencePose_Fist.asset -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/ReferencePose_Fist.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/ReferencePose_Fist.asset.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/ReferencePose_OpenHand.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/ReferencePose_OpenHand.asset -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/ReferencePose_OpenHand.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/ReferencePose_OpenHand.asset.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_AlphaOut.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/SteamVR_AlphaOut.shader -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_AlphaOut.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/SteamVR_AlphaOut.shader.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_ClearAll.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/SteamVR_ClearAll.shader -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_ClearAll.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/SteamVR_ClearAll.shader.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_ColorOut.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/SteamVR_ColorOut.shader -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_ColorOut.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/SteamVR_ColorOut.shader.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_ExternalCamera.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/SteamVR_ExternalCamera.prefab -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_Fade.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/SteamVR_Fade.shader -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_Fade.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/SteamVR_Fade.shader.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_HoverHighlight.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/SteamVR_HoverHighlight.mat -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_HoverHighlight.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/SteamVR_HoverHighlight.mat.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Resources/SteamVR_HoverHighlight_URP.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Resources/SteamVR_HoverHighlight_URP.mat -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Behaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Behaviour.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Behaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Behaviour.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Camera.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Camera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Camera.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_CameraFlip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_CameraFlip.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_CameraFlip.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_CameraFlip.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_CameraMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_CameraMask.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_CameraMask.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_CameraMask.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Ears.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Ears.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Ears.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Ears.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_EnumEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_EnumEqualityComparer.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Events.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Events.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Events.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_ExternalCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_ExternalCamera.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_ExternalCamera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_ExternalCamera.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Fade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Fade.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Fade.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Fade.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Frustum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Frustum.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Frustum.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Frustum.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_IK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_IK.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_IK.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_IK.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_LoadLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_LoadLevel.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_LoadLevel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_LoadLevel.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Menu.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Menu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Menu.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Overlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Overlay.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Overlay.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Overlay.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_PlayArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_PlayArea.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_PlayArea.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_PlayArea.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Render.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Render.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Render.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Render.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_RenderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_RenderModel.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_RenderModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_RenderModel.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_RingBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_RingBuffer.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_RingBuffer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_RingBuffer.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Settings.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Settings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Settings.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Skybox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Skybox.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Skybox.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Skybox.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_SphericalProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_SphericalProjection.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_SphericalProjection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_SphericalProjection.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_TrackedCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_TrackedCamera.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_TrackedCamera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_TrackedCamera.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_TrackedObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_TrackedObject.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_TrackedObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_TrackedObject.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_TrackingReferenceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_TrackingReferenceManager.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Utils.cs -------------------------------------------------------------------------------- /Assets/SteamVR/Scripts/SteamVR_Utils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Scripts/SteamVR_Utils.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Simple Sample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Simple Sample.unity -------------------------------------------------------------------------------- /Assets/SteamVR/Simple Sample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Simple Sample.unity.meta -------------------------------------------------------------------------------- /Assets/SteamVR/SteamVR Unity Plugin - Input System.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/SteamVR Unity Plugin - Input System.pdf -------------------------------------------------------------------------------- /Assets/SteamVR/SteamVR Unity Plugin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/SteamVR Unity Plugin.pdf -------------------------------------------------------------------------------- /Assets/SteamVR/SteamVR Unity Plugin.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/SteamVR Unity Plugin.pdf.meta -------------------------------------------------------------------------------- /Assets/SteamVR/SteamVR.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/SteamVR.asmdef -------------------------------------------------------------------------------- /Assets/SteamVR/SteamVR.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/SteamVR.asmdef.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Textures.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Textures/arrow.png -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/arrow.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Textures/arrow.png.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Textures/background.png -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/background.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Textures/background.png.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Textures/logo.png -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Textures/logo.png.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/overlay.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Textures/overlay.renderTexture -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/overlay.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Textures/overlay.renderTexture.meta -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/workshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Textures/workshop.png -------------------------------------------------------------------------------- /Assets/SteamVR/Textures/workshop.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/Textures/workshop.png.meta -------------------------------------------------------------------------------- /Assets/SteamVR/WindowsHelper.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/WindowsHelper.meta -------------------------------------------------------------------------------- /Assets/SteamVR/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/link.xml -------------------------------------------------------------------------------- /Assets/SteamVR/link.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/link.xml.meta -------------------------------------------------------------------------------- /Assets/SteamVR/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/readme.txt -------------------------------------------------------------------------------- /Assets/SteamVR/readme.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR/readme.txt.meta -------------------------------------------------------------------------------- /Assets/SteamVR_Input.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR_Input.meta -------------------------------------------------------------------------------- /Assets/SteamVR_Input/ActionSetClasses.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR_Input/ActionSetClasses.meta -------------------------------------------------------------------------------- /Assets/SteamVR_Input/SteamVR_Actions.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR_Input/SteamVR_Actions.asmdef -------------------------------------------------------------------------------- /Assets/SteamVR_Input/SteamVR_Actions.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR_Input/SteamVR_Actions.asmdef.meta -------------------------------------------------------------------------------- /Assets/SteamVR_Input/SteamVR_Input_ActionSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR_Input/SteamVR_Input_ActionSets.cs -------------------------------------------------------------------------------- /Assets/SteamVR_Input/SteamVR_Input_ActionSets.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR_Input/SteamVR_Input_ActionSets.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR_Input/SteamVR_Input_Actions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR_Input/SteamVR_Input_Actions.cs -------------------------------------------------------------------------------- /Assets/SteamVR_Input/SteamVR_Input_Actions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR_Input/SteamVR_Input_Actions.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR_Input/SteamVR_Input_Initialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR_Input/SteamVR_Input_Initialization.cs -------------------------------------------------------------------------------- /Assets/SteamVR_Input/SteamVR_Input_Initialization.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR_Input/SteamVR_Input_Initialization.cs.meta -------------------------------------------------------------------------------- /Assets/SteamVR_Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR_Resources.meta -------------------------------------------------------------------------------- /Assets/SteamVR_Resources/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR_Resources/Resources.meta -------------------------------------------------------------------------------- /Assets/SteamVR_Resources/Resources/SteamVR_Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/SteamVR_Resources/Resources/SteamVR_Settings.asset -------------------------------------------------------------------------------- /Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets/SteamVR.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets/SteamVR/actions.json -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/actions.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets/SteamVR/actions.json.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/binding_index_hmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets/SteamVR/binding_index_hmd.json -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/binding_index_hmd.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets/SteamVR/binding_index_hmd.json.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/binding_rift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets/SteamVR/binding_rift.json -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/binding_rift.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets/SteamVR/binding_rift.json.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/binding_vive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets/SteamVR/binding_vive.json -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/binding_vive.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets/SteamVR/binding_vive.json.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/binding_vive_cosmos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets/SteamVR/binding_vive_cosmos.json -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/binding_vive_pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets/SteamVR/binding_vive_pro.json -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/binding_vive_pro.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets/SteamVR/binding_vive_pro.json.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/bindings_knuckles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets/SteamVR/bindings_knuckles.json -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/bindings_knuckles.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets/SteamVR/bindings_knuckles.json.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/SteamVR/bindings_oculus_touch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/StreamingAssets/SteamVR/bindings_oculus_touch.json -------------------------------------------------------------------------------- /Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Fonts.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Resources/Style Sheets.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/TMP Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Resources/TMP Settings.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta -------------------------------------------------------------------------------- /Assets/XR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/XR.meta -------------------------------------------------------------------------------- /Assets/XR/Loaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/XR/Loaders.meta -------------------------------------------------------------------------------- /Assets/XR/Loaders/Open VR Loader.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/XR/Loaders/Open VR Loader.asset -------------------------------------------------------------------------------- /Assets/XR/Loaders/Open VR Loader.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/XR/Loaders/Open VR Loader.asset.meta -------------------------------------------------------------------------------- /Assets/XR/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/XR/Settings.meta -------------------------------------------------------------------------------- /Assets/XR/Settings/Open VR Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/XR/Settings/Open VR Settings.asset -------------------------------------------------------------------------------- /Assets/XR/Settings/Open VR Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/XR/Settings/Open VR Settings.asset.meta -------------------------------------------------------------------------------- /Assets/XR/XRGeneralSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/XR/XRGeneralSettings.asset -------------------------------------------------------------------------------- /Assets/XR/XRGeneralSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Assets/XR/XRGeneralSettings.asset.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRPackageSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/XRPackageSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/README.md -------------------------------------------------------------------------------- /UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/UserSettings/EditorUserSettings.asset -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/_config.yml -------------------------------------------------------------------------------- /img/Unity-NVIDIA-part.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/img/Unity-NVIDIA-part.gif -------------------------------------------------------------------------------- /img/result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/img/result.gif -------------------------------------------------------------------------------- /img/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/img/thumbnail.png -------------------------------------------------------------------------------- /unityProject.vrmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-lirussi/VR-Physics-Integration/HEAD/unityProject.vrmanifest --------------------------------------------------------------------------------