Add color support for input bar

This commit is contained in:
GinjaNinja32 2017-10-06 18:36:42 +01:00 committed by ailin-nemui
commit 925ae6e6ad
3 changed files with 121 additions and 22 deletions

View file

@ -124,6 +124,14 @@ gui_input_set(str)
CODE:
gui_entry_set_text(active_entry, str);
void
gui_input_color(pos, len, color)
int pos
int len
int color
CODE:
gui_entry_set_color(active_entry, pos, len, color);
int
gui_input_get_pos()
CODE: