so basically I'm trying to make a 2D fighter like street fighter in green foot but the when I try and make the player 1/2 shoot they both only shoot in 1 direction even though im facing the other one, how would I fix this? here's my code so far:
if (player1.facingLeft == true)
{
move(-5);
}
else
{
move(5);
}

