CommitLog |

This commit is contained in:
SilicaAndPina 2020-07-25 20:40:52 +12:00
parent 3652f71f76
commit 4369babdea
5 changed files with 30 additions and 3 deletions

View File

@ -26,8 +26,9 @@
<argument>
<kind>1</kind>
<string>/// Player creation code.
ship_type = 0;
image_speed = 0;
image_index = 1;
image_index = ship_type;
is_moving = false;
dead = false;
invuln_counter_max = 1*room_speed;
@ -373,6 +374,32 @@ image_speed = 0;
instance_create(view_xview[0]+(view_wview[0]/2),view_yview[0]+(view_hview[0]/2),obj_gameover_overlay);
instance_create(view_xview[0]+(view_wview[0]/2),view_yview[0]+(view_hview[0]/2),obj_respawn);
</string>
</argument>
</arguments>
</action>
</event>
<event eventtype="9" enumb="123">
<action>
<libid>1</libid>
<id>603</id>
<kind>7</kind>
<userelative>0</userelative>
<isquestion>0</isquestion>
<useapplyto>-1</useapplyto>
<exetype>2</exetype>
<functionname></functionname>
<codestring></codestring>
<whoName>self</whoName>
<relative>0</relative>
<isnot>0</isnot>
<arguments>
<argument>
<kind>1</kind>
<string>if(global.debug)
{
ship_type +=2;
}
</string>
</argument>
</arguments>
@ -402,7 +429,7 @@ instance_create(view_xview[0]+(view_wview[0]/2),view_yview[0]+(view_hview[0]/2),
is_moving = true;
audio_play_sound(snd_engine,1,true);
image_index = 0;
image_index = ship_type+1;
</string>
</argument>
</arguments>
@ -432,7 +459,7 @@ image_index = 0;
is_moving = false;
audio_stop_sound(snd_engine)
image_index = 1;
image_index = ship_type;
</string>
</argument>
</arguments>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 519 B

After

Width:  |  Height:  |  Size: 405 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 405 B

After

Width:  |  Height:  |  Size: 519 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB