Exemplo n.º 1
0
        /// <summary>
        /// Prints to the debug log, a tree of all the currently active states
        /// </summary>
        public void PrintActiveStateTree()
        {
            string result = this.ToString();

            result += "\n";
            result += m_Logic.GetActiveStateTreeText(0);
            Debug.Log(result);
        }