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.
15 lines
366 B
15 lines
366 B
if (hspeed < 1 && facing == 1)
|
|
hspeed += 0.02
|
|
if (hspeed > -1 && facing == -1)
|
|
hspeed -= 0.02
|
|
if (collision_line((x + 16), (y - 12), (x + 16), (y + 12), oSolid, true, false) && hspeed > 0)
|
|
{
|
|
facing = -1
|
|
hspeed = -0.1
|
|
}
|
|
if (collision_line((x - 16), (y - 12), (x - 16), (y + 12), oSolid, true, false) && hspeed < 0)
|
|
{
|
|
facing = 1
|
|
hspeed = 0.1
|
|
}
|