コード例 #1
0
        void Awake()
        {
            if (Instance == null)
            {
                Instance = this;
            }
            else if (Instance != this)
            {
                Debug.LogError("There should only be one NSManager! Make sure there is only one NSManager prefab in the scene\n" +
                               "If there is no NSManager, one will be created for you!");
            }

            _imuCalibrator = new CalibratorWrapper(new MockImuCalibrator());

            //The plugin needs to load resources from your app's Streaming Assets folder
            _plugin = new NSVR.NSVR_Plugin();

            _trackingUpdateLoop = UpdateTracking();
            _suitStatusLoop     = CheckSuitConnection();

            DoDelayedAction(1.0f, delegate()
            {
                _suitStatus = ChangeSuitStatus(_plugin.PollStatus());
                StartCoroutine(_suitStatusLoop);
            });
        }
コード例 #2
0
        void Awake()
        {
            if (Instance == null)
            {
                Instance = this;
            }
            else if (Instance != this)
            {
                Debug.LogError("There should only be one NSManager! Make sure there is only one NSManager prefab in the scene\n" +
                               "If there is no NSManager, one will be created for you!");
            }

            _imuCalibrator = new CalibratorWrapper(new MockImuCalibrator());

            //The plugin needs to load resources from your app's Streaming Assets folder
            _plugin = new NSVR.NSVR_Plugin();
        }
コード例 #3
0
        void Awake()
        {
            if (Instance == null)
            {
                Instance = this;
            }
            else if (Instance != this)
            {
                Debug.LogError("There should only be one NSManager! Make sure there is only one NSManager prefab in the scene\n" +
                               "If there is no NSManager, one will be created for you!");
            }

            _trackingUpdateLoop          = UpdateTracking();
            _ServiceConnectionStatusLoop = CheckServiceConnection();

            _imuCalibrator = new CalibratorWrapper(new MockImuCalibrator());

            InitPlugin();
        }
コード例 #4
0
        void Awake()
        {
            if (Instance == null)
            {
                Instance = this;
            }
            else if (Instance != this)
            {
                Debug.LogError("There should only be one NSManager! Make sure there is only one NSManager prefab in the scene\n" +
                               "If there is no NSManager, one will be created for you!");
            }

            _imuCalibrator = new CalibratorWrapper(new MockImuCalibrator());

            //The plugin needs to load resources from your app's Streaming Assets folder
            _plugin = new NSVR.NSVR_Plugin(Application.streamingAssetsPath + "/Haptics");

            _trackingUpdateLoop = UpdateTracking();
            _suitStatus         = SuitStatus.Disconnected;
        }