Fix HTML5
This commit is contained in:
parent
f9d4ac9a3d
commit
249b5003cb
4 changed files with 10 additions and 3 deletions
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Reference in a new issue