Ejemplo n.º 1
0
        //protected:
        public new void add_text(color_value color, string text)
        {
            if (text.Length == 0)
            return;

            if (buffer.Length == 0)
            {
            buffer = text;
            }
            else
            {
            buffer += text;
            }
        }
Ejemplo n.º 2
0
        //protected:
        public new void add_text(color_value color, string text)
        {
            if (text.Length == 0)
            {
                return;
            }

            if (buffer.Length == 0)
            {
                buffer = text;
            }
            else
            {
                buffer += text;
            }
        }
Ejemplo n.º 3
0
 public void add_text(color_value color, string text)
 {
     //Debug.Log(text);
     buffer += text;
 }
Ejemplo n.º 4
0
 public void add_text(color_value color, string text)
 {
     Debug.WriteLine(text);
     buffer += text;
 }
Ejemplo n.º 5
0
 public void add_text(color_value color, string text)
 {
     //Debug.Log(text);
     buffer += text;
 }
Ejemplo n.º 6
0
 public void add_text(color_value color, string text)
 {
     Value += text;
 }