static HumanoidConfiguration()
        {
            //Debug.Log("Initializing Humanoid Dlls");
#if hLEAP
            LeapDevice.LoadDlls();
#endif
#if hORBBEC
            AstraDevice.LoadDlls();
#endif
#if hNEURON
            NeuronDevice.LoadDlls();
#endif
        }
Beispiel #2
0
        public override void StartTracker(HumanoidControl _humanoid)
        {
            humanoid = _humanoid;

            if (!enabled)
            {
                return;
            }

            device = new AstraDevice();
            device.Init();

            astraTransform = device.GetTracker();

            AddTracker(humanoid, "Orbbec Astra");
        }