BIT-Studio-1 / project-23-1-orangehathackers

project-23-1-orangehathackers created by GitHub Classroom
0 stars 0 forks source link

The game text is hard to read while playing #5

Closed Morrnc1 closed 1 year ago

Morrnc1 commented 1 year ago

Text is all skewed to the left making it hard to read in the console. I would recommend margining it by a minimum of 7px but could be greater this will make it easier to read and understand. alternatively or onto of It would be beneficial to have a delay between lines allowing for a slower reading pace and not over loading the player with a wall of text.

Check List

Morrnc1 commented 1 year ago

This is the code that I have used for this issue.

string[] messages = {
                " ",
                " ",
                " ",
                " ",
                " ",
                " ",
                " ",
            };

            foreach (string message in messages)
            {
                Console.WriteLine("       " + message); 
                System.Threading.Thread.Sleep(500); 
            }

Please review this and let me know of improvements to this method.

Morrnc1 commented 1 year ago

This issue needs to be reviewed

Daniel2003Morris commented 1 year ago

I have made an improvement to this method under a different issue