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 :)
1 2 3 4 5 | private void NewShip() { addObject( new Spaceship(), 320 , 450 ); spaceship.setRotation( 90 ); } |