Unity Console Save

runtime command console for unity

Project README

unity-console Build Status Codacy Badge

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

Roadmap

  • execute static methods
  • execute non-static methods
  • primitive type parameters
  • non-primitive type parameters
  • UI indicator for method target type
  • UI indicator for parameter type
  • Optimize initialiation
Open Source Agenda is not affiliated with "Unity Console" Project. README Source: DylanYasen/unity-console
Stars
28
Open Issues
3
Last Commit
5 years ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating