Console
To make development easier, faster and more interactive, we created a simple to use Command Console.

[Command("<command-name>", "<description>")]Last updated
To make development easier, faster and more interactive, we created a simple to use Command Console.

[Command("<command-name>", "<description>")]Last updated
public class TestClass : MonoBehaviour
{
// any code here
[Command("say-hello", "simply says hello")]
public static string SayHelloCommand(out EConsoleColor color, params string[] args)
{
color = EConsoleColor.Output;
return "Hello!";
}
]