unity-console

uConsole is a runtime command console for Unity3D
Instructions
- mark methods with [ConsoleCmd] attribute
[ConsoleCmd]
public static void AddCoins(int amount, string name)
{
Debug.Log("added " + amount + " for " + name);
}
[ConsoleCmd]
public static void Kill()
{
Debug.Log("killed");
}
- during runtime, press [`] to toggle the command console interface
- press [Tab] to auto complete
- [Return] to excecute command
