void OnGUI()
    {
        string AllLines = "";

        if (mMovie != null)
        {
            AllLines += mMovie.GetTime() + "\n";
        }

        if (mLines != null)
        {
            for (int i = mLines.Count - 1; i >= 0; i--)
            {
                AllLines += mLines [i] + "\n";
            }
        }

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