Flashゲームを作成しています。残念ながら、プレーヤーが「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」がシーンを循環するのを防ぐ方法はありますか?
ありがとう、
キリスト教徒