From ed1f68bb6e9534dce379cf410c89fc2c18b34cc9 Mon Sep 17 00:00:00 2001 From: gomagom Date: Sun, 8 Aug 2021 02:27:17 +0900 Subject: [PATCH] update --- game.html | 1 - js/game/backLane.js | 10 +++++----- js/game/gameScoreManager.js | 2 +- js/game/longNote.js | 5 ----- js/game/singleNote.js | 2 +- 5 files changed, 7 insertions(+), 13 deletions(-) delete mode 100644 js/game/longNote.js diff --git a/game.html b/game.html index f21cb2a..5fb5de8 100755 --- a/game.html +++ b/game.html @@ -118,7 +118,6 @@

譜面を選択してください

- diff --git a/js/game/backLane.js b/js/game/backLane.js index d165574..af5b109 100644 --- a/js/game/backLane.js +++ b/js/game/backLane.js @@ -11,15 +11,15 @@ class BackLane { } generateNote(data) { - // ここに記事のコードを書く + /* ここにコードを挿入してください */ } update() { - // ここに記事のコードを書く + /* ここにコードを挿入してください */ } judge() { - // ここに記事のコードを書く + /* ここにコードを挿入してください */ } draw() { @@ -29,10 +29,10 @@ class BackLane { CTX.strokeStyle = 'rgba(' + this.actColor + ', 0.7)'; CTX.strokeText(this.key.toUpperCase(), this.x + this.width / 2, CANVAS_H - 160); - // ここに記事のコードを書く + /* ここにコードを挿入してください */ } drawNote() { - // ここに記事のコードを書く + /* ここにコードを挿入してください */ } } diff --git a/js/game/gameScoreManager.js b/js/game/gameScoreManager.js index 203b23b..8717f0f 100644 --- a/js/game/gameScoreManager.js +++ b/js/game/gameScoreManager.js @@ -10,7 +10,7 @@ class GameScoreManager { } calcScore(grade) { - // ここに記事のコードを書く + /* ここにコードを挿入してください */ } reset() { diff --git a/js/game/longNote.js b/js/game/longNote.js deleted file mode 100644 index 30d871c..0000000 --- a/js/game/longNote.js +++ /dev/null @@ -1,5 +0,0 @@ -class LongNote { - constructor(speed, reachTime) { - - } -} diff --git a/js/game/singleNote.js b/js/game/singleNote.js index 8c0bd78..2decc1d 100644 --- a/js/game/singleNote.js +++ b/js/game/singleNote.js @@ -1 +1 @@ -// ここに記事のコードを書く \ No newline at end of file +/* ここにコードを挿入してください */ \ No newline at end of file