Chatterer.chatterer.OnGUIApplicationLauncherReady C# (CSharp) Method

OnGUIApplicationLauncherReady() private method

private OnGUIApplicationLauncherReady ( ) : void
return void
        private void OnGUIApplicationLauncherReady()
        {
            // Create the button in the KSP AppLauncher
            if (launcherButton == null && !useBlizzy78Toolbar)
            {
                launcherButtonTexture = chatterer_icon_on;

                launcherButton = ApplicationLauncher.Instance.AddModApplication(launcherButtonToggle, launcherButtonToggle,
                                                                            null, null,
                                                                            null, null,
                                                                            ApplicationLauncher.AppScenes.FLIGHT | ApplicationLauncher.AppScenes.MAPVIEW,
                                                                            launcherButtonTexture);
            }
        }
chatterer