-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
10,846 additions
and
979 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"useBuiltIns": "usage", | ||
"corejs": "3.0.0" | ||
} | ||
] | ||
], | ||
"plugins": [ | ||
"@babel/plugin-syntax-dynamic-import", | ||
"@babel/plugin-proposal-class-properties" | ||
] | ||
} |
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,13 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"node": true | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 6, | ||
"sourceType": "module" | ||
}, | ||
"rules": { | ||
"semi": 2 | ||
} | ||
} |
This file was deleted.
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,21 @@ | ||
TOGGLE | ||
======== | ||
### [PLAY TOGGLE](http://akshaths.github.io/Toggle/) | ||
# TOGGLE | ||
|
||
### ABOUT | ||
## [PLAY TOGGLE](http://akshaths.github.io/Toggle/) | ||
|
||
## About | ||
Toggle is a combination of the games Tetris and Boggle. | ||
|
||
Control the falling pieces with the WASD or arrow keys. As your pieces fall to the floor, Tetris-style, drag your mouse along the letters of the blocks to form words, Boggle-style. You may only move your cursor to adjacent letters that are also **occupied by a Tetris block**. You can gain points by clearing lines with the Tetris blocks and/or making words (longer words are worth bonus). | ||
Control the falling pieces with the WASD or arrow keys. As your pieces fall to the floor, Tetris-style, drag your mouse along the letters of the blocks to form words, Boggle-style. You may only move your cursor to adjacent letters (diagonals neighbors count!). You can gain points by clearing lines with the Tetris blocks and/or making words (longer words are worth bonus). | ||
|
||
Don't let the blocks reach the top of the screen! | ||
Don't let the blocks or the letters reach the top of the screen! | ||
|
||
### CONTROLS | ||
## Controls | ||
``W / ↑`` · rotate piece clockwise | ||
``A / ←`` · move piece left | ||
``S / ↓`` · move piece downwards | ||
``D / →`` · move piece right | ||
``Space`` · instant drop | ||
``Mouse`` · click and drag to form words | ||
|
||
### NEXT STEPS | ||
* record demo to showcase gameplay | ||
* add pause and game over screens | ||
* add local highscores list | ||
* implement multiplayer functionality (similar to Wordament rounds/leaderboard) | ||
* dynamic letter insertions, insert new row of letters at the top of the board when user clears a row | ||
|
||
### LICENSE | ||
## License | ||
The code is released under the [MIT license](https://github.com/akshaths/Toggle/blob/master/LICENSE). |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.