A minimalist Tetris-like game made with Lua and LÖVE.
- Keys
- Installation
- Launch
- License (free!)
Key | Action |
---|---|
ESC | exit |
TAB | pause |
R | restart |
⬅️ ⬇️ ➡️ or A, S, D | move |
⬆️ or W | rotate |
space or enter | fall all the way down |
You can also use the numpad:
Key | Action |
---|---|
4 | move left |
6 | move right |
2 | move down |
0 | fall all the way down |
1 | move left and down |
3 | move right and down |
8 | rotate |
7 | move left and rotate |
9 | move right and rotate |
5 | move down and rotate |
You need to have LÖVE 0.10.1 installed. This program may or may not work well with other versions of LÖVE. You also have to download one of the files with a .love
extension, or the source code (LÖVE is able to run src
directly, as shown in the next section).
Depending on your system, it may be enough to just double-click the file with a .love
extension. Otherwise, you may use the command line as in the following two examples (replace the path by the appropriate one if necessary):
- using the
.love
file:
love games/yet-another-tetris-like-game-0.2.0.love
- using the source:
love yet-another-tetris-like-game-0.2.0/src
The license is CC0, which means you can and should do whatever you want with the code without my permission and without mentioning me as its author. Feel free to copy and build better things from it!