integer GetFontPixel(integer AsciiCode, integer x, integer y )
Provides font pixel data for use with various drawing functions. This can be typicaly used for making scrolling texts in Indicator Light walls.
AsciiCode : The ascii code of the character you want to get pixels from.
x,y : The coordinates of the pixel you want to get. Actual font is 8x8 pixels, so you can use values from 0 to 7 included. Other values will return (0) value.
The RGBA color code corresponding to pixel of the specified character and provided positions.
// To do...