You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AM2R-Multitroid-Fair-Team-PVP/Export_Code/gml_Object_oSpaceJumpTrail_...

43 lines
1.4 KiB

var omegaTrail;
if (oControl.mod_fusion == 1)
{
omegaTrail = 0
if global.ibeam
{
omegaTrail = 1
draw_sprite_ext(sSpaceJumpTrailOmega_fusion, 1, x, y, image_xscale, 1, (image_angle + (image_xscale * -180)), c_white, image_alpha)
}
if (!omegaTrail)
{
switch global.currentsuit
{
case 0:
draw_sprite_ext(sSpaceJumpTrail_fusion, 0, x, y, image_xscale, 1, (image_angle + (image_xscale * -180)), c_white, image_alpha)
break
case 1:
draw_sprite_ext(sSpaceJumpTrailVaria_fusion, 0, x, y, image_xscale, 1, (image_angle + (image_xscale * -180)), c_white, image_alpha)
break
case 2:
draw_sprite_ext(sSpaceJumpTrailGravity_fusion, 0, x, y, image_xscale, 1, (image_angle + (image_xscale * -180)), c_white, image_alpha)
break
}
}
}
else
{
switch global.currentsuit
{
case 0:
draw_sprite_ext(sSpaceJumpTrail, 0, x, y, image_xscale, 1, (image_angle + (image_xscale * -180)), c_white, image_alpha)
break
case 1:
draw_sprite_ext(sSpaceJumpTrailVaria, 0, x, y, image_xscale, 1, (image_angle + (image_xscale * -180)), c_white, image_alpha)
break
case 2:
draw_sprite_ext(sSpaceJumpTrailGravity, 0, x, y, image_xscale, 1, (image_angle + (image_xscale * -180)), c_white, image_alpha)
break
}
}