Я создаю флеш игру.К сожалению, когда игрок нажимает «Enter», игра непрерывно перебирает все сцены.Я попробовал следующее (хотя я знаю, что это немного конешно):
// The Enter Key was pressed
// If the Enter key is pressed, the keyboard input is "changed" to
// be '.'. This prevents a problem in which the Player would
// press 'Enter' and the game screen would continuously cycle
// through scenes
if (event.keyCode == Keyboard.ENTER) {
// The 'PERIOD' key does nothing
event.keyCode = Keyboard.PERIOD;
//spaceKeyPressed = true;
}
Есть ли способ предотвратить циклическое переключение "Enter" между сценами?
Спасибо,
Christian