RemoteTech.UI.OptionWindow.drawStartContent C# (CSharp) Method

drawStartContent() private method

Draws the content of the Start section
private drawStartContent ( ) : void
return void
        private void drawStartContent()
        {
            GUILayout.Space(10);
            GUILayout.Label("Use the small menu buttons above to navigate through the different options.", this.mGuiRunningText);

            /* Commented out because there is an issue of conflicts between RT and CommNet (stock and RT modules in each antenna) and RT is moving into CommNet inevitably
            GUILayout.Space(10);
            GUILayout.BeginHorizontal();
            {
                GUILayout.Space(90);
                this.mSettings.RemoteTechEnabled = GUILayout.Toggle(this.mSettings.RemoteTechEnabled, (this.mSettings.RemoteTechEnabled) ? "RemoteTech enabled" : "RemoteTech disabled");
            }
            GUILayout.EndHorizontal();

            GUILayout.Space(5);
            GUILayout.BeginHorizontal();
            {
                GUILayout.Space(90);
                this.mSettings.CommNetEnabled = (HighLogic.fetch.currentGame.Parameters.Difficulty.EnableCommNet = GUILayout.Toggle(this.mSettings.CommNetEnabled, (this.mSettings.CommNetEnabled) ? "CommNet enabled" : "CommNet disabled"));
            }
            GUILayout.EndHorizontal();
            */

            GUILayout.Space(90);
            GUILayout.Label("Need some help with RemoteTech?  Check out the online manual and tutorials.  If you can't find your answer, post in the forum thread.\n(Browser opens on click)", this.mGuiRunningText);
            GUILayout.BeginHorizontal();
            {
                if(GUILayout.Button("Online Manual and Tutorials"))
                {
                    Application.OpenURL("http://remotetechnologiesgroup.github.io/RemoteTech/");
                }
                if(GUILayout.Button("KSP Forum"))
                {
                    Application.OpenURL("http://forum.kerbalspaceprogram.com/threads/83305");
                }
            }
            GUILayout.EndHorizontal();
        }