Stack Up is a game where you place blocks one on top of another until the block slices down to zero. It is a 2D-rendered 3D game, and I have tried creating it using JavaScript, Python, and C++, applying the same concept in each language.
git clone https://github.com/JunaithSM/StackUp.git
I used the HTMLCanvasElement
to create this game with JavaScript for rendering and logic.
High scores are stored using window.localStorage
.
To view the game:
- Navigate to the
javascript/
folder. - Open the
index.html
file in a browser to see the program in action.
I developed this version using Pygame
for rendering and gameplay mechanics.
High scores are stored in a .csv
file for easy data management.
To run the game:
- Install Pygame using:
pip install pygame
- Execute the game script:
python game.py
I created this version using the SDL2
library for rendering and handling game logic.
High scores are saved in a .txt
file.
To run the game:
- Execute the application:
./app.exe
I know I didn't compeletly finish the C++
program but the game is finsihed.