At the start i let an actor spawn(spaceship), but to avoid some errors i had to turn the image 270 degrees(or 90 degrees counter clockwise). It is now spawning facing the left. how do i let it spawn straight?
setRotation doesn't work
thank you :)
private void NewShip()
{
addObject(new Spaceship(), 320, 450);
spaceship.setRotation(90);
}

