コード例 #1
0
        public Visual(CharList CharLST, BackgroundImage background)
        {
            this.CharLST = CharLST;

            TextColor   = background.ColorText;
            TextStart   = background.TextStart;
            NameColor   = background.ColorName;
            NameStart   = background.NameStart;
            GlyphScale  = background.GlyphScale;
            LineSpacing = background.LineSpacing;
        }
コード例 #2
0
        public void Background_Update(BackgroundImage background)
        {
            TextColor   = background.ColorText;
            TextStart   = background.TextStart;
            NameColor   = background.ColorName;
            NameStart   = background.NameStart;
            GlyphScale  = background.GlyphScale;
            LineSpacing = background.LineSpacing;

            DataText = CreateImageData(TextTemp);
            DataName = CreateImageData(NameTemp);
        }