mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Add textboxtimer command
This commit is contained in:
parent
fb38668182
commit
6abb76238d
2 changed files with 12 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue