repeating texts
This commit is contained in:
@@ -34,9 +34,10 @@ struct TextNode
|
||||
unsigned char scroll_progress;
|
||||
short disappear_time;
|
||||
bool is_scrolling;
|
||||
bool is_repeating;
|
||||
|
||||
|
||||
TextNode() : color(0), pos_x(0), pos_y(0), character_count(0), scroll_slowness(0), scroll_progress(0), characterSize({7,5}), disappear_time(0), is_scrolling(true) {}
|
||||
TextNode() : color(0), pos_x(0), pos_y(0), character_count(0), scroll_slowness(0), scroll_progress(0), characterSize({7,5}), disappear_time(0), is_scrolling(true), is_repeating(false) {}
|
||||
};
|
||||
|
||||
struct RGB
|
||||
@@ -77,8 +78,9 @@ struct MultiColorTextNode
|
||||
unsigned char scroll_progress;
|
||||
short disappear_time;
|
||||
bool is_scrolling;
|
||||
bool is_repeating;
|
||||
|
||||
MultiColorTextNode() : pos_x(0), pos_y(0), character_count(0), scroll_slowness(0), scroll_progress(0), characterSize({7,5}), disappear_time(0), is_scrolling(true), color_count(0) {}
|
||||
MultiColorTextNode() : pos_x(0), pos_y(0), character_count(0), scroll_slowness(0), scroll_progress(0), characterSize({7,5}), disappear_time(0), is_scrolling(true), color_count(0), is_repeating(false) {}
|
||||
};
|
||||
|
||||
struct Image
|
||||
|
||||
Reference in New Issue
Block a user