Esempio n. 1
0
        private void buttonTrackLocation_Click(object sender, EventArgs e)
        {
            if (listBoxLocations.SelectedIndex < 0)
            {
                return;
            }

            if (LocatorForm == null)
            {
                LocatorForm = FormLocator.GetLocator();
            }
            LocatorForm?.SetTarget(_locations[listBoxLocations.SelectedIndex]);
        }
Esempio n. 2
0
 private void buttonLocator_Click(object sender, EventArgs e)
 {
     FormLocator.GetLocator(true);
 }
Esempio n. 3
0
 private void buttonResetPanel_Click(object sender, EventArgs e)
 {
     FormLocator.GetLocator().ResetVR();
 }