We can add another "IF" statement to make sure it only moves when it's on-screen.
- Code: Select all
if(xscreen > (0 - width) && xscreen < view.width && yscreen > (0 - height) && yscreen < view.height)
{
if(player.x < x)
{
xvelocity = -5;
}
else
{
xvelocity = 5;
}
}
else
{
xvelocity = 0;
}
How this works is that
&& is the
AND operator. The code inside will only activate if all four of those conditions are true.
The first one is
"xscreen > (0 - width)". This checks if the current actor's horizontal position on the screen (xscreen) is more than
"0 - width". The
"- width" portion makes sure that if just a pixel of the actor is on screen, it'll still be moving, otherwise it would stop as soon as it got off screen.
Then the second one is
"xscreen < view.width", which checks if the actor's horizontal position isn't over the right border of the screen.
Then the same thing is more or less repeated for the actor's vertical position.
Then that last
else statement is there so that if one of those conditions isn't met (the actor is off-screen) then we set its
xvelocity to 0 so it isn't moving.