|
14 | 14 | // To learn more about WinUI, the WinUI project structure, |
15 | 15 | // and more about our project templates, see: http://aka.ms/winui-project-info. |
16 | 16 |
|
17 | | -namespace plugin_KinectV2; |
| 17 | +namespace plugin_KinectOne; |
18 | 18 |
|
19 | 19 | [Export(typeof(ITrackingDevice))] |
20 | 20 | [ExportMetadata("Name", "Xbox One Kinect")] |
21 | 21 | [ExportMetadata("Guid", "K2VRTEAM-AME2-APII-DVCE-DVCEKINECTV2")] |
22 | 22 | [ExportMetadata("Publisher", "K2VR Team")] |
23 | 23 | [ExportMetadata("Version", "1.0.0.0")] |
24 | | -[ExportMetadata("Website", "https://github.com/KinectToVR/plugin_KinectV2")] |
25 | | -public class KinectV2 : ITrackingDevice |
| 24 | +[ExportMetadata("Website", "https://github.com/KinectToVR/plugin_KinectOne")] |
| 25 | +public class KinectOne : ITrackingDevice |
26 | 26 | { |
27 | 27 | private static readonly SortedDictionary<TrackedJointType, JointType> KinectJointTypeDictionary = new() |
28 | 28 | { |
@@ -82,8 +82,8 @@ public class KinectV2 : ITrackingDevice |
82 | 82 | public string DeviceStatusString => PluginLoaded |
83 | 83 | ? DeviceStatus switch |
84 | 84 | { |
85 | | - 0 => Host.RequestLocalizedString("/Plugins/KinectV2/Statuses/Success"), |
86 | | - 1 => Host.RequestLocalizedString("/Plugins/KinectV2/Statuses/NotAvailable"), |
| 85 | + 0 => Host.RequestLocalizedString("/Plugins/KinectOne/Statuses/Success"), |
| 86 | + 1 => Host.RequestLocalizedString("/Plugins/KinectOne/Statuses/NotAvailable"), |
87 | 87 | _ => $"Undefined: {DeviceStatus}\nE_UNDEFINED\nSomething weird has happened, though we can't tell what." |
88 | 88 | } |
89 | 89 | : $"Undefined: {DeviceStatus}\nE_UNDEFINED\nSomething weird has happened, though we can't tell what."; |
|
0 commit comments