static void RegisterDescriptor()
 {
     XRGestureSubsystemDescriptor.RegisterDescriptor(
         new XRGestureSubsystemDescriptor.Cinfo
     {
         id = "Windows Mixed Reality Gesture",
         subsystemImplementationType = typeof(WindowsMRGestureSubsystem)
     }
         );
 }
Exemplo n.º 2
0
 static void RegisterDescriptor()
 {
     XRGestureSubsystemDescriptor.RegisterDescriptor(
         new XRGestureSubsystemDescriptor.Cinfo
     {
         id = "MagicLeap-Gesture",
         subsystemImplementationType = typeof(MagicLeapGestureSubsystem)
     }
         );
 }
        static void RegisterDescriptor()
        {
#if PLATFORM_LUMIN
            XRGestureSubsystemDescriptor.RegisterDescriptor(
                new XRGestureSubsystemDescriptor.Cinfo
            {
                id = "MagicLeap-Gesture",
                subsystemImplementationType = typeof(MagicLeapGestureSubsystem),
            }
                );
#endif
        }