TCOD_FONT_LAYOUT_ASCII_INCOL

These font flags can be OR'd together into a bit-field and passed to TCOD_console_set_custom_font

Values

ValueMeaning
TCOD_FONT_LAYOUT_ASCII_INCOL1

Tiles are arranged in column-major order.

0 3 6 1 4 7 2 5 8

TCOD_FONT_LAYOUT_ASCII_INROW2

Tiles are arranged in row-major order.

0 1 2 3 4 5 6 7 8

TCOD_FONT_TYPE_GREYSCALE4

Converts all tiles into a monochrome gradient.

TCOD_FONT_TYPE_GRAYSCALE4
TCOD_FONT_LAYOUT_TCOD8

A unique layout used by some of libtcod's fonts.

Meta