Trying To Create Minecraft Like Console #678
Answered
by
phil-scott-78
valkyrienyanko
asked this question in
Q&A
-
The yellow rect is where I want to be able to write console commands like This is what I have so far. using Spectre.Console;
class Program
{
public static void Main(string[] args)
{
var table = new Table();
//table.Border = TableBorder.None;
table.Expand();
table.AddColumn("Log"); // This is where log messages should appear
table.AddRow("Input"); // Where the user input is
AnsiConsole.Write(table);
System.Console.ReadLine();
}
} Although I'm not sure how you would expand the height of a row. |
Beta Was this translation helpful? Give feedback.
Answered by
phil-scott-78
Jan 2, 2022
Replies: 1 comment 1 reply
-
Converted this to a discussion. I can say that as of right now, there isn't anything built in that would accomplish this. Lots of threading concerns and it would require custom logic around the input. Doable, but it would take work. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
valkyrienyanko
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Converted this to a discussion.
I can say that as of right now, there isn't anything built in that would accomplish this. Lots of threading concerns and it would require custom logic around the input. Doable, but it would take work.