MainController.AboutWindow C# (CSharp) Method

AboutWindow() private method

private AboutWindow ( int id ) : void
id int
return void
    private void AboutWindow(int id)
    {
        GUIStyle style = new GUIStyle();
        style.wordWrap = false;
        style.stretchWidth = false;
        style.stretchHeight = false;
        style.alignment = TextAnchor.UpperLeft;
        string message;
        GUI.contentColor = Color.white;

        GUILayout.BeginVertical(style);
        style.normal.textColor = Color.white;
        GUILayout.Label("PSUnity", style);
        GUILayout.Label("Copyright (c) 2015 Micky Balladelli", style);
        GUILayout.Label("https://balladelli.com", style);
        message = "Made with Unity and powered by PowerShell.";
        GUILayout.Label(message, style);
        message = "";
        GUILayout.Label(message, style);
        GUILayout.Label("Standard MIT OpenSource License applies (http://opensource.org/licenses/MIT)", style);
        message = "";
        GUILayout.Label(message, style);

        message = "Permission is hereby granted, free of charge, to any person obtaining a copy";
        GUILayout.Label(message, style);
        message = "of this software and associated documentation files(the \"Software\"), to deal";
        GUILayout.Label(message, style);
        message = "in the Software without restriction, including without limitation the rights";
        GUILayout.Label(message, style);
        message = "to use, copy, modify, merge, publish, distribute, sublicense, and/ or sell";
        GUILayout.Label(message, style);
        message = "copies of the Software, and to permit persons to whom the Software is";
        GUILayout.Label(message, style);
        message = "furnished to do so, subject to the following conditions:";
        GUILayout.Label(message, style);

        message = "The above copyright notice and this permission notice shall be included in";
        GUILayout.Label(message, style);
        message = "all copies or substantial portions of the Software.";
        GUILayout.Label(message, style);

        message = "THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR";
        GUILayout.Label(message, style);
        message = "IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,";
        GUILayout.Label(message, style);
        message = "FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE";
        GUILayout.Label(message, style);
        message = "AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER";
        GUILayout.Label(message, style);
        message = "LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,";
        GUILayout.Label(message, style);
        message = "OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN";
        GUILayout.Label(message, style);
        message = "THE SOFTWARE.";
        GUILayout.Label(message, style);
        message = "";
        GUILayout.Label(message, style);
        message = "Individual license restrictions for the components below may apply:";
        GUILayout.Label(message, style);
        message = "";
        GUILayout.Label(message, style);
        message = "Server rack by flevasgr (Meletis): http://tf3dm.com/3d-model/server-rack-76768.html";
        GUILayout.Label(message, style);
        message = "Super computer by tharidu (TDG): http://tf3dm.com/3d-model/super-camputer-ibm-75503.html";
        GUILayout.Label(message, style);
        message = "Personal computer by rsmedia: http://tf3dm.com/3d-model/pc-18210.html";
        GUILayout.Label(message, style);
        message = "R2D2 by asbrock (Degardin Arnaud): http://tf3dm.com/3d-model/r2d2-by-abrock-46556.html";
        GUILayout.Label(message, style);
        message = "Earth by Glenn Campbell: http://tf3dm.com/3d-model/world-globe-94593.html";
        GUILayout.Label(message, style);
        message = "All satellites by NASA: http://nasa3d.arc.nasa.gov/models";
        GUILayout.Label(message, style);
        message = "Galaxy code modified from: https://github.com/beltoforion/Galaxy-Renderer";
        GUILayout.Label(message, style);
        message = "Trucks by MarcosStyLL: http://tf3dm.com/3d-model/dump-truck-79822.html";
        GUILayout.Label(message, style);

        GUILayout.EndVertical();

        GUI.DragWindow(new Rect(0, 0, Screen.width, Screen.height));
    }