├── Assets ├── ThirdPartyAssets │ ├── Oculus │ │ ├── VR │ │ │ ├── Plugins │ │ │ │ ├── placeholder.txt │ │ │ │ ├── 1.25.0 │ │ │ │ │ ├── Win │ │ │ │ │ │ ├── OVRPlugin.dll.disabled │ │ │ │ │ │ └── OVRPlugin.dll.disabled.meta │ │ │ │ │ ├── Win64 │ │ │ │ │ │ ├── OVRPlugin.dll.disabled │ │ │ │ │ │ └── OVRPlugin.dll.disabled.meta │ │ │ │ │ ├── Android │ │ │ │ │ │ ├── OVRPlugin.aar.disabled │ │ │ │ │ │ └── OVRPlugin.aar.disabled.meta │ │ │ │ │ ├── OSXIntel │ │ │ │ │ │ └── OVRPlugin.bundle.disabled │ │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ └── OVRPlugin │ │ │ │ │ │ │ └── Info.plist.meta │ │ │ │ │ ├── OSXIntel64 │ │ │ │ │ │ └── OVRPlugin.bundle.disabled │ │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ └── OVRPlugin │ │ │ │ │ │ │ └── Info.plist.meta │ │ │ │ │ ├── OSXUniversal │ │ │ │ │ │ └── OVRPlugin.bundle.disabled │ │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ └── OVRPlugin │ │ │ │ │ │ │ └── Info.plist.meta │ │ │ │ │ ├── Android.meta │ │ │ │ │ ├── Win.meta │ │ │ │ │ ├── Win64.meta │ │ │ │ │ ├── OSXIntel.meta │ │ │ │ │ ├── OSXIntel64.meta │ │ │ │ │ └── OSXUniversal.meta │ │ │ │ ├── MacOSX │ │ │ │ │ └── OVRGamepad.bundle │ │ │ │ │ │ ├── Contents │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ ├── OVRGamepad │ │ │ │ │ │ │ └── OVRGamepad.meta │ │ │ │ │ │ └── Info.plist.meta │ │ │ │ │ │ └── Contents.meta │ │ │ │ ├── placeholder.txt.meta │ │ │ │ ├── 1.25.0.meta │ │ │ │ └── MacOSX.meta │ │ │ ├── Textures.meta │ │ │ ├── Materials.meta │ │ │ ├── Scenes │ │ │ │ ├── Cubes.unity.meta │ │ │ │ ├── Room.unity.meta │ │ │ │ ├── UI.unity.meta │ │ │ │ ├── Trivial.unity.meta │ │ │ │ └── GearVrControllerTest.unity.meta │ │ │ ├── Textures │ │ │ │ ├── Icons.meta │ │ │ │ ├── Logos.meta │ │ │ │ ├── Black.png │ │ │ │ ├── handle.png │ │ │ │ ├── GazeRing.png │ │ │ │ ├── windowgui.png │ │ │ │ ├── gaze_cursor.png │ │ │ │ ├── cube_texture.png │ │ │ │ ├── Icons │ │ │ │ │ └── OculusIcon.png │ │ │ │ ├── Logos │ │ │ │ │ ├── OculusLogo.png │ │ │ │ │ └── OculusLogoSplash.png │ │ │ │ ├── color_ramp_timer.tga │ │ │ │ ├── gaze_cursor_timer.tga │ │ │ │ ├── GearVrController │ │ │ │ │ ├── GearVrController_ao_1024.tif │ │ │ │ │ ├── GearVrController_ao_128.tif │ │ │ │ │ ├── GearVrController_color_1024.tif │ │ │ │ │ ├── GearVrController_color_128.tif │ │ │ │ │ ├── GearVrController_normal_128.tif │ │ │ │ │ ├── GearVrController_normal_1024.tif │ │ │ │ │ ├── GearVrController_roughness_1024.tif │ │ │ │ │ └── GearVrController_roughness_128.tif │ │ │ │ ├── OculusGoController │ │ │ │ │ └── OculusGoController_albedo.tga │ │ │ │ ├── GearVrController.meta │ │ │ │ └── OculusGoController.meta │ │ │ ├── Editor.meta │ │ │ ├── Materials │ │ │ │ ├── Arrow.mat.meta │ │ │ │ ├── CubeMaterial.mat.meta │ │ │ │ ├── GazePointer.mat.meta │ │ │ │ ├── gaze_cursor.mat.meta │ │ │ │ ├── cursor_timer_material.mat.meta │ │ │ │ ├── GearVrController.meta │ │ │ │ └── GearVrController │ │ │ │ │ ├── GearVrControllerMat_1024.mat.meta │ │ │ │ │ └── GearVrControllerMat_128.mat.meta │ │ │ ├── Meshes.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scripts.meta │ │ │ ├── Prefabs │ │ │ │ ├── Cursor_Timer.prefab.meta │ │ │ │ ├── OVRCameraRig.prefab.meta │ │ │ │ ├── OVRPlayerController.prefab.meta │ │ │ │ ├── TrackedRemote.prefab.meta │ │ │ │ └── OVRCubemapCaptureProbe.prefab.meta │ │ │ ├── Scripts │ │ │ │ ├── Util.meta │ │ │ │ ├── OVRLayerAttribute.cs │ │ │ │ ├── OVRCameraRig.cs.meta │ │ │ │ ├── OVRCommon.cs.meta │ │ │ │ ├── OVRDisplay.cs.meta │ │ │ │ ├── OVRManager.cs.meta │ │ │ │ ├── OVROverlay.cs.meta │ │ │ │ ├── OVRPlugin.cs.meta │ │ │ │ ├── OVRProfile.cs.meta │ │ │ │ ├── OVRTracker.cs.meta │ │ │ │ ├── OVRPlatformMenu.cs.meta │ │ │ │ ├── Util │ │ │ │ │ ├── OVRDebugInfo.cs.meta │ │ │ │ │ ├── OVRGridCube.cs.meta │ │ │ │ │ ├── OVRModeParms.cs.meta │ │ │ │ │ ├── OVRMonoscopic.cs.meta │ │ │ │ │ ├── OVRRaycaster.cs.meta │ │ │ │ │ ├── OVRWaitCursor.cs.meta │ │ │ │ │ ├── OVRGazePointer.cs.meta │ │ │ │ │ ├── OVRInputModule.cs.meta │ │ │ │ │ ├── OVRScreenFade.cs.meta │ │ │ │ │ ├── OVRChromaticAberration.cs.meta │ │ │ │ │ ├── OVRPhysicsRaycaster.cs.meta │ │ │ │ │ ├── OVRPlayerController.cs.meta │ │ │ │ │ ├── OVRPointerEventData.cs.meta │ │ │ │ │ ├── OVRProgressIndicator.cs.meta │ │ │ │ │ ├── OVRResetOrientation.cs.meta │ │ │ │ │ └── OVRSceneSampleController.cs.meta │ │ │ │ ├── OVROnCompleteListener.cs.meta │ │ │ │ ├── Editor.meta │ │ │ │ └── Composition.meta │ │ │ ├── Shaders │ │ │ │ ├── Unlit Crosshair.shader.meta │ │ │ │ └── OVRColorRampAlpha.shader.meta │ │ │ ├── Meshes │ │ │ │ ├── GearVrController │ │ │ │ │ ├── GearVrController.fbx │ │ │ │ │ ├── Materials.meta │ │ │ │ │ └── Materials │ │ │ │ │ │ └── malibuController_color_1024.mat.meta │ │ │ │ ├── OculusGoController │ │ │ │ │ ├── OculusGoController.fbx │ │ │ │ │ └── Materials.meta │ │ │ │ ├── GearVrController.meta │ │ │ │ └── OculusGoController.meta │ │ │ ├── Editor │ │ │ │ ├── OVRBuild.cs.meta │ │ │ │ ├── AndroidManifest.OVRSubmission.xml.meta │ │ │ │ └── OVREngineConfigurationUpdater.cs.meta │ │ │ ├── Shaders.meta │ │ │ ├── Plugins.meta │ │ │ ├── Resources.meta │ │ │ └── Resources │ │ │ │ ├── OVRMRUnlit.shader.meta │ │ │ │ ├── Cubemap Blit.shader.meta │ │ │ │ ├── OVRMRCameraFrame.shader.meta │ │ │ │ ├── OVRMRChromaKey.cginc.meta │ │ │ │ ├── OVRMRClipPlane.shader.meta │ │ │ │ ├── Texture2D Blit.shader.meta │ │ │ │ ├── OVRMRCameraFrameLit.shader.meta │ │ │ │ ├── OVRMRUnlitTransparent.shader.meta │ │ │ │ └── Underlay Impostor.shader.meta │ │ ├── VR.meta │ │ ├── OvrAvatar │ │ │ ├── Scripts │ │ │ │ ├── OvrAvatarAsset.cs │ │ │ │ ├── OvrAvatarBase.cs │ │ │ │ ├── OvrAvatarHand.cs │ │ │ │ └── OvrAvatarTouchController.cs │ │ │ ├── Samples │ │ │ │ ├── SocialStarter │ │ │ │ │ ├── Assets │ │ │ │ │ │ ├── Textures │ │ │ │ │ │ │ ├── Help.png │ │ │ │ │ │ │ └── GearHelp.png │ │ │ │ │ │ ├── MainScene.unity.meta │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ ├── Help.mat.meta │ │ │ │ │ │ │ ├── GearHelp.mat.meta │ │ │ │ │ │ │ ├── Offline_Mat.mat.meta │ │ │ │ │ │ │ └── Plane_Mat.mat.meta │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ └── Scripts.meta │ │ │ │ │ ├── README.txt.meta │ │ │ │ │ └── Assets.meta │ │ │ │ ├── GripPoses │ │ │ │ │ ├── GripPoses.unity.meta │ │ │ │ │ └── Scripts.meta │ │ │ │ ├── Controllers │ │ │ │ │ └── Controllers.unity.meta │ │ │ │ ├── LocalAvatar │ │ │ │ │ └── LocalAvatar.unity.meta │ │ │ │ ├── RemoteLoopback │ │ │ │ │ ├── RemoteLoopback.unity.meta │ │ │ │ │ └── Scripts.meta │ │ │ │ ├── Controllers.meta │ │ │ │ ├── GripPoses.meta │ │ │ │ ├── LocalAvatar.meta │ │ │ │ ├── RemoteLoopback.meta │ │ │ │ └── SocialStarter.meta │ │ │ ├── Content.meta │ │ │ ├── Content │ │ │ │ ├── Prefabs │ │ │ │ │ ├── LocalAvatar.prefab.meta │ │ │ │ │ └── RemoteAvatar.prefab.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ └── Materials.meta │ │ │ ├── Editor.meta │ │ │ ├── Samples.meta │ │ │ └── Scripts.meta │ │ ├── OculusPlatform.meta │ │ ├── OculusPlatform │ │ │ ├── Editor.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ └── Models.meta │ │ │ └── Editor │ │ │ │ └── OculusStandalonePlatformResponse.cs │ │ └── OvrAvatar.meta │ ├── VRTK │ │ ├── README.pdf │ │ ├── Source │ │ │ ├── Scripts │ │ │ │ ├── Utilities │ │ │ │ │ ├── SDK.meta │ │ │ │ │ ├── UnityEvents.meta │ │ │ │ │ └── ObjectFollow.meta │ │ │ │ ├── Internal │ │ │ │ │ ├── Attributes │ │ │ │ │ │ └── ObsoleteInspectorAttribute.cs │ │ │ │ │ ├── Shaders.meta │ │ │ │ │ ├── Attributes.meta │ │ │ │ │ └── DataTypes.meta │ │ │ │ ├── UI.meta │ │ │ │ ├── Controls.meta │ │ │ │ ├── Controls │ │ │ │ │ ├── 3D.meta │ │ │ │ │ └── 3D │ │ │ │ │ │ └── Utilities.meta │ │ │ │ ├── Interactions.meta │ │ │ │ ├── Internal.meta │ │ │ │ ├── Locomotion.meta │ │ │ │ ├── Pointers.meta │ │ │ │ ├── Presence.meta │ │ │ │ ├── Utilities.meta │ │ │ │ ├── Interactions │ │ │ │ │ ├── Highlighters.meta │ │ │ │ │ ├── Interactables.meta │ │ │ │ │ └── Interactors.meta │ │ │ │ ├── Pointers │ │ │ │ │ └── PointerRenderers.meta │ │ │ │ └── Locomotion │ │ │ │ │ └── ObjectControlActions.meta │ │ │ ├── Editor │ │ │ │ ├── Icons │ │ │ │ │ ├── vrtk_script_prefab.png │ │ │ │ │ ├── vrtk_script_usable.png │ │ │ │ │ ├── vrtk_script_internal.png │ │ │ │ │ └── vrtk_script_obsolete.png │ │ │ │ ├── Icons.meta │ │ │ │ ├── Attributes.meta │ │ │ │ └── DataTypes.meta │ │ │ ├── SDK │ │ │ │ ├── WindowsMR │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── WindowsMR_ControllerManager.cs │ │ │ │ │ └── README.md.meta │ │ │ │ ├── Daydream │ │ │ │ │ ├── ABOUT.md.meta │ │ │ │ │ └── README.md.meta │ │ │ │ ├── Oculus │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── Resources.meta │ │ │ │ │ └── Resources │ │ │ │ │ │ └── ControllerColliders │ │ │ │ │ │ ├── OculusTouch_Left.prefab.meta │ │ │ │ │ │ └── OculusTouch_Right.prefab.meta │ │ │ │ ├── SteamVR │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── Resources.meta │ │ │ │ │ └── Resources │ │ │ │ │ │ └── ControllerColliders │ │ │ │ │ │ └── HTCVive.prefab.meta │ │ │ │ ├── Unity │ │ │ │ │ ├── README.md.meta │ │ │ │ │ └── [UnityBase_CameraRig].prefab.meta │ │ │ │ ├── HyperealVR │ │ │ │ │ ├── README.md.meta │ │ │ │ │ └── Resources.meta │ │ │ │ ├── Simulator │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── [VRSimulator_CameraRig].prefab.meta │ │ │ │ │ ├── Resources.meta │ │ │ │ │ └── Resources │ │ │ │ │ │ └── ControllerColliders │ │ │ │ │ │ └── Simulator.prefab.meta │ │ │ │ ├── Ximmerse │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── Resources.meta │ │ │ │ │ └── Resources │ │ │ │ │ │ └── ControllerColliders │ │ │ │ │ │ └── XimmerseCobra02.prefab.meta │ │ │ │ ├── Base.meta │ │ │ │ ├── Oculus.meta │ │ │ │ ├── Unity.meta │ │ │ │ ├── Daydream.meta │ │ │ │ ├── Fallback.meta │ │ │ │ ├── HyperealVR.meta │ │ │ │ ├── Simulator.meta │ │ │ │ ├── SteamVR.meta │ │ │ │ ├── Ximmerse.meta │ │ │ │ └── Fallback │ │ │ │ │ ├── Resources.meta │ │ │ │ │ └── Resources │ │ │ │ │ └── ControllerColliders │ │ │ │ │ └── Fallback.prefab.meta │ │ │ ├── SDK.meta │ │ │ ├── Editor.meta │ │ │ └── Scripts.meta │ │ ├── Documentation │ │ │ ├── logos │ │ │ │ ├── cloud.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── vrtk-icons.ico │ │ │ │ ├── vrtk-main.png │ │ │ │ ├── vrtk-logo-sheet.ai │ │ │ │ ├── vrtk-capsule-clear.png │ │ │ │ ├── vrtk-capsule-filled.png │ │ │ │ ├── vrtk-mark-64x64-grey.png │ │ │ │ ├── vrtk-mark-64x64-pink.png │ │ │ │ ├── vrtk-mark-512x512-black.png │ │ │ │ ├── vrtk-mark-512x512-grey.png │ │ │ │ ├── vrtk-mark-512x512-pink.png │ │ │ │ ├── vrtk-mark-64x64-black.png │ │ │ │ ├── favicon.ico.meta │ │ │ │ ├── vrtk-main.svg.meta │ │ │ │ ├── vrtk-icons.ico.meta │ │ │ │ ├── vrtk-logo-sheet.ai.meta │ │ │ │ └── vrtk-logo-sheet.svg.meta │ │ │ ├── API.md.meta │ │ │ ├── FAQ.md.meta │ │ │ ├── GETTING_STARTED.md.meta │ │ │ ├── MADE_WITH_VRTK.md.meta │ │ │ └── logos.meta │ │ ├── Internal │ │ │ ├── Textures │ │ │ │ ├── Crosshair.png │ │ │ │ └── DirectionArrows.png │ │ │ ├── Materials │ │ │ │ ├── Resources │ │ │ │ │ ├── UIText.mat.meta │ │ │ │ │ ├── OutlineBasic.mat.meta │ │ │ │ │ ├── TooltipLine.mat.meta │ │ │ │ │ ├── WorldPointer.mat.meta │ │ │ │ │ ├── SnapDropZoneEditorObject.mat.meta │ │ │ │ │ └── AdaptiveQualityDebugVisualization.mat.meta │ │ │ │ └── Resources.meta │ │ │ ├── Materials.meta │ │ │ └── Textures.meta │ │ ├── Examples │ │ │ ├── ExampleResources │ │ │ │ ├── SharedResources │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── rock.fbx │ │ │ │ │ │ └── arrow.fbx │ │ │ │ │ ├── Textures │ │ │ │ │ │ ├── AreaPattern.png │ │ │ │ │ │ └── Default_Floor.png │ │ │ │ │ └── Terrains │ │ │ │ │ │ └── ExampleTerrain.asset │ │ │ │ ├── SceneResources │ │ │ │ │ └── [006 - Locomotion] MovementTypes │ │ │ │ │ │ └── Scripts │ │ │ │ │ │ └── IgnoreTeleportDummy.cs │ │ │ │ ├── SceneResources.meta │ │ │ │ └── SharedResources.meta │ │ │ ├── README.md.meta │ │ │ ├── [002 - Pointers] StraightPointer.unity.meta │ │ │ ├── [003 - Pointers] BezierPointer.unity.meta │ │ │ ├── [004 - Locomotion] Teleporting.unity.meta │ │ │ ├── [006 - Locomotion] MovementTypes.unity.meta │ │ │ ├── [001 - Interactions] ControllerEvents.unity.meta │ │ │ ├── ExampleResources.meta │ │ │ ├── [005 - Interactions] InteractableObjects.unity.meta │ │ │ └── [007 - Interactions] InteractionHelpers.unity.meta │ │ ├── License │ │ │ └── thestonefox.meta │ │ ├── Prefabs │ │ │ ├── AvatarHands │ │ │ │ ├── BasicHands │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── VRTK_BasicHand.fbx │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ └── Textures │ │ │ │ │ │ │ │ └── VRTK_BasicHand_Texture.png │ │ │ │ │ │ ├── Avatar Masks │ │ │ │ │ │ │ ├── Hand_Idle.mask.meta │ │ │ │ │ │ │ ├── Hand_Index.mask.meta │ │ │ │ │ │ │ ├── Hand_Middle.mask.meta │ │ │ │ │ │ │ ├── Hand_Pinky.mask.meta │ │ │ │ │ │ │ ├── Hand_Ring.mask.meta │ │ │ │ │ │ │ └── Hand_Thumb.mask.meta │ │ │ │ │ │ └── Materials.meta │ │ │ │ │ ├── VRTK_BasicHand.prefab.meta │ │ │ │ │ └── Models.meta │ │ │ │ └── BasicHands.meta │ │ │ ├── PanelMenu │ │ │ │ └── PanelMenu.prefab.meta │ │ │ ├── RadialMenu │ │ │ │ ├── RadialMenu.prefab.meta │ │ │ │ ├── RadialMenuButton │ │ │ │ │ ├── Arc.prefab.meta │ │ │ │ │ └── RadialButtonIcon.cs │ │ │ │ └── RadialMenuButton.meta │ │ │ ├── DesktopCamera │ │ │ │ └── DesktopCamera.prefab.meta │ │ │ ├── ObjectTooltip │ │ │ │ └── ObjectTooltip.prefab.meta │ │ │ ├── SnapDropZone │ │ │ │ └── SnapDropZone.prefab.meta │ │ │ ├── AvatarHands.meta │ │ │ ├── DesktopCamera.meta │ │ │ ├── DestinationPoint │ │ │ │ └── DestinationPoint.prefab.meta │ │ │ ├── ObjectTooltip.meta │ │ │ ├── PanelMenu.meta │ │ │ ├── RadialMenu.meta │ │ │ ├── SnapDropZone.meta │ │ │ ├── ControllerTooltips.meta │ │ │ ├── ControllerTooltips │ │ │ │ └── ControllerTooltips.prefab.meta │ │ │ ├── DestinationPoint.meta │ │ │ ├── SDKSetupSwitcher.meta │ │ │ ├── SDKSetupSwitcher │ │ │ │ └── SDKSetupSwitcher.prefab.meta │ │ │ ├── ConsoleViewerCanvas.meta │ │ │ ├── ConsoleViewerCanvas │ │ │ │ └── ConsoleViewerCanvas.prefab.meta │ │ │ ├── FramesPerSecondCanvas.meta │ │ │ ├── ControllerRigidbodyActivator.meta │ │ │ ├── FramesPerSecondCanvas │ │ │ │ └── FramesPerSecondCanvas.prefab.meta │ │ │ ├── PointerDirectionIndicator.meta │ │ │ ├── PointerDirectionIndicator │ │ │ │ └── PointerDirectionIndicator.prefab.meta │ │ │ └── ControllerRigidbodyActivator │ │ │ │ └── ControllerRigidbodyActivator.prefab.meta │ │ ├── Examples.meta │ │ ├── License.meta │ │ ├── README.pdf.meta │ │ ├── Source.meta │ │ ├── Internal.meta │ │ ├── Prefabs.meta │ │ └── Documentation.meta │ ├── SteamVR │ │ ├── quickstart.pdf │ │ ├── Textures │ │ │ ├── arrow.png │ │ │ ├── logo.png │ │ │ ├── workshop.png │ │ │ ├── background.png │ │ │ └── overlay.renderTexture.meta │ │ ├── quickstart.pdf.meta │ │ ├── readme.txt.meta │ │ ├── Scenes │ │ │ └── example.unity.meta │ │ ├── Editor.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ └── workshop.mat.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── [CameraRig].prefab.meta │ │ │ ├── [Status].prefab.meta │ │ │ └── [SteamVR].prefab.meta │ │ ├── Resources.meta │ │ ├── Scenes.meta │ │ ├── Scripts.meta │ │ ├── Textures.meta │ │ ├── License │ │ │ └── ValveSoftware.meta │ │ ├── License.meta │ │ ├── Extras │ │ │ ├── SteamVR_TestIK.unity.meta │ │ │ ├── SteamVR_TestThrow.unity.meta │ │ │ ├── SteamVR_TestTrackedCamera.unity.meta │ │ │ └── SteamVR_TestTrackedCamera.mat.meta │ │ ├── Extras.meta │ │ ├── Plugins.meta │ │ ├── Resources │ │ │ ├── SteamVR_ExternalCamera.prefab.meta │ │ │ ├── SteamVR_AlphaOut.shader.meta │ │ │ ├── SteamVR_ClearAll.shader.meta │ │ │ ├── SteamVR_ColorOut.shader.meta │ │ │ └── SteamVR_Fade.shader.meta │ │ ├── Scripts │ │ │ ├── SteamVR.cs.meta │ │ │ ├── SteamVR_Camera.cs.meta │ │ │ ├── SteamVR_Fade.cs.meta │ │ │ ├── SteamVR_GameView.cs.meta │ │ │ ├── SteamVR_Menu.cs.meta │ │ │ ├── SteamVR_Overlay.cs.meta │ │ │ ├── SteamVR_Stats.cs.meta │ │ │ ├── SteamVR_Utils.cs.meta │ │ │ ├── SteamVR_CameraMask.cs.meta │ │ │ ├── SteamVR_RenderModel.cs.meta │ │ │ └── SteamVR_TrackedObject.cs.meta │ │ └── Editor │ │ │ └── SteamVR_Editor.cs.meta │ ├── UnityChan │ │ ├── License │ │ │ ├── UCL2_0.zip │ │ │ └── UCL2_0.zip.meta │ │ ├── Voice │ │ │ ├── univ0009.wav │ │ │ ├── univ0015.wav │ │ │ └── unity-chan_voice_list.txt.meta │ │ ├── Models │ │ │ ├── unitychan.fbx │ │ │ ├── UnityChanShader │ │ │ │ ├── Texture │ │ │ │ │ ├── ENV2.tga │ │ │ │ │ ├── FO_RIM1.tga │ │ │ │ │ ├── body_01.tga │ │ │ │ │ ├── face_00.tga │ │ │ │ │ ├── guide.tga │ │ │ │ │ ├── hair_01.tga │ │ │ │ │ ├── skin_01.tga │ │ │ │ │ ├── FO_CLOTH1.tga │ │ │ │ │ ├── FO_SKIN1.tga │ │ │ │ │ ├── cheek_00.tga │ │ │ │ │ ├── body_01_NRM.tga │ │ │ │ │ ├── body_01_SPEC.tga │ │ │ │ │ ├── eyeline_00.tga │ │ │ │ │ ├── hair_01_NRM.tga │ │ │ │ │ ├── hair_01_SPEC.tga │ │ │ │ │ ├── DEFAULT_NORMAL.tga │ │ │ │ │ ├── eye_iris_L_00.tga │ │ │ │ │ └── eye_iris_R_00.tga │ │ │ │ ├── Shader │ │ │ │ │ ├── CharaMain.cg.meta │ │ │ │ │ ├── CharaSkin.cg.meta │ │ │ │ │ ├── CharaOutline.cg.meta │ │ │ │ │ ├── Unitychan_chara_eye.shader.meta │ │ │ │ │ ├── Unitychan_chara_fuku.shader.meta │ │ │ │ │ ├── Unitychan_chara_hada.shader.meta │ │ │ │ │ ├── Unitychan_chara_hair.shader.meta │ │ │ │ │ ├── Unitychan_chara_eye_blend.shader.meta │ │ │ │ │ ├── Unitychan_chara_fuku_ds.shader.meta │ │ │ │ │ ├── Unitychan_chara_hair_ds.shader.meta │ │ │ │ │ ├── Unitychan_chara_akarami_blend.shader.meta │ │ │ │ │ ├── Unitychan_chara_eyelash_blend.shader.meta │ │ │ │ │ └── Unitychan_chara_hada_blend.shader.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── body.mat.meta │ │ │ │ │ ├── face.mat.meta │ │ │ │ │ ├── hair.mat.meta │ │ │ │ │ ├── skin1.mat.meta │ │ │ │ │ ├── eye_L1.mat.meta │ │ │ │ │ ├── eye_R1.mat.meta │ │ │ │ │ ├── eyebase.mat.meta │ │ │ │ │ ├── eyeline.mat.meta │ │ │ │ │ └── mat_cheek.mat.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Shader.meta │ │ │ │ └── Texture.meta │ │ │ ├── Materials │ │ │ │ ├── Left.mat.meta │ │ │ │ ├── Right.mat.meta │ │ │ │ ├── body.mat.meta │ │ │ │ ├── eye_L1.mat.meta │ │ │ │ ├── eye_R1.mat.meta │ │ │ │ ├── face.mat.meta │ │ │ │ ├── hair.mat.meta │ │ │ │ ├── skin1.mat.meta │ │ │ │ ├── eyebase.mat.meta │ │ │ │ ├── eyeline.mat.meta │ │ │ │ └── mat_cheek.mat.meta │ │ │ ├── Materials.meta │ │ │ └── UnityChanShader.meta │ │ ├── Stage │ │ │ ├── Textures │ │ │ │ └── unitychan_tile6.png │ │ │ ├── Shader │ │ │ │ ├── Textures │ │ │ │ │ ├── AlphaMask.png │ │ │ │ │ └── Unity_Icon.png │ │ │ │ └── Textures.meta │ │ │ ├── Materials │ │ │ │ └── unitychan_tile6.mat.meta │ │ │ ├── Shader.meta │ │ │ ├── Materials.meta │ │ │ └── Textures.meta │ │ ├── SplashScreen │ │ │ ├── Logo │ │ │ │ ├── Dark_Silhouette.png │ │ │ │ └── Light_Silhouette.png │ │ │ ├── SplashScreen_Dark.unity.meta │ │ │ ├── SplashScreen_Light.unity.meta │ │ │ ├── Animations │ │ │ │ ├── FadeIn.anim.meta │ │ │ │ ├── FadeOut.anim.meta │ │ │ │ └── Voice.anim.meta │ │ │ ├── Animators │ │ │ │ └── SplashScreen.controller.meta │ │ │ ├── Logo.meta │ │ │ ├── Animators.meta │ │ │ ├── Scripts.meta │ │ │ └── Animations.meta │ │ ├── FaceAnimation │ │ │ ├── ASHAMED.anim.meta │ │ │ ├── smile1@unitychan.anim.meta │ │ │ ├── eye_close@unitychan.anim.meta │ │ │ └── face only mask.mask.meta │ │ ├── Prefabs │ │ │ └── unitychan.prefab.meta │ │ ├── License.meta │ │ ├── Models.meta │ │ ├── Prefabs.meta │ │ ├── Scripts.meta │ │ ├── Stage.meta │ │ ├── Voice.meta │ │ ├── SplashScreen.meta │ │ └── FaceAnimation.meta │ ├── uWindowCapture │ │ ├── Models │ │ │ ├── uWC_Board.fbx │ │ │ └── uWC_Plane.fbx │ │ ├── Shaders.meta │ │ ├── Materials │ │ │ ├── uWC_Icon.mat.meta │ │ │ ├── uWC_Unlit.mat.meta │ │ │ └── uWC_Transparent.mat.meta │ │ ├── Models.meta │ │ ├── Materials.meta │ │ └── Shaders │ │ │ ├── UwcCommon.cginc.meta │ │ │ └── UwcUnlit.shader.meta │ ├── VRTK.meta │ ├── EditorXR.meta │ ├── EditorXR │ │ └── ConsoleCapture.prefab.meta │ ├── Oculus.meta │ ├── SteamVR.meta │ ├── inputsimulator.meta │ ├── inputsimulator │ │ ├── license │ │ │ └── license.json.meta │ │ ├── license.meta │ │ ├── sourceCode.meta │ │ └── sourceCode │ │ │ ├── inputsimulator │ │ │ ├── WindowsInput │ │ │ │ ├── WindowsInput.snk │ │ │ │ ├── WindowsInput.snk.meta │ │ │ │ ├── WindowsInput.csproj.meta │ │ │ │ ├── WindowsInput.nuspec.meta │ │ │ │ ├── Native.meta │ │ │ │ └── Properties.meta │ │ │ ├── README.md.meta │ │ │ └── WindowsInput.meta │ │ │ └── inputsimulator.meta │ ├── UnityChan.meta │ └── uWindowCapture.meta ├── TexFacial │ └── transparent.png ├── UnityVRAnimationEditor │ ├── Icon │ │ ├── copy.png │ │ ├── fa_move.png │ │ ├── fa_play.png │ │ ├── fa_plus.png │ │ ├── fa_redo.png │ │ ├── fa_undo.png │ │ ├── minus.png │ │ ├── paste.png │ │ ├── fa_goend.png │ │ ├── fa_record.png │ │ ├── fa_rotate.png │ │ ├── fa_trash.png │ │ ├── looppoint.png │ │ ├── fa_gogoend.png │ │ ├── fa_gogostart.png │ │ ├── fa_gostart.png │ │ ├── fa_nextframe.png │ │ ├── fa_nextkey.png │ │ ├── fa_prevframe.png │ │ ├── fa_prevkey.png │ │ ├── fa_scaling.png │ │ └── fa_thumbtack.png │ ├── Models │ │ └── octamesh.obj │ ├── Icon.meta │ ├── Prefabs │ │ ├── BoxButton.prefab.meta │ │ ├── NodeSelectAnimation.prefab.meta │ │ ├── VRAnimationEditor.prefab.meta │ │ └── Node.prefab.meta │ ├── Sample │ │ ├── Scenes │ │ │ ├── Empty.unity.meta │ │ │ ├── SampleNode.unity.meta │ │ │ ├── SampleUnityChan_FinalIK.unity.meta │ │ │ └── SampleUnityChan_FinalIK_Timeline.unity.meta │ │ ├── Scenes.meta │ │ ├── Animations.meta │ │ ├── Timeline.meta │ │ ├── Animations │ │ │ ├── HandPoses.meta │ │ │ ├── New Animation.anim.meta │ │ │ ├── unitychan.controller.meta │ │ │ └── HandPoses │ │ │ │ ├── default.anim.meta │ │ │ │ └── openhand.anim.meta │ │ └── Timeline │ │ │ └── Sample.playable.meta │ ├── Material.meta │ ├── Models.meta │ ├── Prefabs.meta │ ├── Sample.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── Editor.meta │ │ ├── WithFinalIK.meta │ │ ├── ScalingNode.cs │ │ ├── WithFinalIK │ │ │ └── Editor.meta │ │ └── NodeUIButton.cs │ └── Material │ │ ├── Floor.mat.meta │ │ ├── gray.mat.meta │ │ ├── BoxButton.mat.meta │ │ ├── FKNode.mat.meta │ │ ├── IKNode.mat.meta │ │ ├── RootNode.mat.meta │ │ ├── HilightedNode.mat.meta │ │ ├── ControllerCursor.mat.meta │ │ ├── IgnoreZTest.shader.meta │ │ └── NodeShader.shader.meta ├── Resources.meta ├── ThirdPartyAssets.meta ├── UnityVRAnimationEditor.meta └── Resources │ └── OvrAvatarSettings.asset.meta └── ProjectSettings ├── ProjectVersion.txt ├── NetworkManager.asset.meta ├── UnityAdsSettings.asset.meta ├── ClusterInputManager.asset ├── PresetManager.asset ├── EditorBuildSettings.asset ├── NetworkManager.asset └── TimeManager.asset /Assets/ThirdPartyAssets/Oculus/VR/Plugins/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.4.11f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0000000000000000a000000000000000 3 | -------------------------------------------------------------------------------- /ProjectSettings/UnityAdsSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00000000000000008100000000000000 3 | -------------------------------------------------------------------------------- /Assets/TexFacial/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/TexFacial/transparent.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 869fc009969608e4a9071237c584be0d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/README.pdf -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1938789817fe3974ea20e502ed4bcd76 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Utilities/SDK.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cbc5059f30c424584092c27d8bd351b 3 | timeCreated: 1490346090 -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/copy.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 981b5bce7fc4a2d43a2169710da4b892 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/quickstart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/SteamVR/quickstart.pdf -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_move.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_play.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_plus.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_redo.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_undo.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/minus.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/paste.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Scripts/OvrAvatarAsset.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | public class OvrAvatarAsset { 4 | public UInt64 assetID; 5 | } 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scenes/Cubes.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d920b3d2525670f4abad3d20eda3b349 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e081f465852cec14380da085e957c52b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/Logos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c18650754748f647bacde4e2116cbff 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_goend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_goend.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_record.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_rotate.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_trash.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/looppoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/looppoint.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Textures/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/SteamVR/Textures/arrow.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Textures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/SteamVR/Textures/logo.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_gogoend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_gogoend.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_gogostart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_gogostart.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_gostart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_gostart.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_nextframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_nextframe.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_nextkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_nextkey.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_prevframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_prevframe.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_prevkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_prevkey.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_scaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_scaling.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon/fa_thumbtack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Icon/fa_thumbtack.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Models/octamesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/UnityVRAnimationEditor/Models/octamesh.obj -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76c19abd24bec62459b5f0d26fdd9a85 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Materials/Arrow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 669025377795b574da66d9bb2472fcab 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Meshes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db348133d6680dd459f3e1cb19922746 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfe39332fdb4cb044b619b3e4b890396 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68bc04068edcc1a4d89699ab4e2e69ae 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 859d6d3fcffe1bb41ac06f93d267fc9d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/Black.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/handle.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Textures/workshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/SteamVR/Textures/workshop.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/License/UCL2_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/License/UCL2_0.zip -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Voice/univ0009.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Voice/univ0009.wav -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Voice/univ0015.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Voice/univ0015.wav -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Materials/CubeMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62db2d638434d5a488dfb1e789e34b37 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Materials/GazePointer.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fac3b9744290eb4c89b0e4ffd5fe085 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Materials/gaze_cursor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f31de375e167154aa45929466af30e4 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Prefabs/Cursor_Timer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a7682c244a150b49965c007720bdbb7 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Prefabs/OVRCameraRig.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 126d619cf4daa52469682f85c1378b4a 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0c7a593695f68e4bbe0cabb0f4f93f2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/GazeRing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/GazeRing.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/windowgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/windowgui.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Textures/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/SteamVR/Textures/background.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/unitychan.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/unitychan.fbx -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/gaze_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/gaze_cursor.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/quickstart.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7e681076fb2fad47bed246936de90bf 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a51c3dbd81ecb6741b7a2c5b06dbcb2e 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Documentation/logos/cloud.png -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | m_DefaultList: [] 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Materials/cursor_timer_material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9531aa878fd5c4749b288b72024e8d2f 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Prefabs/OVRPlayerController.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce816f2e6abb0504092c23ed9b970dfd 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scenes/Room.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54445976c1dbf1c49bb38ba7eba558e8 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scenes/UI.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f4d3ae64a10d434db219de8b14348e1 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/cube_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/cube_texture.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Scenes/example.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 274ae687a94e2444b85ce2bcf56c1df3 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Documentation/logos/favicon.ico -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Internal/Textures/Crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Internal/Textures/Crosshair.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/uWindowCapture/Models/uWC_Board.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/uWindowCapture/Models/uWC_Board.fbx -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/uWindowCapture/Models/uWC_Plane.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/uWindowCapture/Models/uWC_Plane.fbx -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/Icons/OculusIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/Icons/OculusIcon.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/Logos/OculusLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/Logos/OculusLogo.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/color_ramp_timer.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/color_ramp_timer.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-icons.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-icons.ico -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-main.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/gaze_cursor_timer.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/gaze_cursor_timer.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c33af0785775d7548b22541da37936fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1459d94e0a5b7af4a8a3fa067ae575e9 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Materials/workshop.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 712cd3a70a5a1da41a6594aac6a97abe 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e2543c4beea3eb4e9ea1e02a4bc2df2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Prefabs/[CameraRig].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d293c8e162f3874b982baadd71153d2 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Prefabs/[Status].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 255333d57084e4e46b3d948279746a47 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40af2f692be87864ba388a27fcac9ed8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c7547f24e8b4864d87d59903b1f8c40 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d88af1b1098a33a42bc43c910c864102 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abfc00e0350ad744083849e2d7ae06ee 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Internal/Textures/DirectionArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Internal/Textures/DirectionArrows.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Shaders/Unlit Crosshair.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05b53b473302943b58b8e33c93a38dac 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Textures/overlay.renderTexture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 005ed5a6df2f5ff468efd6497d37fefa 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Stage/Textures/unitychan_tile6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Stage/Textures/unitychan_tile6.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-logo-sheet.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-logo-sheet.ai -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/Logos/OculusLogoSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/Logos/OculusLogoSplash.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/SplashScreen/Logo/Dark_Silhouette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/SplashScreen/Logo/Dark_Silhouette.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Stage/Shader/Textures/AlphaMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Stage/Shader/Textures/AlphaMask.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Stage/Shader/Textures/Unity_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Stage/Shader/Textures/Unity_Icon.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-capsule-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-capsule-clear.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Editor/Icons/vrtk_script_prefab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Source/Editor/Icons/vrtk_script_prefab.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Editor/Icons/vrtk_script_usable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Source/Editor/Icons/vrtk_script_usable.png -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/ENV2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/ENV2.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/SplashScreen/Logo/Light_Silhouette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/SplashScreen/Logo/Light_Silhouette.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-capsule-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-capsule-filled.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-mark-64x64-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-mark-64x64-grey.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-mark-64x64-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-mark-64x64-pink.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Editor/Icons/vrtk_script_internal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Source/Editor/Icons/vrtk_script_internal.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Editor/Icons/vrtk_script_obsolete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Source/Editor/Icons/vrtk_script_obsolete.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/Win/OVRPlugin.dll.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/Win/OVRPlugin.dll.disabled -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/FO_RIM1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/FO_RIM1.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/body_01.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/body_01.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/face_00.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/face_00.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/guide.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/guide.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/hair_01.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/hair_01.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/skin_01.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/skin_01.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-mark-512x512-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-mark-512x512-black.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-mark-512x512-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-mark-512x512-grey.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-mark-512x512-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-mark-512x512-pink.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-mark-64x64-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-mark-64x64-black.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Meshes/GearVrController/GearVrController.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Meshes/GearVrController/GearVrController.fbx -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/Win64/OVRPlugin.dll.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/Win64/OVRPlugin.dll.disabled -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/FO_CLOTH1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/FO_CLOTH1.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/FO_SKIN1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/FO_SKIN1.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/cheek_00.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/cheek_00.tga -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3666a315e7aaca24aa5aa662896040aa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/Android/OVRPlugin.aar.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/Android/OVRPlugin.aar.disabled -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/FaceAnimation/ASHAMED.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3555863ff4ef948e298b8d11ea795ec4 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/Materials/Left.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00cf17fb11d4e76448c2096f7ee6aa4f 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/Materials/Right.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88157e674d7d0314db76940c73b69405 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/Materials/body.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb570020a8c3bad4bbf803af20e78937 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/Materials/eye_L1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4987862c1c195e74c86994ba4bcbd812 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/Materials/eye_R1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a87def7cf3654cc43add52e645fee2ce 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/Materials/face.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d83bd267b90e934e88637afcd02cb8a 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/Materials/hair.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ebb6caef8207d243a588a574971408c 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/Materials/skin1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca131910d5c9a634dbdd38e77111033f 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/body_01_NRM.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/body_01_NRM.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/body_01_SPEC.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/body_01_SPEC.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/eyeline_00.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/eyeline_00.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/hair_01_NRM.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/hair_01_NRM.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/hair_01_SPEC.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/hair_01_SPEC.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Prefabs/unitychan.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 412b92d4feeb9c548bfa98f62c4d1022 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51b1c675dea554145bd71c5e51833a50 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Scripts/OvrAvatarBase.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | using System.Collections.Generic; 4 | using System; 5 | 6 | public class OvrAvatarBase : MonoBehaviour 7 | { 8 | } -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Scripts/OvrAvatarHand.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | using System.Collections.Generic; 4 | using System; 5 | 6 | public class OvrAvatarHand : MonoBehaviour 7 | { 8 | } -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Meshes/OculusGoController/OculusGoController.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Meshes/OculusGoController/OculusGoController.fbx -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/Materials/eyebase.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bec51fc47eda6047ba5cc01addbf46f 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/Materials/eyeline.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 407f97b032a277c44b753ed1c256a3b8 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/Materials/mat_cheek.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f9d44654b83160428d7c4cf276b3572 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/DEFAULT_NORMAL.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/DEFAULT_NORMAL.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/eye_iris_L_00.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/eye_iris_L_00.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/eye_iris_R_00.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture/eye_iris_R_00.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/SplashScreen/SplashScreen_Dark.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c340d6b0ee7f347b98ecab4430cc5df6 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/SplashScreen/SplashScreen_Light.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ad4f8c442f444c5e966898c99704b0f 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Voice/unity-chan_voice_list.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9b76365a56ab41f4b65323ef05d3821 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/WindowsMR/Resources/WindowsMR_ControllerManager.cs: -------------------------------------------------------------------------------- 1 | namespace VRTK 2 | { 3 | using UnityEngine; 4 | 5 | public class WindowsMR_ControllerManager : MonoBehaviour 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/FaceAnimation/smile1@unitychan.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06b76ba9895174fc19d91c361e7c911b 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Shader/CharaMain.cg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3d0f1648f39e1a408ca5a56b25e96bf 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Shader/CharaSkin.cg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe01eae1ec1d1c24b99530833c8c8241 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/SplashScreen/Animations/FadeIn.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bd5bac4ccdae4f9c85135b8fd7da355 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/SplashScreen/Animations/FadeOut.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2945d5f95b61c458c9651895a514de58 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/SplashScreen/Animations/Voice.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62ab4018993ae47b9a2a4b0d86b52035 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Stage/Materials/unitychan_tile6.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 330274cf2c5de4464a4b4b243b59e371 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 726282b9462abba4b804ed92131ab4bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/ExampleResources/SharedResources/Models/rock.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Examples/ExampleResources/SharedResources/Models/rock.fbx -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/License/thestonefox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aed6907950fa4e346a9ec4338dc760de 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/AvatarHands/BasicHands/Models/VRTK_BasicHand.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Prefabs/AvatarHands/BasicHands/Models/VRTK_BasicHand.fbx -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Internal/Attributes/ObsoleteInspectorAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace VRTK 2 | { 3 | using UnityEngine; 4 | public class ObsoleteInspectorAttribute : PropertyAttribute 5 | { 6 | } 7 | } -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32643d93a725a014a8a6857bf58b01dc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/EditorXR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f225df49e0dfa1d4bac97cc2637fb1dd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/EditorXR/ConsoleCapture.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8ae3f6e4e9618949b9604fdcf55b958 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79c4dc8e83a8bca44a3a4eab8f9b9544 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/SocialStarter/Assets/Textures/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/SocialStarter/Assets/Textures/Help.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Scripts/OvrAvatarTouchController.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | using System.Collections.Generic; 4 | 5 | public class OvrAvatarTouchController : MonoBehaviour 6 | { 7 | } 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_ao_1024.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_ao_1024.tif -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_ao_128.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_ao_128.tif -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ca8260054a182c47948500471767882 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/License/ValveSoftware.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09be8869b12bea14ca91febd66eef4c2 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/FaceAnimation/eye_close@unitychan.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73cb3ae8fc1de47a0a307cb5f95ec701 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/License/UCL2_0.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff009ad1a32c5b747a2c3f1888d8277f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Materials/body.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b399c72488294c53b66f39632a8fe8b 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Materials/face.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb35fb92776d24a65827b1d3ab18fe60 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Materials/hair.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0686b679809f14929a8d7f427cbb4da3 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Materials/skin1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b91d906c72fd4447bfabbdd767e31ad 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Shader/CharaOutline.cg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98e9eccf54dd0e34c9cb77865555483f 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/ExampleResources/SharedResources/Models/arrow.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Examples/ExampleResources/SharedResources/Models/arrow.fbx -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Icon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0faba9c5ca81b7c40a05c0c0238d673d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Prefabs/BoxButton.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afdc2c07df495114fbc74517f49596c9 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Sample/Scenes/Empty.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e6b6b77b8eb88147917afa92d2872d5 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/SocialStarter/Assets/Textures/GearHelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/SocialStarter/Assets/Textures/GearHelp.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_color_1024.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_color_1024.tif -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_color_128.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_color_128.tif -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_normal_128.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_normal_128.tif -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/OculusGoController/OculusGoController_albedo.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/OculusGoController/OculusGoController_albedo.tga -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/License.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9ddf8f25aef166409146833289a59c9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Materials/eye_L1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0186681a218f4550a84e6f0488e8b61 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Materials/eye_R1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f37e71293707f43b9b83c1925ad01bd7 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Materials/eyebase.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7d8484a18b294b4ea192d6a82f2e0d5 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Materials/eyeline.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bac98231102243919a4534a06cc74ba 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Materials/mat_cheek.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4efe8cdcc7b554591bde513d7bde06d0 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/SplashScreen/Animators/SplashScreen.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a37f6aca9c6bf45fa819c001b4e8016e 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75024978b7d26f049a7d564126fe0beb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/License.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 916f2cec8dd160840a3d10ac055a786d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/inputsimulator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eee627de7fa0ea64d893e84d3297dfcb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Material.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c1f77acbee7d1e4e8f38147bddf2488 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5594a1d490044d748bf1928f79e2e9ff 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7eb55d4928f529448b0ff91bb224c78e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Sample.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd73148c97a53904583a4938f2849d08 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Sample/Scenes/SampleNode.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e650c7dd7b4d2ee4396098570c4cae76 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 989024af2232d5d43ad4c7340fb7b8c3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/MacOSX/OVRGamepad.bundle/Contents/MacOS/OVRGamepad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Plugins/MacOSX/OVRGamepad.bundle/Contents/MacOS/OVRGamepad -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_normal_1024.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_normal_1024.tif -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/README.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dec8f1a4cb9974c49bb72ac582a495cf 3 | timeCreated: 1465680938 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/inputsimulator/license/license.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4114ab14fcef2749be1636e39b37cbc 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Prefabs/NodeSelectAnimation.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0da63636a0790d848853dc1651475b4b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Prefabs/VRAnimationEditor.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a97d2c53d97134c4fb92ddaf703bbbc5 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Sample/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7198e01e7009f64bae0b7559eb643ca 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3e343b61d8d0934db21ccd556b6453d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OculusPlatform.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9763f2ef507d56640a88b528286ee72d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_roughness_1024.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_roughness_1024.tif -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_roughness_128.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController/GearVrController_roughness_128.tif -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/ExampleResources/SharedResources/Textures/AreaPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Examples/ExampleResources/SharedResources/Textures/AreaPattern.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ee07375fe5286c4fbaa99a1abbc1332 3 | timeCreated: 1504117555 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/inputsimulator/license.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e5fc9316463cb543b2883142ca9c9a3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/inputsimulator/sourceCode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a4f51583726c8846994aed460e864f0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/inputsimulator/sourceCode/inputsimulator/WindowsInput/WindowsInput.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/inputsimulator/sourceCode/inputsimulator/WindowsInput/WindowsInput.snk -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/uWindowCapture/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c8a9c079d084964dab2cef7c07f57ed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Sample/Animations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9b65e517e5729040b7d52bbbed7b252 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Sample/Timeline.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 109df2070e1a0944e89423fb1caa4621 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Scripts/WithFinalIK.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4b95d87c0536a94ea37dc2e588d5617 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OculusPlatform/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e835e7a55afbb254ea0c4b9b94c7cc73 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OculusPlatform/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c3c34bee8be3e24eae80f3e5456ced1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/OVRLayerAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | /// 4 | /// Dummy subtype of PropertyAttribute for custom inspector to use. 5 | /// 6 | public class OVRLayerAttribute : PropertyAttribute { 7 | } 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/FaceAnimation/face only mask.mask.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6893d99d338240cd834967aa6448379 3 | labels: 4 | - UnityChan 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/API.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a3f2c1461d52da41a7b315469edc74b 3 | timeCreated: 1504117555 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/FAQ.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 574062272bf8d434cbc91c7c968fa204 3 | timeCreated: 1504117555 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/ExampleResources/SharedResources/Textures/Default_Floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Examples/ExampleResources/SharedResources/Textures/Default_Floor.png -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Sample/Scenes/SampleUnityChan_FinalIK.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b53d2c785119b64fa5f49c76fd51a2b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/OvrAvatarSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9adb68d227f4d8409c89fa5b28649fe 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Editor/OVRBuild.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fef522d0247215a43be6b1a8819bd940 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scenes/Trivial.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8d21f2460d13554780e4af04a9e0d6e 3 | timeCreated: 1427350486 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/ExampleResources/SharedResources/Terrains/ExampleTerrain.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Examples/ExampleResources/SharedResources/Terrains/ExampleTerrain.asset -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Daydream/ABOUT.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5faa88df6d0254b47bb49a7f97163c62 3 | timeCreated: 1504117556 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Oculus/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a53b3dd9cced21468d494632ffd12c3 3 | timeCreated: 1504117555 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/SteamVR/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5881aeb864f37c648acd1e047814dfd2 3 | timeCreated: 1504117555 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Unity/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a64af6fa730c7a4a952705e0b43e7a9 3 | timeCreated: 1504117556 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/inputsimulator/sourceCode/inputsimulator/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9a3d68f401893645816b875f468220c 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Sample/Animations/HandPoses.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4fb5c402bc4a6b4a83c6eede52ba3ce 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Scripts/ScalingNode.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | //ノードの大きさを調整 6 | public class ScalingNode : MonoBehaviour { 7 | 8 | public float scale = 1f; 9 | } 10 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Scripts/WithFinalIK/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be4993d1b9add654aa5fb67aece90442 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OculusPlatform/Scripts/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcad841cf4027004ab26687f92f5e36d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/placeholder.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c111fff50cd6404baf2b833432e6ee8 3 | timeCreated: 1493325988 4 | licenseType: Free 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/OVRCameraRig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df9f338034892c44ebb62d97894772f1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/OVRCommon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 176f8d665b1d78048b1e87956698df6b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/OVRDisplay.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb365ebe8e821fc4e81e9dca9d704357 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/OVRManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e933e81d3c20c74ea6fdc708a67e3a5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -100 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/OVROverlay.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4444ce35d262aa648ad0c425a559b931 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/OVRPlugin.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61abd23f3aff5394ba8027ee380760b8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/OVRProfile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08539141953f28e439731aaf7cd5362f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/OVRTracker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cb3c9d4cb0970e448c655096649e814 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Extras/SteamVR_TestIK.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b6669fb4e4df9c48926f02b694be9d1 3 | timeCreated: 1437433018 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/GETTING_STARTED.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8346c1c7562115498d2335f2ee20c62 3 | timeCreated: 1504117555 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/MADE_WITH_VRTK.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8de5b5b24c765e54b9f840b172eab8a6 3 | timeCreated: 1504117555 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/favicon.ico.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5c7af5a7985b8942a51db0ac0f125ca 3 | timeCreated: 1476436833 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-main.svg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c336a0b8fc038904986436d8515c47a6 3 | timeCreated: 1483378013 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Daydream/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd7abdd9c5b30fb4b9fd333b1b9328ee 3 | timeCreated: 1504117556 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/HyperealVR/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2350948e06d25014f8d61eca3aa206ab 3 | timeCreated: 1504117555 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Simulator/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a46908a37af844468a49372632ec8ec 3 | timeCreated: 1504117556 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Ximmerse/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81507ce20eb1f7a4bbca358b25e45144 3 | timeCreated: 1504117556 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/inputsimulator/sourceCode/inputsimulator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16d464c23eceb0149b79deb4b9fea58a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Material/Floor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b948db8f98dc7f448273aca9130c85b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Material/gray.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44c3241a43e871c4b871522918112c85 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Sample/Scenes/SampleUnityChan_FinalIK_Timeline.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70a3d27803559484fbc14ad599ec1285 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/OVRPlatformMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2afcf575f4a68de4db434c7b7233c451 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRDebugInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b71d1996d67004241a3b69960856ffcb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRGridCube.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4988596c8a187f94f8e6a345ebb4254b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRModeParms.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a6ae8e8def81df429a8fdfc00f63e5c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRMonoscopic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06ef2a389c534554c848533f88dbb32c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRRaycaster.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7aaf960227867044282d921171d2d7ac 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRWaitCursor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d313011a8bc474fe49260bde01cffcd3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Extras/SteamVR_TestThrow.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d936163b5e9a5047b5e4ba5afaf5126 3 | timeCreated: 1437513966 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Prefabs/[SteamVR].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f35fa249b5008c44ac2998be6f82d4d 3 | timeCreated: 1429757514 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e22bb5b48ba97435ab1891ac2638c592 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Shader/Unitychan_chara_eye.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abaf2020b803b6847b5c081ed22c05c5 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Shader/Unitychan_chara_fuku.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00262b50562beb14cbab9b52bced4f9f 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Shader/Unitychan_chara_hada.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b35a2abbdd5b15d4ca40103088758eac 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Shader/Unitychan_chara_hair.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe3954a9664afb042a2af588b53680b0 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-icons.ico.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 878b9d320de9b324aabe8709ee4d061f 3 | timeCreated: 1476436833 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-logo-sheet.ai.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d83920e8775319f41b76609274c5797a 3 | timeCreated: 1476436833 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/ExampleResources/SceneResources/[006 - Locomotion] MovementTypes/Scripts/IgnoreTeleportDummy.cs: -------------------------------------------------------------------------------- 1 | namespace VRTK.Examples 2 | { 3 | using UnityEngine; 4 | 5 | public class IgnoreTeleportDummy : MonoBehaviour 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30e871b0e82f18848a8b26089801ebf2 3 | folderAsset: yes 4 | timeCreated: 1504183086 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/uWindowCapture/Materials/uWC_Icon.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9df9684506de35d489337088e8723ed2 3 | timeCreated: 1484987710 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Material/BoxButton.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbbcf58d99293c54eb9f631e939ee8c7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Material/FKNode.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28f3f23aeda5b1649a49daad498b9916 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Material/IKNode.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6740161bf37ef2643ad96ac7b7b70000 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Material/RootNode.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 167f405cc54548b44a754d606c91e80d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Prefabs/Node.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 577c0997293eb1a4c88f7a5ad5b3c1d6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4808572c3a25f0d4090c2ab5af88c08f 3 | folderAsset: yes 4 | timeCreated: 1466550217 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/OSXIntel/OVRPlugin.bundle.disabled/Contents/MacOS/OVRPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/OSXIntel/OVRPlugin.bundle.disabled/Contents/MacOS/OVRPlugin -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Prefabs/TrackedRemote.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9809c5e8418bb047bf2c8ba1d1a2cec 3 | timeCreated: 1486168892 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scenes/GearVrControllerTest.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d56af3aeb2176e7459f753c1c2e2dd97 3 | timeCreated: 1486173281 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/OVROnCompleteListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8730118d7f00f9b47b09be73f7e91d2b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRGazePointer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30530ad0e40d0a64ea26d753ee4996ea 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRInputModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f1a9a1d119a5944aacfb87d1ec283a2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRScreenFade.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df8e1d778abf442e4bec449c360e9e1c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -100 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d79c5fa4d57bda54f88884a89963d684 3 | folderAsset: yes 4 | timeCreated: 1466707365 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Extras.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61f4796ee4f00314e8d8b1ad39a78c28 3 | folderAsset: yes 4 | timeCreated: 1438797390 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Extras/SteamVR_TestTrackedCamera.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fb811b0ffe615b4dbf1d5e6ced385fd 3 | timeCreated: 1464227836 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2a747d8f314a8449a70c1fb1807f8dd 3 | folderAsset: yes 4 | timeCreated: 1462480362 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/License.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62b8adce63a5840869fa68d73c3e151a 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b77541e075d843968093fb7aaedd634 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Shader/Unitychan_chara_eye_blend.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf944057124b80b4e84496139e3b072c 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Shader/Unitychan_chara_fuku_ds.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96d05de60c5f7474491f9f94568cf623 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Shader/Unitychan_chara_hair_ds.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 235ca6f7bbc0ead4990f386a7ec24292 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c36616fae124a404d8327b27cdd4f8dd 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 394fc9bbe7f0a4dc3bd96547786d7f1d 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Stage.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5748270dde7fe4817b258c4c0470aed8 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Voice.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd59daf8827fd40d28fc8719cf5b20b6 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos/vrtk-logo-sheet.svg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32a28b2d748ebdd40847330e9bea5369 3 | timeCreated: 1483378013 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 011454ba33cefa24081e8696a94aa9c3 3 | folderAsset: yes 4 | timeCreated: 1504183086 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 721907082a166594bb4946c03c4e712f 3 | folderAsset: yes 4 | timeCreated: 1461528015 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/PanelMenu/PanelMenu.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3811576a34988d47b60f99463017a58 3 | timeCreated: 1472624814 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/RadialMenu/RadialMenu.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5fe2f7f9d3e98a478d151422643620c 3 | timeCreated: 1467174956 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8443fe4a35819164b9d5e066c9943aa9 3 | folderAsset: yes 4 | timeCreated: 1471636040 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/inputsimulator/sourceCode/inputsimulator/WindowsInput/WindowsInput.snk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fc9405dc4a6e464583862513b209e10 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/uWindowCapture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5a1d3e834485444fb0be9281037fe15 3 | folderAsset: yes 4 | timeCreated: 1480839364 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/uWindowCapture/Materials/uWC_Unlit.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ebb28175c99f574d895870a01e00d21 3 | timeCreated: 1483419084 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Material/HilightedNode.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2426664ab1694b47bb0f2fe3f051a58 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/GripPoses/GripPoses.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 697c6df5e1eddad40b634d311b0bb2e5 3 | timeCreated: 1477966491 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/SocialStarter/README.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3aab6eccade12a14688eb8378c4dcf6e 3 | timeCreated: 1520618796 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Editor/AndroidManifest.OVRSubmission.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a16cc136accf1f42bdc6f71f94b50ac 3 | timeCreated: 1475710636 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Editor/OVREngineConfigurationUpdater.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c86538ded11bfe24c8c79818bb9ea66a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1f06b56b3e7614419c5db24e2262938 3 | folderAsset: yes 4 | timeCreated: 1493321336 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/OSXIntel64/OVRPlugin.bundle.disabled/Contents/MacOS/OVRPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/OSXIntel64/OVRPlugin.bundle.disabled/Contents/MacOS/OVRPlugin -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/Win/OVRPlugin.dll.disabled.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bb9b341784351d48b625f219ad71862 3 | timeCreated: 1524070823 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/Win64/OVRPlugin.dll.disabled.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8499aed3cc351ca48922cc33d297078d 3 | timeCreated: 1524070824 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Prefabs/OVRCubemapCaptureProbe.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a400e96d4650ff4e827a7e727fad81d 3 | timeCreated: 1464847331 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 807714291dbf2a54c9b3975c271b2493 3 | folderAsset: yes 4 | timeCreated: 1466707364 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRChromaticAberration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b56515a831f2fb44bc7ae02679aeebc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRPhysicsRaycaster.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8e7ff1cdf4c4e74db00c3684108bc9a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRPlayerController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0950df82e7936c84983497630bde5b54 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRPointerEventData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 646c937ce12610744adc2b5e487f77ac 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRProgressIndicator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f14ece5575e2b1e4d80619901d65b428 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRResetOrientation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09bb0a17b6a704298b65be4fb08ef480 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Extras/SteamVR_TestTrackedCamera.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99ee8d48ccf36264e9d9a72baa681249 3 | timeCreated: 1465950289 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Shader/Unitychan_chara_akarami_blend.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0298b868476735f41857e9ba8f0d4cd1 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Shader/Unitychan_chara_eyelash_blend.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9627902a73805264c818754ecb22c8f9 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Shader/Unitychan_chara_hada_blend.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a95784c68f03494d8c7911e15fab82a 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/SplashScreen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8c132d65fec645bea7e69631da40d73 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Stage/Shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f719c1e72e651404aab90553454007d2 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ed3d8ce3f266a44c9e9d46238386a48 3 | folderAsset: yes 4 | timeCreated: 1504117555 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/[002 - Pointers] StraightPointer.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a21359c56ac86e84e8c97daea769afb1 3 | timeCreated: 1515518822 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/[003 - Pointers] BezierPointer.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b096ca0211dc5e741b5975310caead66 3 | timeCreated: 1515522290 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/[004 - Locomotion] Teleporting.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e8d0241c1297f3498e571ad36aa813f 3 | timeCreated: 1515573918 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/[006 - Locomotion] MovementTypes.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d6a417054df32d4a90351ce5c3fc638 3 | timeCreated: 1516971560 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Internal/Materials/Resources/UIText.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6feba24806ecd0e41b79c8531da69ae5 3 | timeCreated: 1467963930 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/DesktopCamera/DesktopCamera.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cff3fcd971e904049aab5e4ec16486cf 3 | timeCreated: 1498292593 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/ObjectTooltip/ObjectTooltip.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ab61c80dfd411f4c86b8553b0c42cf1 3 | timeCreated: 1467030310 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/SnapDropZone/SnapDropZone.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d323709f0cbd454196647d9d8f2dd84 3 | timeCreated: 1476808853 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f477774704c439042b9a6ab58b50a92a 3 | folderAsset: yes 4 | timeCreated: 1472237637 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Base.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3b17c57e3df8514da04920d6900c5aa 3 | folderAsset: yes 4 | timeCreated: 1479213332 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Oculus.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47e1ac1d6862c8d47b1752182cc89bf4 3 | folderAsset: yes 4 | timeCreated: 1482135835 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e055f18e994bdca4e9b39f7a7cb4e2ea 3 | folderAsset: yes 4 | timeCreated: 1499715282 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1931978e1716e50408b878e63b7302ed 3 | folderAsset: yes 4 | timeCreated: 1461529462 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 673b078117e2c634f8fab1e3d7b95a13 3 | folderAsset: yes 4 | timeCreated: 1479075815 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/inputsimulator/sourceCode/inputsimulator/WindowsInput.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e814c23004521bb4795f9ac3898d761a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/inputsimulator/sourceCode/inputsimulator/WindowsInput/WindowsInput.csproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8fea9e029a136947a135c7e4e3ae1cc 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/inputsimulator/sourceCode/inputsimulator/WindowsInput/WindowsInput.nuspec.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a13551da6be00884f98ca672932c90a3 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/uWindowCapture/Materials/uWC_Transparent.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a939a96427023b4ba408f4d29630749 3 | timeCreated: 1483419084 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/uWindowCapture/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7c79f0d5bbb1b745bedb5d746c861fc 3 | folderAsset: yes 4 | timeCreated: 1483419468 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Material/ControllerCursor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b51eeec96c1ced4ba6087df93a6db61 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Sample/Timeline/Sample.playable.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f85499a045dcb344c8f643473a684886 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Content.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7b5af4818686f84f844c1ae9df0f700 3 | folderAsset: yes 4 | timeCreated: 1466716731 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Content/Prefabs/LocalAvatar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84c8b8609f9bb434eaf5248f17ff1293 3 | timeCreated: 1466806466 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Content/Prefabs/RemoteAvatar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90bf33f968e6bb44ea0208fc82c90a44 3 | timeCreated: 1468001728 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f6a577c077cce945b722f02f34c29f3 3 | folderAsset: yes 4 | timeCreated: 1472072258 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b18c7ae976868a4499e2dbd7f60e92a4 3 | folderAsset: yes 4 | timeCreated: 1467313717 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/Controllers/Controllers.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a83dd010542d2744bf59af99b4bc47c 3 | timeCreated: 1468457372 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/LocalAvatar/LocalAvatar.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c65ef87480e70eb43931036c9c66d08d 3 | timeCreated: 1466730185 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1eb18b8db6c77f04c96874806a37143d 3 | folderAsset: yes 4 | timeCreated: 1466714102 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 813792d47c292ab4e9b6de4da9c965c5 3 | folderAsset: yes 4 | timeCreated: 1524070823 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/Android/OVRPlugin.aar.disabled.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 066d9474e6ffe26458589a851d305a36 3 | timeCreated: 1524070823 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/OSXUniversal/OVRPlugin.bundle.disabled/Contents/MacOS/OVRPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/OSXUniversal/OVRPlugin.bundle.disabled/Contents/MacOS/OVRPlugin -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/MacOSX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b0808cda9a8d4b458fad2788f63ff7f 3 | folderAsset: yes 4 | timeCreated: 1522878718 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e87d4bbdfc8d17445b4a41760b401026 3 | folderAsset: yes 4 | timeCreated: 1510282190 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Util/OVRSceneSampleController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f07515ada089df47868559a20dd6783 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Resources/SteamVR_ExternalCamera.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b259143c09ffc447ad059e5b8d8cf89 3 | timeCreated: 1456288801 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/FaceAnimation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16657e62a84c243128b02e614c3e11a2 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 711fff8ed805d4669bb1be75a0fed3d2 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/SplashScreen/Logo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07b382c722cee448a96ba2927eefacc3 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Stage/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cf9cebbc81b1463ab6d198506143d28 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Stage/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 799c1b191a32744fb8e2ff627de525e5 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Documentation/logos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 980503fc378903e4cb37c0fe242493d8 3 | folderAsset: yes 4 | timeCreated: 1476436832 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/[001 - Interactions] ControllerEvents.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ef04a272395bf04f8fdc6ec410f464e 3 | timeCreated: 1515490053 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Internal/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49b403f7a7ceb964b9f86043dbbfab78 3 | folderAsset: yes 4 | timeCreated: 1467963682 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Internal/Materials/Resources/OutlineBasic.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97c9345d2c577e543b55b547a33c4858 3 | timeCreated: 1474104585 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Internal/Materials/Resources/TooltipLine.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 167fe894cb53b584bbce353eb367fbda 3 | timeCreated: 1467963967 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Internal/Materials/Resources/WorldPointer.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dee83b4df08c2044dbb7465644a06cc2 3 | timeCreated: 1467963702 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Internal/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a97928edb1d75694b9ca4b49fc581cca 3 | folderAsset: yes 4 | timeCreated: 1496600519 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/AvatarHands.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 571fa58f2c8dfbb43811fdcc39324aa5 3 | folderAsset: yes 4 | timeCreated: 1499463395 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/AvatarHands/BasicHands/Models/Materials/Textures/VRTK_BasicHand_Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umiyuki/UnityVRAnimationEditor/HEAD/Assets/ThirdPartyAssets/VRTK/Prefabs/AvatarHands/BasicHands/Models/Materials/Textures/VRTK_BasicHand_Texture.png -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/DesktopCamera.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a998a9665186e8b4a9803fe9d6f56c7c 3 | folderAsset: yes 4 | timeCreated: 1507204232 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/DestinationPoint/DestinationPoint.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5174ba385e2fcac40a9009762418e317 3 | timeCreated: 1487417997 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/ObjectTooltip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5573a209dff1f5348989698da49d2692 3 | folderAsset: yes 4 | timeCreated: 1507204301 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/PanelMenu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e80ec3e745e2284eafb282fdb742a47 3 | folderAsset: yes 4 | timeCreated: 1507204333 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/RadialMenu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78806666886250a49bef0a48c597087a 3 | folderAsset: yes 4 | timeCreated: 1507204395 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/RadialMenu/RadialMenuButton/Arc.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b84885a25431a84595e546913f79de8 3 | timeCreated: 1467174956 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/RadialMenu/RadialMenuButton/RadialButtonIcon.cs: -------------------------------------------------------------------------------- 1 | namespace VRTK 2 | { 3 | using UnityEngine; 4 | 5 | public class RadialButtonIcon : MonoBehaviour 6 | { 7 | //Easier than getting tag, can't change through project settings 8 | } 9 | } -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/SnapDropZone.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 276291a69e5356e4fad75f8481171bb2 3 | folderAsset: yes 4 | timeCreated: 1507204461 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Editor/Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33bb2c4406ce7164182f5552f34afb33 3 | folderAsset: yes 4 | timeCreated: 1492434052 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Daydream.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87a96e1ddd8d9024a914df745d6c787d 3 | folderAsset: yes 4 | timeCreated: 1485188390 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Fallback.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68b578882e3ca9b4790553355f428075 3 | folderAsset: yes 4 | timeCreated: 1481530639 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/HyperealVR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 707a88cfd92c4364e9529484d7753077 3 | folderAsset: yes 4 | timeCreated: 1499419375 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Simulator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f331af1ee2962144fa52288c4c3c315d 3 | folderAsset: yes 4 | timeCreated: 1481726376 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/SteamVR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb69b78bdd2e3f747b435b98f5968942 3 | folderAsset: yes 4 | timeCreated: 1471637313 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Unity/[UnityBase_CameraRig].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e3616974e30ab643bbe690a06e53881 3 | timeCreated: 1499715055 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Ximmerse.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e0e4bcd6c9674f16b3ebdd9f0ef4bad 3 | folderAsset: yes 4 | timeCreated: 1485981925 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/inputsimulator/sourceCode/inputsimulator/WindowsInput/Native.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bffd810419331748a796f4f69e998df 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/uWindowCapture/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd4d6d92d1cb1834688b6cb463cc62fe 3 | folderAsset: yes 4 | timeCreated: 1483419091 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Sample/Animations/New Animation.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f64e2d9a068a0f744921e5313b843c65 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Sample/Animations/unitychan.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d55259a6ecfb37c4b9650f9443dd392d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OculusPlatform/Editor/OculusStandalonePlatformResponse.cs: -------------------------------------------------------------------------------- 1 | namespace Oculus.Platform 2 | { 3 | using System; 4 | 5 | [Serializable] 6 | public sealed class OculusStandalonePlatformResponse 7 | { 8 | public string access_token; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Content/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2c4ef7503877e647b22a4089384f04f 3 | folderAsset: yes 4 | timeCreated: 1466717433 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/RemoteLoopback/RemoteLoopback.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa35ff5ba76fb384d839383c84209da9 3 | timeCreated: 1468000130 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/SocialStarter/Assets/MainScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 236a5f96528802e47a70d6e47ebd3c16 3 | timeCreated: 1496779803 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcc7e11b8e740914c82060058de3332b 3 | folderAsset: yes 4 | timeCreated: 1524070823 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/Win.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee84a61fd5cfeef4ca032f996f022f1d 3 | folderAsset: yes 4 | timeCreated: 1524070823 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/Win64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce2bec1a20eb3364ea01df1217e2c884 3 | folderAsset: yes 4 | timeCreated: 1524070823 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/MacOSX/OVRGamepad.bundle/Contents/Info.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5de957de5187b406687f99aa5a30871b 3 | timeCreated: 1441327083 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Scripts/Composition.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f92828e69374384b8cb197653871a6e 3 | folderAsset: yes 4 | timeCreated: 1502989983 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37a9d016da7c84d7d8c3c90eb6399f0a 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/SplashScreen/Animators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac64b7c37e8944a1db284df03a7401b9 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/SplashScreen/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c7df6367c2bd4957b64453083168991 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Stage/Shader/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2531266aef8cc498a9fdde51223b0867 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/ExampleResources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9586daf42a4d8b44b9d318b4ce236b1 3 | folderAsset: yes 4 | timeCreated: 1489049093 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/[005 - Interactions] InteractableObjects.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bece393a6b2458142935d8d7562c52d7 3 | timeCreated: 1515616293 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/[007 - Interactions] InteractionHelpers.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea2236e506afcac41a7b82e176d839d1 3 | timeCreated: 1518000264 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/AvatarHands/BasicHands/VRTK_BasicHand.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afec65f27dcd2c74cba31fc61eea61e6 3 | timeCreated: 1499672914 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/ControllerTooltips.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84afe28aef27c0b4382a3532c6c7ad62 3 | folderAsset: yes 4 | timeCreated: 1507204213 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/ControllerTooltips/ControllerTooltips.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 910be6460ba00dc4bb13725c3ff972cb 3 | timeCreated: 1467033205 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/DestinationPoint.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d634ebdbba38e674bad55f4429bcfdba 3 | folderAsset: yes 4 | timeCreated: 1507204248 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/SDKSetupSwitcher.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7efdcfd81e439574fb985fd7fac2585a 3 | folderAsset: yes 4 | timeCreated: 1507204821 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/SDKSetupSwitcher/SDKSetupSwitcher.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d46cf6b1ad9d84a48ae7548a2a6b41b3 3 | timeCreated: 1490469362 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Editor/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afb2e9e7f408b84449c9294d13a5455d 3 | folderAsset: yes 4 | timeCreated: 1509657351 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Editor/DataTypes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b62cfebca826541408c8eb11f01dee69 3 | folderAsset: yes 4 | timeCreated: 1509460355 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Simulator/[VRSimulator_CameraRig].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be540b97364be0a4890e39e62ac89ed1 3 | timeCreated: 1481140605 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Controls.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f8c503decc5769449459102087e656b 3 | folderAsset: yes 4 | timeCreated: 1465310939 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Controls/3D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0b38df50d8e00b448d2fadae504959c 3 | folderAsset: yes 4 | timeCreated: 1467398113 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Interactions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92fcaac8f1b92414d81b170a7c44b4f4 3 | folderAsset: yes 4 | timeCreated: 1479075815 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f23cb195df832c042acd01c9dd23fff6 3 | folderAsset: yes 4 | timeCreated: 1479112105 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Locomotion.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac56912cd0026cf498fb5d6370a99fb0 3 | folderAsset: yes 4 | timeCreated: 1479075816 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Pointers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22ea32f2412f3be47b5782a054e79934 3 | folderAsset: yes 4 | timeCreated: 1479075815 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Presence.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49a5af56b600a464082be49ae5dade17 3 | folderAsset: yes 4 | timeCreated: 1479075815 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d7e4a26209cc5d42bab782a4b03540f 3 | folderAsset: yes 4 | timeCreated: 1479075815 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/inputsimulator/sourceCode/inputsimulator/WindowsInput/Properties.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7c663ee921807c4cb169d17e36a6c83 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Sample/Animations/HandPoses/default.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa440f67164ed1a41a53503b7167ecb2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Sample/Animations/HandPoses/openhand.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6134a2f6275d13549b579f5af0b44048 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Content/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03c5cda4272cb2746a668ce131f04c0f 3 | folderAsset: yes 4 | timeCreated: 1466717994 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/Controllers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2856d681f3672e641a2e57df9676108c 3 | folderAsset: yes 4 | timeCreated: 1468456735 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/GripPoses.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8c4b9475079cf040953bf344ff4e44f 3 | folderAsset: yes 4 | timeCreated: 1477955918 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/LocalAvatar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2883b756c033a864ca988b3f522f3339 3 | folderAsset: yes 4 | timeCreated: 1467313725 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Materials/GearVrController.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 856d6414a7cf7e94888ee2d5f959efd7 3 | folderAsset: yes 4 | timeCreated: 1488168366 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Meshes/GearVrController.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f5d118b13c965a40a0cd4e358205ac3 3 | folderAsset: yes 4 | timeCreated: 1486168258 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Meshes/OculusGoController.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f5a65d8d712ba9458f8b931e7db3113 3 | folderAsset: yes 4 | timeCreated: 1513040713 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/OSXIntel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a44b448286f8cbd4ebc9bcc44d78655b 3 | folderAsset: yes 4 | timeCreated: 1524070823 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/OSXIntel64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6ff238ad744aeb49809e58a8546338b 3 | folderAsset: yes 4 | timeCreated: 1524070823 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/OSXUniversal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c620cef76d0b68a488b4b225b41c92e9 3 | folderAsset: yes 4 | timeCreated: 1524070823 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/MacOSX/OVRGamepad.bundle/Contents/MacOS/OVRGamepad.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3af79ea9cc1984e498b6a7e5409cdcac 3 | timeCreated: 1441327083 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/GearVrController.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f0243e2a75c57c4dbd1b782c7557b50 3 | folderAsset: yes 4 | timeCreated: 1486168258 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Scripts/SteamVR.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fae0ddab09ac324c85494471274d6a4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/SplashScreen/Animations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d5699de723ca42539a5d71dc2dd9006 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Internal/Materials/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ae7bb6535f0db4459a34fef4b701d7d 3 | folderAsset: yes 4 | timeCreated: 1467963687 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Internal/Materials/Resources/SnapDropZoneEditorObject.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76008b803511a8e4c91d6f9bacc10161 3 | timeCreated: 1467963702 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/AvatarHands/BasicHands.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0fdd718f9440954c969d60af2fd58ea 3 | folderAsset: yes 4 | timeCreated: 1499463395 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/ConsoleViewerCanvas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4d0c96821e10854c8d0fe4def1c1a28 3 | folderAsset: yes 4 | timeCreated: 1507204172 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/ConsoleViewerCanvas/ConsoleViewerCanvas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b9dbb125b47726449ffe47a4110f342 3 | timeCreated: 1469911234 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/FramesPerSecondCanvas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b842bfc341ceeb4c9270c1f354490aa 3 | folderAsset: yes 4 | timeCreated: 1507204281 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Fallback/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f0f8bfc73f4f534f9331464d645a78c 3 | folderAsset: yes 4 | timeCreated: 1507209613 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/HyperealVR/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9aaa1c37974e4f044b48a813149fc6fa 3 | folderAsset: yes 4 | timeCreated: 1507209613 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Oculus/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 390f57c105d796a449c89bdf0dc48aa9 3 | folderAsset: yes 4 | timeCreated: 1507209613 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Simulator/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9def7e8a7ebdae1459ac2ca533d41723 3 | folderAsset: yes 4 | timeCreated: 1507209613 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/SteamVR/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95a8c12c32741a84c878fccea3cdad5b 3 | folderAsset: yes 4 | timeCreated: 1507209613 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Ximmerse/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f4e7a768080bdf4e83c829b9eafe73d 3 | folderAsset: yes 4 | timeCreated: 1507209613 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Internal/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8888fe9d9528bf443a7af10a0062e480 3 | folderAsset: yes 4 | timeCreated: 1462087292 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Scripts/NodeUIButton.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class NodeUIButton : MonoBehaviour 7 | { 8 | public Button button; 9 | public Text text; 10 | } 11 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/GripPoses/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85678699140c6c3429a87f4d679b1a17 3 | folderAsset: yes 4 | timeCreated: 1477957292 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/RemoteLoopback.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f26892c9951b6f54c82a5f1bf34e8d8a 3 | folderAsset: yes 4 | timeCreated: 1468000039 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/SocialStarter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a4d3ea1f23c09f4594a99508091bd1a 3 | folderAsset: yes 4 | timeCreated: 1520618017 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/SocialStarter/Assets/Materials/Help.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c18da23435024b43a2b78449cbb6ed0 3 | timeCreated: 1496780065 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Materials/GearVrController/GearVrControllerMat_1024.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a62abb16d1535b647956d3be68acdd59 3 | timeCreated: 1488144668 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Materials/GearVrController/GearVrControllerMat_128.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6ccc53b9bcfb114996e76ee88ce6948 3 | timeCreated: 1488144149 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Resources/OVRMRUnlit.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9aa46566e1d86644c9a55e3037e935f6 3 | timeCreated: 1504826310 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Textures/OculusGoController.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 829191324a3df8944b07ba1bd4c8f335 3 | folderAsset: yes 4 | timeCreated: 1513040773 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Editor/SteamVR_Editor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ba22c80948c94e44a82b9fd1b3abd0d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Scripts/SteamVR_Camera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bca9ccf900ccc84c887d783321d27e2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Scripts/SteamVR_Fade.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ad1e469d4e3e04489f9a36419f1a4f8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Scripts/SteamVR_GameView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be96d45fe21847a4a805d408a8015c84 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Scripts/SteamVR_Menu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7afc8c74d1f73b458705e0b946292a0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Scripts/SteamVR_Overlay.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46fe9e0b23166454c8cb73040321d78c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Scripts/SteamVR_Stats.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c3faa610c019764a81eb8497109e2d4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Scripts/SteamVR_Utils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be3c3a084f7b29b4880b42b4cfbf4d8f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d37ce0e735ec24e67a1d51ad25057fa2 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a848be5814ed24b00a2c07e55604d9f8 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/UnityChan/Models/UnityChanShader/Texture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d48b74ab15384cb4890c8670fa6b180 3 | folderAsset: yes 4 | timeCreated: 1487141854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/AvatarHands/BasicHands/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be4f830611d598041af0e9a004cda790 3 | folderAsset: yes 4 | timeCreated: 1499466316 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/ControllerRigidbodyActivator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e74e21ab30df7aa419c38ca3858ca6ba 3 | folderAsset: yes 4 | timeCreated: 1507204195 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/FramesPerSecondCanvas/FramesPerSecondCanvas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39aa6e3f7c442a04d997c9ed23f46981 3 | timeCreated: 1462698525 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/PointerDirectionIndicator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74141e64f9d8a27409d565a1d612318d 3 | folderAsset: yes 4 | timeCreated: 1507204361 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/RadialMenu/RadialMenuButton.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5ca9ac53232643f0943f955291dd452 3 | folderAsset: yes 4 | timeCreated: 1467297629 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/SteamVR/Resources/ControllerColliders/HTCVive.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b89a658aae549a4c914c4bd2b74e261 3 | timeCreated: 1470826208 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Controls/3D/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48a60e3607f3d744baabe21301c2c1a5 3 | folderAsset: yes 4 | timeCreated: 1470163538 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Internal/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76dc88186c148e247a89c6dd752756f0 3 | folderAsset: yes 4 | timeCreated: 1509657288 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Internal/DataTypes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d65edda77eec98749bc0dfab89923181 3 | folderAsset: yes 4 | timeCreated: 1509460073 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Utilities/UnityEvents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc66491294ded4eb49bc4e7882357d67 3 | folderAsset: yes 4 | timeCreated: 1472142091 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/RemoteLoopback/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edf34aa3892fd9f4eb0795663f7e3ffc 3 | folderAsset: yes 4 | timeCreated: 1468000607 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/SocialStarter/Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2946f922e51b0d347bf529b7a7e2667e 3 | folderAsset: yes 4 | timeCreated: 1520618026 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/SocialStarter/Assets/Materials/GearHelp.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09c03a3c5049d234590b91bbc6e84462 3 | timeCreated: 1497549036 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/SocialStarter/Assets/Materials/Offline_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 296de5be1228bf34380061dd6e6b0f49 3 | timeCreated: 1496780100 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/SocialStarter/Assets/Materials/Plane_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c466b89bb972b8a42bd266c102f8f2cb 3 | timeCreated: 1496780131 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Meshes/GearVrController/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f3bd5b7b89f2bc43b851174a56851f3 3 | folderAsset: yes 4 | timeCreated: 1488174699 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Meshes/OculusGoController/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8be9af30e3bae8c47a188358ead030df 3 | folderAsset: yes 4 | timeCreated: 1513040723 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Resources/Cubemap Blit.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 561ccac587275c745aec500620f12fc7 3 | timeCreated: 1507678760 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Resources/OVRMRCameraFrame.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bd7618c3fa0e4b4ab8e08dc3fadc376 3 | timeCreated: 1497574409 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Resources/OVRMRChromaKey.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 680577023e93e564c9b00f18b0164afa 3 | timeCreated: 1503944830 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Resources/OVRMRClipPlane.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ab721dccaa7e6f4693cedd904dfdcac 3 | timeCreated: 1494743027 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Resources/Texture2D Blit.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a31796e9e8816c7448b55d584c9417f1 3 | timeCreated: 1498190241 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Shaders/OVRColorRampAlpha.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b95caf64e2cc3614892026a94bb2be84 3 | timeCreated: 1433268462 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Resources/SteamVR_AlphaOut.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da25bb0dccfd3894181fc5e84714cd17 3 | timeCreated: 1456189850 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Resources/SteamVR_ClearAll.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1eded52540dd0a4988d5d4d76382da9 3 | timeCreated: 1457042024 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Resources/SteamVR_ColorOut.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04d03a6e2ff64bf47911d08912140c31 3 | timeCreated: 1456866489 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Resources/SteamVR_Fade.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f884441bea153347be721454dc13716 3 | timeCreated: 1433284862 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Scripts/SteamVR_CameraMask.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5828f252c3c228f4b931f66c21e525c4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Scripts/SteamVR_RenderModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5890e3cad70bea64d91aef9145ba3454 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/SteamVR/Scripts/SteamVR_TrackedObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d37c2cf88f7c59f4c8cf5d3812568143 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/ExampleResources/SceneResources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 467a57a45c4ed8545bdc289f4d7e495e 3 | folderAsset: yes 4 | timeCreated: 1515489220 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Examples/ExampleResources/SharedResources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f629430055980ca4e81797197d55e3ef 3 | folderAsset: yes 4 | timeCreated: 1515489220 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Internal/Materials/Resources/AdaptiveQualityDebugVisualization.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3ed0d666bfbfa54084235bdc1e0d063 3 | timeCreated: 1473404978 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/AvatarHands/BasicHands/Models/Avatar Masks/Hand_Idle.mask.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2690b183f5712934a8ff16755f830dfb 3 | timeCreated: 1499465875 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/AvatarHands/BasicHands/Models/Avatar Masks/Hand_Index.mask.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11f2f7641d50cd647935b6ba0f713926 3 | timeCreated: 1499465935 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/AvatarHands/BasicHands/Models/Avatar Masks/Hand_Middle.mask.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0eb75f9326455e048bdcf857c17a300e 3 | timeCreated: 1499466003 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/AvatarHands/BasicHands/Models/Avatar Masks/Hand_Pinky.mask.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5444e6d924e762d47b6d213a49014f9f 3 | timeCreated: 1499466162 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/AvatarHands/BasicHands/Models/Avatar Masks/Hand_Ring.mask.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b084a249eccde145bf5cf70e3ea2b6d 3 | timeCreated: 1499466111 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/AvatarHands/BasicHands/Models/Avatar Masks/Hand_Thumb.mask.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b939f2ef2ab501f4eacf96a42f6a9e81 3 | timeCreated: 1499466208 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/PointerDirectionIndicator/PointerDirectionIndicator.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fae4d3c6bce5d264f966e5a4fb54fa3a 3 | timeCreated: 1490221552 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Fallback/Resources/ControllerColliders/Fallback.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf7ef5e08b6a2124280479aee19a0279 3 | timeCreated: 1482136581 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Simulator/Resources/ControllerColliders/Simulator.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c95b46f278a24d43b58be4251c63385 3 | timeCreated: 1481292845 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/WindowsMR/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8327d5f9b74272c49b603d5d28ff1907 3 | timeCreated: 1520602532 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Interactions/Highlighters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9c140f4ddfd155469cc7dc18fc2ca22 3 | folderAsset: yes 4 | timeCreated: 1473937854 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Interactions/Interactables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d73d6e12066a3e14fb38f6d47cf67cc3 3 | folderAsset: yes 4 | timeCreated: 1507211045 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Interactions/Interactors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4e4e84e19d64714a85b6f31aa94e700 3 | folderAsset: yes 4 | timeCreated: 1507211012 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Pointers/PointerRenderers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b0285fedd4672140acb4d091e754f8e 3 | folderAsset: yes 4 | timeCreated: 1486941968 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Utilities/ObjectFollow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1b0e6e2a6639f64b92f23dce1cee7aa 3 | folderAsset: yes 4 | timeCreated: 1484498299 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Material/IgnoreZTest.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45d399b899b6223438bb2a0246ffd093 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityVRAnimationEditor/Material/NodeShader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6621569cb03543a448bff999c845ac85 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Meshes/GearVrController/Materials/malibuController_color_1024.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54fb84af388c3734b9a4cae0b38e2c68 3 | timeCreated: 1488174699 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/OSXIntel/OVRPlugin.bundle.disabled/Contents/Info.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6893d4e7ad9955440bb162effa610fdc 3 | timeCreated: 1524070824 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/OSXIntel64/OVRPlugin.bundle.disabled/Contents/Info.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2064b0f3511fff542a375adbaa570df5 3 | timeCreated: 1524070824 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/1.25.0/OSXUniversal/OVRPlugin.bundle.disabled/Contents/Info.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dc99845c0f9d994e8007d315ed78b50 3 | timeCreated: 1524070824 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Plugins/MacOSX/OVRGamepad.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 648a2605a2bc848728f27adc59fe8010 3 | folderAsset: yes 4 | timeCreated: 1441327083 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Resources/OVRMRCameraFrameLit.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8577c885e80d8043946ac5b7abcf9a1 3 | timeCreated: 1497574409 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Resources/OVRMRUnlitTransparent.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38ad33c152e32ee46a9bbbb0e656f7e1 3 | timeCreated: 1504826310 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/VR/Resources/Underlay Impostor.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eaeac9ce83896a04691d2590189776f5 3 | timeCreated: 1471282585 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/AvatarHands/BasicHands/Models/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4973a5b0f7a4c44fb616de01cca6afb 3 | folderAsset: yes 4 | timeCreated: 1499463401 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Prefabs/ControllerRigidbodyActivator/ControllerRigidbodyActivator.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33a096ef14a38e543af97bd67de0db31 3 | timeCreated: 1476601232 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Oculus/Resources/ControllerColliders/OculusTouch_Left.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90c2757cb006df643a6b9a3a2ab7653c 3 | timeCreated: 1483032461 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Oculus/Resources/ControllerColliders/OculusTouch_Right.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8feea14f1316dd142a5cff8549b7788f 3 | timeCreated: 1483027922 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/SDK/Ximmerse/Resources/ControllerColliders/XimmerseCobra02.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da1650c4e719b4d90b397b074fce43e2 3 | timeCreated: 1485995443 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/VRTK/Source/Scripts/Locomotion/ObjectControlActions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a999084ae9c6eec449e4451099362aea 3 | folderAsset: yes 4 | timeCreated: 1485940894 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/uWindowCapture/Shaders/UwcCommon.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b5a5aab74a9a12499c91f8b3c334e86 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/uWindowCapture/Shaders/UwcUnlit.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6661b5a6c9b5f6e45ae07f0fa22876e2 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/SocialStarter/Assets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 777b874d432a52044991fe1a0210200c 3 | folderAsset: yes 4 | timeCreated: 1496779985 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdPartyAssets/Oculus/OvrAvatar/Samples/SocialStarter/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f05e47c366870a44ab2b3b5a8a64e107 3 | folderAsset: yes 4 | timeCreated: 1496780004 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | --------------------------------------------------------------------------------