-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from NotBlue-Dev/develop
fix+individual+checkEnd
- Loading branch information
Showing
11 changed files
with
219 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -432,6 +432,7 @@ | |
"scene": "DO NOT SWITCH SCENE", | ||
"duration": "5" | ||
}, | ||
"endGame":true, | ||
"delay": "5" | ||
} | ||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<html> | ||
<head> | ||
<title>betweenRound</title> | ||
<meta http-equiv="content-type" content="text/html;charset=utf-8"> | ||
<script src="https://cdn.socket.io/4.4.1/socket.io.js"></script> | ||
<script src="/betweenRound/renderer.js"></script> | ||
<link rel="stylesheet" href="/betweenRound/style.css"> | ||
<link rel="stylesheet" href="/style.css"> | ||
</head> | ||
<body> | ||
<div class="scores"> | ||
<div class="sc"><a>SCORES</a></div> | ||
<div class="top"> | ||
<div id="R1B" class="RoundB"><a id="R1B_SCORE">R1</a></div> | ||
<div id="R2B" class="RoundB"><a id="R2B_SCORE">R2</a></div> | ||
<div id="R3B" class="RoundB"><a id="R3B_SCORE">R3</a></div> | ||
</div> | ||
<div class="bottom"> | ||
<div id="R1O" class="RoundO "><a id="R1O_SCORE">R1</a></div> | ||
<div id="R2O" class="RoundO "><a id="R2O_SCORE">R2</a></div> | ||
<div id="R3O" class="RoundO"><a id="R3O_SCORE">R3</a></div> | ||
</div> | ||
<div class="sc"><a>BEST OF 3</a></div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<html> | ||
<head> | ||
<title>betweenRound</title> | ||
<meta http-equiv="content-type" content="text/html;charset=utf-8"> | ||
<script src="https://cdn.socket.io/4.4.1/socket.io.js"></script> | ||
<script src="/betweenRound/renderer.js"></script> | ||
<link rel="stylesheet" href="/betweenRound/style.css"> | ||
<link rel="stylesheet" href="/style.css"> | ||
</head> | ||
<body> | ||
<div class="cont"> | ||
<div class="orange"> | ||
<img id="LogoA" class="LogoO hide"> | ||
<div class="stats"> | ||
<div class="title"> | ||
<div class="contain"> | ||
<div class="teamO"> | ||
<a id="nameA"></a> | ||
</div> | ||
<a>PTS</a> | ||
<a>ASS</a> | ||
<a>SAV</a> | ||
<a>STN</a> | ||
<a>POS</a> | ||
<a>ATT</a> | ||
</div> | ||
</div> | ||
<div id="playersOrange"> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="blue"> | ||
<div class="stats"> | ||
<div class="title"> | ||
<div class="contain b"> | ||
<a>PTS</a> | ||
<a>ASS</a> | ||
<a>SAV</a> | ||
<a>STN</a> | ||
<a>POS</a> | ||
<a>ATT</a> | ||
<div class="teamB"> | ||
<a id="nameB"></a> | ||
</div> | ||
</div> | ||
</div> | ||
<div id="playersBlue"> | ||
|
||
</div> | ||
</div> | ||
<img id="LogoB" class="LogoB hide"> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.