Fix HTML5

This commit is contained in:
SilicaAndPina 2020-09-10 13:05:45 +12:00
parent f9d4ac9a3d
commit 249b5003cb
4 changed files with 10 additions and 3 deletions

View File

@ -27,6 +27,7 @@
<kind>1</kind>
<string>global.debug = false
global.hide = false;
draw_set_font(fnt_main);
</string>
</argument>
</arguments>
@ -51,6 +52,7 @@ global.hide = false;
<kind>1</kind>
<string>/// Draw HUD
if(!global.hide){
if(!global.debug)
{

View File

@ -25,7 +25,9 @@
<arguments>
<argument>
<kind>1</kind>
<string>image_speed = 0;
<string>
draw_set_font(fnt_main);
image_speed = 0;
BUTTON_TEXT = "Give Up";
show_debug_message("Button Created: "+BUTTON_TEXT);
</string>

View File

@ -25,7 +25,8 @@
<arguments>
<argument>
<kind>1</kind>
<string>image_speed = 0;
<string>draw_set_font(fnt_main);
image_speed = 0;
BUTTON_TEXT = "Start Exploring";
show_debug_message("Button Created: "+BUTTON_TEXT);
</string>

View File

@ -25,7 +25,9 @@
<arguments>
<argument>
<kind>1</kind>
<string>image_speed = 0;
<string>
draw_set_font(fnt_main);
image_speed = 0;
BUTTON_TEXT = "Respawn";
show_debug_message("Button Created: "+BUTTON_TEXT);
</string>