// Interface Method: To set the text of the text renderer
        new public void SetText(string new_text)
        {
            text = new_text;

            m_textFxAnimDrawCall = false;

            m_animation_manager.SetDataRebuildCallFrame();
        }
Exemple #2
0
        // Interface Method: To set the text of the text renderer
        public void SetText(string new_text)
        {
            text = new_text;

            m_animation_manager.SetDataRebuildCallFrame();
        }
Exemple #3
0
        public void SetColour(Color colour)
        {
            color = colour;

            m_animation_manager.SetDataRebuildCallFrame();
        }