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.
AM2Rogue/Export_Code/gml_Object_oGunzooProj2_Ste...

16 lines
305 B

if (image_alpha < 1)
image_alpha += 0.1
if active
{
if (x > oCharacter.x)
hspeed -= 0.08
if (x < oCharacter.x)
hspeed += 0.08
if (y > (oCharacter.y - 15))
vspeed -= 0.05
if (y < (oCharacter.y - 15))
vspeed += 0.05
if (speed > 2)
speed = 2
}