private void Awake()
        {
            FingerTransforms = new List <Transform>();

            CurrentState = new ObservableValue <HololensAppState.State>();
            CurrentState.Set(HololensAppState.State.Start, false);
        }
Esempio n. 2
0
        private void Awake()
        {
            LeftHandData  = new HandData();
            RightHandData = new HandData();

            IsLeftHand         = new ObservableValue <bool>(true);
            ForceTrackMVCRatio = 1.0;

            Mode = AppMode.Dynamic;

            StaticPhaseDuration     = 5.0f;
            IncreasingPhaseDuration = 5.0f;
            PlateauPhaseDuration    = 5.0f;
            DecreasingPhaseDuration = 5.0f;
            StaticEndPhaseDuration  = 5.0f;

            HololensIP = "";
        }