Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
gomagom committed Aug 7, 2021
1 parent 14bb80e commit ed1f68b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 13 deletions.
1 change: 0 additions & 1 deletion game.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ <h1>譜面を選択してください</h1>
<script src="js/game/judgeLine.js"></script>
<script src="js/game/backLane.js"></script>
<script src="js/game/singleNote.js"></script>
<script src="js/game/longNote.js"></script>
<script src="js/game/musicalScoreManager.js"></script>
<script src="js/game/soundManager.js"></script>
<script src="js/game/gameScoreManager.js"></script>
Expand Down
10 changes: 5 additions & 5 deletions js/game/backLane.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ class BackLane {
}

generateNote(data) {
// ここに記事のコードを書く
/* ここにコードを挿入してください */
}

update() {
// ここに記事のコードを書く
/* ここにコードを挿入してください */
}

judge() {
// ここに記事のコードを書く
/* ここにコードを挿入してください */
}

draw() {
Expand All @@ -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() {
// ここに記事のコードを書く
/* ここにコードを挿入してください */
}
}
2 changes: 1 addition & 1 deletion js/game/gameScoreManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class GameScoreManager {
}

calcScore(grade) {
// ここに記事のコードを書く
/* ここにコードを挿入してください */
}

reset() {
Expand Down
5 changes: 0 additions & 5 deletions js/game/longNote.js

This file was deleted.

2 changes: 1 addition & 1 deletion js/game/singleNote.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
// ここに記事のコードを書く
/* ここにコードを挿入してください */

0 comments on commit ed1f68b

Please sign in to comment.