コード例 #1
0
ファイル: GL_TXT.cs プロジェクト: mambotuna/DOTS-training
    public static void Draw_Glyph_NGON(char _char, float _x, float _y, float _size, float _ngonScaleFactor, int _sides, Color _col)
    {
        BitArray _CELLS = GL_FONT_3x5.Get(_char);

        GL_DRAW.Draw_MATRIX_NGON(_x, _y, _size * 3, -_size * 5, _sides, _ngonScaleFactor, 3, 5, _col, _CELLS);
    }