Example #1
0
        public void Append(MyTexture2D texture, Vector2 size, Vector4 color)
        {
            MyRichLabelImage image = new MyRichLabelImage(texture, size, color);

            if (image.GetSize().X > m_currentLineRestFreeSpace)
            {
                AppendLine();
            }
            AppendPart(new MyRichLabelImage(texture, size, color));
        }
Example #2
0
 public void Append(MyTexture2D texture, Vector2 size, Vector4 color)
 {
     MyRichLabelImage image = new MyRichLabelImage(texture, size, color);
     if (image.GetSize().X > m_currentLineRestFreeSpace)
     {
         AppendLine();
     }
     AppendPart(new MyRichLabelImage(texture, size, color));
 }