hi
ive had a search of the tutorials and forums and am still stuck so…
im trying to create a basic spaceship flying game and the first problem ive got is controlling the ship. the controls i need are thrust and left-rotate and right-rotate. much like this,
http://www.kirupa.com/developer/mx/gamecontrols.htm
at the start this tut mentions ‘game control tutorials’ does anyone know where these are? i think i would find these useful. the above tut doesnt go into scripting.
at the moment to control rotation i have,
onClipEvent (enterFrame){
_rotation += 0;
}
on (keyPress "<right>") {
_rotation += 7;
}
on (keyPress "<left>") {
_rotation += -7;
}
but there is an initial pause in the rotation. can anyone suggest an alternative code.
thanks for any help
steveo