BDALoadedVesselSwitcher.LoadedVesselSwitcher.WaitForBDASettings C# (CSharp) Method

WaitForBDASettings() private method

private WaitForBDASettings ( ) : IEnumerator
return IEnumerator
        IEnumerator WaitForBDASettings()
        {
            while(BDArmorySettings.Instance == null)
            {
                yield return null;
            }

            ready = true;
            BDArmorySettings.Instance.hasVS = true;
            guiCheckIndex = Misc.RegisterGUIRect(new Rect());
        }