BDALoadedVesselSwitcher.LoadedVesselSwitcher.Update C# (CSharp) Method

Update() public method

public Update ( ) : void
return void
        void Update()
        {
            if(ready)
            {
                if(BDArmorySettings.Instance.showVSGUI != showGUI)
                {
                    showGUI = BDArmorySettings.Instance.showVSGUI;
                    if(showGUI)
                    {
                        UpdateList();
                    }
                }

                if(showGUI)
                {
                    Hotkeys();
                }
            }
        }