Change: Move Colored Text into it's own class.

Note: At a later time, it may make sense to put my text parsing system over the old one.
This commit is contained in:
Charles Lohr
2005-05-05 19:47:04 +00:00
parent 7cbb3d3da2
commit 11f9384528
4 changed files with 208 additions and 73 deletions
-2
View File
@@ -55,7 +55,6 @@ void ScreenNetSelectBase::Init()
this->AddChild( &m_sprChatOutputBox );
m_textChatInput.LoadFromFont( THEME->GetPathF(m_sName,"chat") );
m_textChatInput.SetDynamicColor( true );
m_textChatInput.SetHorizAlign( align_left );
m_textChatInput.SetVertAlign( align_top );
m_textChatInput.SetShadowLength( 0 );
@@ -66,7 +65,6 @@ void ScreenNetSelectBase::Init()
m_textChatOutput.LoadFromFont( THEME->GetPathF(m_sName,"chat") );
m_textChatOutput.SetWrapWidthPixels( (int)(CHATOUTPUT_WIDTH * 2) );
m_textChatOutput.SetDynamicColor( true );
m_textChatOutput.SetHorizAlign( align_left );
m_textChatOutput.SetVertAlign( align_bottom );
m_textChatOutput.SetShadowLength( 0 );