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_oMGammaElec_Step...

15 lines
271 B

if (facing == 1)
{
if (image_angle <= 70)
image_angle += rotspeed
if (image_angle >= 70)
instance_destroy()
}
if (facing == -1)
{
if (image_angle >= 110)
image_angle -= rotspeed
if (image_angle <= 110)
instance_destroy()
}