Ejemplo n.º 1
0
 public void AddCommandToConsole()
 {
     // Adds command to the list of commands
     DeveloperConsole.AddCommandsToConsole(CommandText, this);
     // Prints in the console that it has done this
     DeveloperConsole.AddMessageToConsole(Name + " has been added to the console");
 }
Ejemplo n.º 2
0
        public void AddCommandToConsole()
        {
            string addMessage = " command has been added to the console.";

            DeveloperConsole.AddCommandsToConsole(Command, this);
            Debug.Log(Name + addMessage);
        }
Ejemplo n.º 3
0
        public void AddCommandToConsole()
        {
            string addMessage = " command has been added to the console.";

            DeveloperConsole.AddCommandsToConsole(Command, this);
            //GameSystemManager.GetSystem<DeveloperConsole>().AddMessageToConsole(Name + addMessage);
        }