Esempio n. 1
0
        private void LaunchServer()
        {
            if (!DriverInstaller.InstallDriver())
            {
                return;
            }

            if (!SaveConfig())
            {
                return;
            }

            Process.Start("vrmonitor:");
        }
Esempio n. 2
0
        private void LaunchServer()
        {
            if (!DriverInstaller.InstallDriver())
            {
                CheckDriverInstallStatus();
                return;
            }
            CheckDriverInstallStatus();

            if (!SaveConfig())
            {
                return;
            }

            if (Properties.Settings.Default.onlySteamVR)
            {
                Utils.LaunchOnlySteamVR();
            }
            else
            {
                Utils.LaunchSteam();
            }
        }
Esempio n. 3
0
        private void installButton_Click(object sender, EventArgs e)
        {
            DriverInstaller.InstallDriver();

            CheckDriverInstallStatus();
        }