├── .gitignore ├── Assets ├── AvatarsDemo │ ├── Materials │ │ └── FloorMaterial.mat │ ├── PointMan │ │ ├── ColorCube.fbm │ │ │ └── CubeMap.png │ │ ├── ColorCube.fbx │ │ ├── ColorMaterial.mat │ │ ├── CubeMap.png │ │ ├── Materials │ │ │ ├── CubeMap.mat │ │ │ ├── CubeMapCenter.mat │ │ │ ├── SkeletonLine.mat │ │ │ └── YellowCube.mat │ │ ├── PointMan.prefab │ │ ├── PointManController.cs │ │ ├── PointManYellow.prefab │ │ ├── SkeletonLine.prefab │ │ └── YellowCube.prefab │ └── Textures │ │ └── grid.png ├── Kinect2UnityExample.unity ├── KinectScripts │ ├── KinectManager.cs │ ├── KinectServer.cs │ └── KinectWrapper.cs └── Resources │ ├── GripCursor32.png │ ├── HandCursor32.png │ ├── Kinect2UnityClient.dll.bytes │ ├── Kinect2UnityServer.exe.bytes │ ├── ReleaseCursor32.png │ ├── msvcp110d.dll.i386.bytes │ ├── msvcp110d.dll.x64.bytes │ ├── msvcr110d.dll.i386.bytes │ └── msvcr110d.dll.x64.bytes ├── Library ├── .gitignore ├── AnnotationManager ├── AssetImportState ├── AssetServerCacheV3 ├── AssetVersioning.db ├── BuildPlayer.prefs ├── BuildSettings.asset ├── EditorUserBuildSettings.asset ├── EditorUserSettings.asset ├── FailedAssetImports.txt ├── InspectorExpandedItems.asset ├── MonoManager.asset ├── ProjectSettings.asset ├── ScriptMapper ├── assetDatabase3 ├── expandedItems ├── guidmapper └── metadata │ ├── 19 │ └── 191807f1008f6d747a7f05f6a28b1472 │ ├── 26 │ └── 26d013e3b64b1b049996b316995cf9d7 │ ├── 28 │ └── 28179444c3c7af744954d04207020229 │ ├── 36 │ └── 366e99b07d99f174087de49a4045a4d0 │ ├── 37 │ └── 372af108bb0e90245bebe24c4afa5fc8 │ ├── 39 │ └── 39cd60652f1f10944b3b1f8cafeb28ae │ ├── 40 │ └── 40f3aea2f9108b4498810fd583ac77ff │ ├── 46 │ └── 46dcfeef00f96a2438cdab823172efda │ ├── 47 │ └── 475d892be250472448901e2ac7e4f3da │ ├── 55 │ └── 55b9da46e4eef3f4cafab36e66796aeb │ ├── 56 │ └── 56c7813e5eff2d64894f4c5a209ab220 │ ├── 73 │ ├── 733fb2e84d195e1459a8a2bbc31707ae │ └── 73edc93f32ffcfa4ab8cc7f9e14500ba │ ├── 77 │ └── 77e94628ea257894eb0b75f7171d13ad │ ├── 85 │ └── 85ff23489b1399e468f2c6fafe1e63ac │ ├── 86 │ └── 86e10b2b763c9b04c8dd83e42a8f50fc │ ├── 90 │ └── 90fe4c2409694094faf2b29325e2d5bc │ ├── 96 │ └── 96fab79365c641c47b45548e8e42d086 │ ├── 00 │ ├── 00000000000000001000000000000000 │ ├── 00000000000000002000000000000000 │ ├── 00000000000000003000000000000000 │ ├── 00000000000000004000000000000000 │ ├── 00000000000000004100000000000000 │ ├── 00000000000000005000000000000000 │ ├── 00000000000000006000000000000000 │ ├── 00000000000000007000000000000000 │ ├── 00000000000000008000000000000000 │ ├── 00000000000000009000000000000000 │ ├── 0000000000000000a000000000000000 │ ├── 0000000000000000b000000000000000 │ └── 0000000000000000c000000000000000 │ ├── 2c │ └── 2c5097180052eba44b7944372ead4ccd │ ├── 2e │ └── 2e0ca68029ae7694dbe740d5e533c8d2 │ ├── 4d │ ├── 4d589fa57be210d48ad7046a1af0d672 │ └── 4d6bc47498368c141bc5aea37fd355f7 │ ├── 5a │ └── 5aa6f36584b40454d9d7f115bcfacad9 │ ├── 6b │ └── 6b531f336dfee5f438f94ed501caefc7 │ ├── 9a │ └── 9a219312cdda5ff4bb2b5510d90c3b0d │ ├── 9f │ └── 9f828727d4cfb7a4b8984b4e0310ae67 │ ├── b0 │ └── b02178bd62ae4f644bee73df22356c24 │ ├── bd │ └── bdd4729ec55a86a4dbf10a24293b9f23 │ ├── c1 │ └── c19ffeb0f090eac4bbcdf1ab23a9ff66 │ ├── c2 │ └── c25d226819a00a449bfa8b247eac07a7 │ ├── d1 │ └── d178c33d67caf1f48b73e155e2d5010b │ ├── de │ └── deab68507f779a144b807ddc9587f2fe │ ├── eb │ └── ebd602dc5968e0743b5c5fa9cd5268ee │ ├── ed │ └── ed1c50b3cebc9374f9da79ca55dd4e4b │ ├── f5 │ └── f578c9700f0b728429f030aa09476426 │ └── fe │ └── fe88cedb1a2428d44afa801a6b6b3d98 ├── ProjectSettings ├── AudioManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── InputManager.asset ├── NavMeshLayers.asset ├── NetworkManager.asset ├── ProjectSettings.asset ├── QualitySettings.asset ├── TagManager.asset └── TimeManager.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/AvatarsDemo/Materials/FloorMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/AvatarsDemo/Materials/FloorMaterial.mat -------------------------------------------------------------------------------- /Assets/AvatarsDemo/PointMan/ColorCube.fbm/CubeMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/AvatarsDemo/PointMan/ColorCube.fbm/CubeMap.png -------------------------------------------------------------------------------- /Assets/AvatarsDemo/PointMan/ColorCube.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/AvatarsDemo/PointMan/ColorCube.fbx -------------------------------------------------------------------------------- /Assets/AvatarsDemo/PointMan/ColorMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/AvatarsDemo/PointMan/ColorMaterial.mat -------------------------------------------------------------------------------- /Assets/AvatarsDemo/PointMan/CubeMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/AvatarsDemo/PointMan/CubeMap.png -------------------------------------------------------------------------------- /Assets/AvatarsDemo/PointMan/Materials/CubeMap.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/AvatarsDemo/PointMan/Materials/CubeMap.mat -------------------------------------------------------------------------------- /Assets/AvatarsDemo/PointMan/Materials/CubeMapCenter.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/AvatarsDemo/PointMan/Materials/CubeMapCenter.mat -------------------------------------------------------------------------------- /Assets/AvatarsDemo/PointMan/Materials/SkeletonLine.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/AvatarsDemo/PointMan/Materials/SkeletonLine.mat -------------------------------------------------------------------------------- /Assets/AvatarsDemo/PointMan/Materials/YellowCube.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/AvatarsDemo/PointMan/Materials/YellowCube.mat -------------------------------------------------------------------------------- /Assets/AvatarsDemo/PointMan/PointMan.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/AvatarsDemo/PointMan/PointMan.prefab -------------------------------------------------------------------------------- /Assets/AvatarsDemo/PointMan/PointManController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/AvatarsDemo/PointMan/PointManController.cs -------------------------------------------------------------------------------- /Assets/AvatarsDemo/PointMan/PointManYellow.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/AvatarsDemo/PointMan/PointManYellow.prefab -------------------------------------------------------------------------------- /Assets/AvatarsDemo/PointMan/SkeletonLine.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/AvatarsDemo/PointMan/SkeletonLine.prefab -------------------------------------------------------------------------------- /Assets/AvatarsDemo/PointMan/YellowCube.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/AvatarsDemo/PointMan/YellowCube.prefab -------------------------------------------------------------------------------- /Assets/AvatarsDemo/Textures/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/AvatarsDemo/Textures/grid.png -------------------------------------------------------------------------------- /Assets/Kinect2UnityExample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/Kinect2UnityExample.unity -------------------------------------------------------------------------------- /Assets/KinectScripts/KinectManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/KinectScripts/KinectManager.cs -------------------------------------------------------------------------------- /Assets/KinectScripts/KinectServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/KinectScripts/KinectServer.cs -------------------------------------------------------------------------------- /Assets/KinectScripts/KinectWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/KinectScripts/KinectWrapper.cs -------------------------------------------------------------------------------- /Assets/Resources/GripCursor32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/Resources/GripCursor32.png -------------------------------------------------------------------------------- /Assets/Resources/HandCursor32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/Resources/HandCursor32.png -------------------------------------------------------------------------------- /Assets/Resources/Kinect2UnityClient.dll.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/Resources/Kinect2UnityClient.dll.bytes -------------------------------------------------------------------------------- /Assets/Resources/Kinect2UnityServer.exe.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/Resources/Kinect2UnityServer.exe.bytes -------------------------------------------------------------------------------- /Assets/Resources/ReleaseCursor32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/Resources/ReleaseCursor32.png -------------------------------------------------------------------------------- /Assets/Resources/msvcp110d.dll.i386.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/Resources/msvcp110d.dll.i386.bytes -------------------------------------------------------------------------------- /Assets/Resources/msvcp110d.dll.x64.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/Resources/msvcp110d.dll.x64.bytes -------------------------------------------------------------------------------- /Assets/Resources/msvcr110d.dll.i386.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/Resources/msvcr110d.dll.i386.bytes -------------------------------------------------------------------------------- /Assets/Resources/msvcr110d.dll.x64.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Assets/Resources/msvcr110d.dll.x64.bytes -------------------------------------------------------------------------------- /Library/.gitignore: -------------------------------------------------------------------------------- 1 | /ScriptAssemblies/ 2 | -------------------------------------------------------------------------------- /Library/AnnotationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/AnnotationManager -------------------------------------------------------------------------------- /Library/AssetImportState: -------------------------------------------------------------------------------- 1 | 5;0;-1 -------------------------------------------------------------------------------- /Library/AssetServerCacheV3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/AssetServerCacheV3 -------------------------------------------------------------------------------- /Library/AssetVersioning.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/AssetVersioning.db -------------------------------------------------------------------------------- /Library/BuildPlayer.prefs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/BuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/BuildSettings.asset -------------------------------------------------------------------------------- /Library/EditorUserBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/EditorUserBuildSettings.asset -------------------------------------------------------------------------------- /Library/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/EditorUserSettings.asset -------------------------------------------------------------------------------- /Library/FailedAssetImports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/InspectorExpandedItems.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/InspectorExpandedItems.asset -------------------------------------------------------------------------------- /Library/MonoManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/MonoManager.asset -------------------------------------------------------------------------------- /Library/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/ProjectSettings.asset -------------------------------------------------------------------------------- /Library/ScriptMapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/ScriptMapper -------------------------------------------------------------------------------- /Library/assetDatabase3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/assetDatabase3 -------------------------------------------------------------------------------- /Library/expandedItems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/expandedItems -------------------------------------------------------------------------------- /Library/guidmapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/guidmapper -------------------------------------------------------------------------------- /Library/metadata/00/00000000000000001000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/00/00000000000000001000000000000000 -------------------------------------------------------------------------------- /Library/metadata/00/00000000000000002000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/00/00000000000000002000000000000000 -------------------------------------------------------------------------------- /Library/metadata/00/00000000000000003000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/00/00000000000000003000000000000000 -------------------------------------------------------------------------------- /Library/metadata/00/00000000000000004000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/00/00000000000000004000000000000000 -------------------------------------------------------------------------------- /Library/metadata/00/00000000000000004100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/00/00000000000000004100000000000000 -------------------------------------------------------------------------------- /Library/metadata/00/00000000000000005000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/00/00000000000000005000000000000000 -------------------------------------------------------------------------------- /Library/metadata/00/00000000000000006000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/00/00000000000000006000000000000000 -------------------------------------------------------------------------------- /Library/metadata/00/00000000000000007000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/00/00000000000000007000000000000000 -------------------------------------------------------------------------------- /Library/metadata/00/00000000000000008000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/00/00000000000000008000000000000000 -------------------------------------------------------------------------------- /Library/metadata/00/00000000000000009000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/00/00000000000000009000000000000000 -------------------------------------------------------------------------------- /Library/metadata/00/0000000000000000a000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/00/0000000000000000a000000000000000 -------------------------------------------------------------------------------- /Library/metadata/00/0000000000000000b000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/00/0000000000000000b000000000000000 -------------------------------------------------------------------------------- /Library/metadata/00/0000000000000000c000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/00/0000000000000000c000000000000000 -------------------------------------------------------------------------------- /Library/metadata/19/191807f1008f6d747a7f05f6a28b1472: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/19/191807f1008f6d747a7f05f6a28b1472 -------------------------------------------------------------------------------- /Library/metadata/26/26d013e3b64b1b049996b316995cf9d7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/26/26d013e3b64b1b049996b316995cf9d7 -------------------------------------------------------------------------------- /Library/metadata/28/28179444c3c7af744954d04207020229: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/28/28179444c3c7af744954d04207020229 -------------------------------------------------------------------------------- /Library/metadata/2c/2c5097180052eba44b7944372ead4ccd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/2c/2c5097180052eba44b7944372ead4ccd -------------------------------------------------------------------------------- /Library/metadata/2e/2e0ca68029ae7694dbe740d5e533c8d2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/2e/2e0ca68029ae7694dbe740d5e533c8d2 -------------------------------------------------------------------------------- /Library/metadata/36/366e99b07d99f174087de49a4045a4d0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/36/366e99b07d99f174087de49a4045a4d0 -------------------------------------------------------------------------------- /Library/metadata/37/372af108bb0e90245bebe24c4afa5fc8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/37/372af108bb0e90245bebe24c4afa5fc8 -------------------------------------------------------------------------------- /Library/metadata/39/39cd60652f1f10944b3b1f8cafeb28ae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/39/39cd60652f1f10944b3b1f8cafeb28ae -------------------------------------------------------------------------------- /Library/metadata/40/40f3aea2f9108b4498810fd583ac77ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/40/40f3aea2f9108b4498810fd583ac77ff -------------------------------------------------------------------------------- /Library/metadata/46/46dcfeef00f96a2438cdab823172efda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/46/46dcfeef00f96a2438cdab823172efda -------------------------------------------------------------------------------- /Library/metadata/47/475d892be250472448901e2ac7e4f3da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/47/475d892be250472448901e2ac7e4f3da -------------------------------------------------------------------------------- /Library/metadata/4d/4d589fa57be210d48ad7046a1af0d672: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/4d/4d589fa57be210d48ad7046a1af0d672 -------------------------------------------------------------------------------- /Library/metadata/4d/4d6bc47498368c141bc5aea37fd355f7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/4d/4d6bc47498368c141bc5aea37fd355f7 -------------------------------------------------------------------------------- /Library/metadata/55/55b9da46e4eef3f4cafab36e66796aeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/55/55b9da46e4eef3f4cafab36e66796aeb -------------------------------------------------------------------------------- /Library/metadata/56/56c7813e5eff2d64894f4c5a209ab220: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/56/56c7813e5eff2d64894f4c5a209ab220 -------------------------------------------------------------------------------- /Library/metadata/5a/5aa6f36584b40454d9d7f115bcfacad9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/5a/5aa6f36584b40454d9d7f115bcfacad9 -------------------------------------------------------------------------------- /Library/metadata/6b/6b531f336dfee5f438f94ed501caefc7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/6b/6b531f336dfee5f438f94ed501caefc7 -------------------------------------------------------------------------------- /Library/metadata/73/733fb2e84d195e1459a8a2bbc31707ae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/73/733fb2e84d195e1459a8a2bbc31707ae -------------------------------------------------------------------------------- /Library/metadata/73/73edc93f32ffcfa4ab8cc7f9e14500ba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/73/73edc93f32ffcfa4ab8cc7f9e14500ba -------------------------------------------------------------------------------- /Library/metadata/77/77e94628ea257894eb0b75f7171d13ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/77/77e94628ea257894eb0b75f7171d13ad -------------------------------------------------------------------------------- /Library/metadata/85/85ff23489b1399e468f2c6fafe1e63ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/85/85ff23489b1399e468f2c6fafe1e63ac -------------------------------------------------------------------------------- /Library/metadata/86/86e10b2b763c9b04c8dd83e42a8f50fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/86/86e10b2b763c9b04c8dd83e42a8f50fc -------------------------------------------------------------------------------- /Library/metadata/90/90fe4c2409694094faf2b29325e2d5bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/90/90fe4c2409694094faf2b29325e2d5bc -------------------------------------------------------------------------------- /Library/metadata/96/96fab79365c641c47b45548e8e42d086: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/96/96fab79365c641c47b45548e8e42d086 -------------------------------------------------------------------------------- /Library/metadata/9a/9a219312cdda5ff4bb2b5510d90c3b0d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/9a/9a219312cdda5ff4bb2b5510d90c3b0d -------------------------------------------------------------------------------- /Library/metadata/9f/9f828727d4cfb7a4b8984b4e0310ae67: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/9f/9f828727d4cfb7a4b8984b4e0310ae67 -------------------------------------------------------------------------------- /Library/metadata/b0/b02178bd62ae4f644bee73df22356c24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/b0/b02178bd62ae4f644bee73df22356c24 -------------------------------------------------------------------------------- /Library/metadata/bd/bdd4729ec55a86a4dbf10a24293b9f23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/bd/bdd4729ec55a86a4dbf10a24293b9f23 -------------------------------------------------------------------------------- /Library/metadata/c1/c19ffeb0f090eac4bbcdf1ab23a9ff66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/c1/c19ffeb0f090eac4bbcdf1ab23a9ff66 -------------------------------------------------------------------------------- /Library/metadata/c2/c25d226819a00a449bfa8b247eac07a7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/c2/c25d226819a00a449bfa8b247eac07a7 -------------------------------------------------------------------------------- /Library/metadata/d1/d178c33d67caf1f48b73e155e2d5010b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/d1/d178c33d67caf1f48b73e155e2d5010b -------------------------------------------------------------------------------- /Library/metadata/de/deab68507f779a144b807ddc9587f2fe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/de/deab68507f779a144b807ddc9587f2fe -------------------------------------------------------------------------------- /Library/metadata/eb/ebd602dc5968e0743b5c5fa9cd5268ee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/eb/ebd602dc5968e0743b5c5fa9cd5268ee -------------------------------------------------------------------------------- /Library/metadata/ed/ed1c50b3cebc9374f9da79ca55dd4e4b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/ed/ed1c50b3cebc9374f9da79ca55dd4e4b -------------------------------------------------------------------------------- /Library/metadata/f5/f578c9700f0b728429f030aa09476426: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/f5/f578c9700f0b728429f030aa09476426 -------------------------------------------------------------------------------- /Library/metadata/fe/fe88cedb1a2428d44afa801a6b6b3d98: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/Library/metadata/fe/fe88cedb1a2428d44afa801a6b6b3d98 -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfilkov/kinect2-unity-example-with-ms-sdk/HEAD/README.md --------------------------------------------------------------------------------