DriverPracticeMode.UpdateWindows()

Here are the examples of the csharp api class DriverPracticeMode.UpdateWindows() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: synthesis
Source File: DriverPracticeMode.cs
private void Update()
    {
        if (mainState == null)
        {
            mainState = StateMachine.Instance.FindState<MainState>();
        }
        else if (dpmRobot == null)
        {
            dpmRobot = mainState.ActiveRobot.GetDriverPractice();
            FindElements();
        }
        else
        {
            UpdateDPMValues();
            UpdateVectorConfiguration();
            UpdateWindows();

            if (settingControl != 0) ListenControl();
        }
    }