mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Add textboxtimer command
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
fb38668182
commit
6abb76238d
@@ -47,6 +47,7 @@ scriptclass::scriptclass(void)
|
||||
add_default_colours();
|
||||
textflipme = false;
|
||||
textcentertext = false;
|
||||
textboxtimer = 0;
|
||||
textpad_left = 0;
|
||||
textpad_right = 0;
|
||||
textpadtowidth = 0;
|
||||
@@ -503,6 +504,7 @@ void scriptclass::run(void)
|
||||
textpad_left = 0;
|
||||
textpad_right = 0;
|
||||
textpadtowidth = 0;
|
||||
textboxtimer = 0;
|
||||
|
||||
translate_dialogue();
|
||||
}
|
||||
@@ -669,6 +671,10 @@ void scriptclass::run(void)
|
||||
{
|
||||
game.backgroundtext = true;
|
||||
}
|
||||
else if (words[0] == "textboxtimer")
|
||||
{
|
||||
textboxtimer = ss_toi(words[1]);
|
||||
}
|
||||
else if (words[0] == "flipme")
|
||||
{
|
||||
textflipme = !textflipme;
|
||||
@@ -695,6 +701,11 @@ void scriptclass::run(void)
|
||||
}
|
||||
}
|
||||
|
||||
if (textboxtimer > 0)
|
||||
{
|
||||
graphics.textboxtimer(textboxtimer);
|
||||
}
|
||||
|
||||
// Some textbox formatting that can be set by translations...
|
||||
if (textcentertext)
|
||||
{
|
||||
|
||||
@@ -122,6 +122,7 @@ public:
|
||||
char textcase;
|
||||
bool textbuttons;
|
||||
bool textlarge;
|
||||
int textboxtimer;
|
||||
|
||||
//Misc
|
||||
int i, j, k;
|
||||
|
||||
Reference in New Issue
Block a user