├── .gitignore ├── 3rdpartylicenses(ExternalReceiverPack).txt ├── EVMC4U ├── CameraReceiver.cs ├── CommunicationValidator.cs ├── DeviceReceiver.cs ├── DirectionalLightReceiver.cs ├── Editor │ ├── ExternalReceiverEditor.cs │ ├── Resources │ │ └── tutorial │ │ │ ├── caution_bg.png │ │ │ ├── define.txt │ │ │ ├── ignore.png │ │ │ ├── ok_button.png │ │ │ ├── start │ │ │ ├── start_bg.png │ │ │ ├── start_english.png │ │ │ └── start_japanese.png │ │ │ ├── start_en │ │ │ ├── discord.png │ │ │ ├── howtouse.png │ │ │ └── vmcprotocol.png │ │ │ ├── start_first │ │ │ ├── en.png │ │ │ └── ja.png │ │ │ └── start_ja │ │ │ ├── discord.png │ │ │ ├── howtouse.png │ │ │ └── vmcprotocol.png │ └── Tutorial.cs ├── ExternalController.cs ├── ExternalReceiver.cs ├── InputReceiver.cs ├── SampleScripts │ ├── CCCameraControl │ │ └── CCCameraControl.cs │ ├── CalibrationByController │ │ └── CalibrationByController.cs │ ├── CapsuleRigidbodyMover │ │ └── CapsuleRigidbodyMover.cs │ ├── DeviceAttacher │ │ └── DeviceAttacher.cs │ ├── FreezeSwitch │ │ └── FreezeSwitch.cs │ ├── HandCatch │ │ ├── HandCatch.cs │ │ ├── HandCatch_Helper.cs │ │ └── HandCatch_WeaponHelper.cs │ ├── ObjectSwitch │ │ └── ObjectSwitch.cs │ ├── TeleportKit │ │ └── TeleportManager.cs │ └── misc │ │ └── HiResolutionPhotoCamera.cs ├── Test │ ├── AddComponentTest.cs │ ├── DaisyChainTesting.cs │ └── InputTesting.cs └── class │ ├── EVMC4UeventClass.cs │ ├── EVMC4Ustructs.cs │ ├── ExternalReceiverManager.cs │ └── IExternalReceiver.cs ├── LICENSE ├── README.md ├── extra ├── DisableXRCamera.cs └── SendTest.cs └── これは開発中のソースコードです.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.meta 2 | -------------------------------------------------------------------------------- /3rdpartylicenses(ExternalReceiverPack).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/3rdpartylicenses(ExternalReceiverPack).txt -------------------------------------------------------------------------------- /EVMC4U/CameraReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/CameraReceiver.cs -------------------------------------------------------------------------------- /EVMC4U/CommunicationValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/CommunicationValidator.cs -------------------------------------------------------------------------------- /EVMC4U/DeviceReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/DeviceReceiver.cs -------------------------------------------------------------------------------- /EVMC4U/DirectionalLightReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/DirectionalLightReceiver.cs -------------------------------------------------------------------------------- /EVMC4U/Editor/ExternalReceiverEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/ExternalReceiverEditor.cs -------------------------------------------------------------------------------- /EVMC4U/Editor/Resources/tutorial/caution_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Resources/tutorial/caution_bg.png -------------------------------------------------------------------------------- /EVMC4U/Editor/Resources/tutorial/define.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Resources/tutorial/define.txt -------------------------------------------------------------------------------- /EVMC4U/Editor/Resources/tutorial/ignore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Resources/tutorial/ignore.png -------------------------------------------------------------------------------- /EVMC4U/Editor/Resources/tutorial/ok_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Resources/tutorial/ok_button.png -------------------------------------------------------------------------------- /EVMC4U/Editor/Resources/tutorial/start/start_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Resources/tutorial/start/start_bg.png -------------------------------------------------------------------------------- /EVMC4U/Editor/Resources/tutorial/start/start_english.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Resources/tutorial/start/start_english.png -------------------------------------------------------------------------------- /EVMC4U/Editor/Resources/tutorial/start/start_japanese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Resources/tutorial/start/start_japanese.png -------------------------------------------------------------------------------- /EVMC4U/Editor/Resources/tutorial/start_en/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Resources/tutorial/start_en/discord.png -------------------------------------------------------------------------------- /EVMC4U/Editor/Resources/tutorial/start_en/howtouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Resources/tutorial/start_en/howtouse.png -------------------------------------------------------------------------------- /EVMC4U/Editor/Resources/tutorial/start_en/vmcprotocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Resources/tutorial/start_en/vmcprotocol.png -------------------------------------------------------------------------------- /EVMC4U/Editor/Resources/tutorial/start_first/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Resources/tutorial/start_first/en.png -------------------------------------------------------------------------------- /EVMC4U/Editor/Resources/tutorial/start_first/ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Resources/tutorial/start_first/ja.png -------------------------------------------------------------------------------- /EVMC4U/Editor/Resources/tutorial/start_ja/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Resources/tutorial/start_ja/discord.png -------------------------------------------------------------------------------- /EVMC4U/Editor/Resources/tutorial/start_ja/howtouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Resources/tutorial/start_ja/howtouse.png -------------------------------------------------------------------------------- /EVMC4U/Editor/Resources/tutorial/start_ja/vmcprotocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Resources/tutorial/start_ja/vmcprotocol.png -------------------------------------------------------------------------------- /EVMC4U/Editor/Tutorial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Editor/Tutorial.cs -------------------------------------------------------------------------------- /EVMC4U/ExternalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/ExternalController.cs -------------------------------------------------------------------------------- /EVMC4U/ExternalReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/ExternalReceiver.cs -------------------------------------------------------------------------------- /EVMC4U/InputReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/InputReceiver.cs -------------------------------------------------------------------------------- /EVMC4U/SampleScripts/CCCameraControl/CCCameraControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/SampleScripts/CCCameraControl/CCCameraControl.cs -------------------------------------------------------------------------------- /EVMC4U/SampleScripts/CalibrationByController/CalibrationByController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/SampleScripts/CalibrationByController/CalibrationByController.cs -------------------------------------------------------------------------------- /EVMC4U/SampleScripts/CapsuleRigidbodyMover/CapsuleRigidbodyMover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/SampleScripts/CapsuleRigidbodyMover/CapsuleRigidbodyMover.cs -------------------------------------------------------------------------------- /EVMC4U/SampleScripts/DeviceAttacher/DeviceAttacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/SampleScripts/DeviceAttacher/DeviceAttacher.cs -------------------------------------------------------------------------------- /EVMC4U/SampleScripts/FreezeSwitch/FreezeSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/SampleScripts/FreezeSwitch/FreezeSwitch.cs -------------------------------------------------------------------------------- /EVMC4U/SampleScripts/HandCatch/HandCatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/SampleScripts/HandCatch/HandCatch.cs -------------------------------------------------------------------------------- /EVMC4U/SampleScripts/HandCatch/HandCatch_Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/SampleScripts/HandCatch/HandCatch_Helper.cs -------------------------------------------------------------------------------- /EVMC4U/SampleScripts/HandCatch/HandCatch_WeaponHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/SampleScripts/HandCatch/HandCatch_WeaponHelper.cs -------------------------------------------------------------------------------- /EVMC4U/SampleScripts/ObjectSwitch/ObjectSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/SampleScripts/ObjectSwitch/ObjectSwitch.cs -------------------------------------------------------------------------------- /EVMC4U/SampleScripts/TeleportKit/TeleportManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/SampleScripts/TeleportKit/TeleportManager.cs -------------------------------------------------------------------------------- /EVMC4U/SampleScripts/misc/HiResolutionPhotoCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/SampleScripts/misc/HiResolutionPhotoCamera.cs -------------------------------------------------------------------------------- /EVMC4U/Test/AddComponentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Test/AddComponentTest.cs -------------------------------------------------------------------------------- /EVMC4U/Test/DaisyChainTesting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Test/DaisyChainTesting.cs -------------------------------------------------------------------------------- /EVMC4U/Test/InputTesting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/Test/InputTesting.cs -------------------------------------------------------------------------------- /EVMC4U/class/EVMC4UeventClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/class/EVMC4UeventClass.cs -------------------------------------------------------------------------------- /EVMC4U/class/EVMC4Ustructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/class/EVMC4Ustructs.cs -------------------------------------------------------------------------------- /EVMC4U/class/ExternalReceiverManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/class/ExternalReceiverManager.cs -------------------------------------------------------------------------------- /EVMC4U/class/IExternalReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/EVMC4U/class/IExternalReceiver.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/README.md -------------------------------------------------------------------------------- /extra/DisableXRCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/extra/DisableXRCamera.cs -------------------------------------------------------------------------------- /extra/SendTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpsnmeajp/EasyVirtualMotionCaptureForUnity/HEAD/extra/SendTest.cs -------------------------------------------------------------------------------- /これは開発中のソースコードです.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------