GrazBon / Unit-70-Space-Invaders

0 stars 0 forks source link

Spaceship #2

Open GrazBon opened 11 years ago

GrazBon commented 11 years ago

Spaceship is exiting screen from left to right and vice versa border

GrazBon commented 11 years ago

The following code will stop the spaceship from keep going left to right out of screen

var border:float=1.0;

if (transform.position.x < BorderController.leftmost + border)
{
    transform.position.x = BorderController.leftmost + border;
}

if (transform.position.x > BorderController.rightmost - border)
{
    transform.position.x = BorderController.rightmost - border;
}