ソースを参照

improved things

master
mort 8年前
コミット
ed54f63abb
3個のファイルの変更12行の追加5行の削除
  1. 1
    1
      es/game.js
  2. 6
    1
      es/script.js
  3. 5
    3
      index.html

+ 1
- 1
es/game.js ファイルの表示

this.thrustAnim.loop = false; this.thrustAnim.loop = false;
this.game.playSound(PlayerSounds.despawn, this.pos); this.game.playSound(PlayerSounds.despawn, this.pos);
if (this.thrustSound) if (this.thrustSound)
this.thrustSound.stop();
this.thrustSound.pause();
} }
} }



+ 6
- 1
es/script.js ファイルの表示

game.onloss = () => view("game-over"); game.onloss = () => view("game-over");
} }


document.querySelector("#startGameBtn").addEventListener("click", startGame);
document.querySelector("#startForm").addEventListener("submit", (evt) => {
evt.preventDefault();
startGame();
});

document.querySelector("#restartGameBtn").addEventListener("click", () => { document.querySelector("#restartGameBtn").addEventListener("click", () => {
location.reload(); location.reload();
}); });

document.querySelector("#storyBtn").addEventListener("click", () => { document.querySelector("#storyBtn").addEventListener("click", () => {
location.hash = ""; location.hash = "";
location.reload(); location.reload();

+ 5
- 3
index.html ファイルの表示

<p>Umbreosylians are a fickle race. At the first sign of danger, of course, everyone you knew flew away to migrate to a safe place. Except you. You overslept, missed the ships, and are now abandoned.</p> <p>Umbreosylians are a fickle race. At the first sign of danger, of course, everyone you knew flew away to migrate to a safe place. Except you. You overslept, missed the ships, and are now abandoned.</p>


<p>You barely managed to enter your ship, lift off, and get to a somewhat safe distance from the planet, before The Deathers destroyed Umbreosyl. You're currently sitting in your space ship, blood boiling, watching the debris from your beloved home planet encounter you from behind, and ships from The Deathers from ahead.</p> <p>You barely managed to enter your ship, lift off, and get to a somewhat safe distance from the planet, before The Deathers destroyed Umbreosyl. You're currently sitting in your space ship, blood boiling, watching the debris from your beloved home planet encounter you from behind, and ships from The Deathers from ahead.</p>
<input id="playerName" placeholder="Name"></input>
<button id="startGameBtn">Start</button>

<form id="startForm">
<input id="playerName" placeholder="Name"></input>
<button type="submit" id="startGameBtn">Start</button>
</form>
</div> </div>


<div class="view game"> <div class="view game">

読み込み中…
キャンセル
保存