Skip to content

DylanYasen/unity-console

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

runtime command console for unity

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •