-
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.
- Loading branch information
Showing
2 changed files
with
53 additions
and
1 deletion.
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,52 @@ | ||
### DESCRIPTION | ||
|
||
This platformer is still in development. | ||
There is no clear objective to this project. | ||
|
||
Currently 3 maps playable | ||
|
||
**Controls : Arrows** | ||
|
||
### COMPILE TUTORIAL | ||
|
||
First, install pyinstaller : | ||
``` | ||
pip install pyinstaller | ||
``` | ||
|
||
Then, go on the project folder and compile the main.py file using : | ||
``` | ||
pyinstaller --onefile main.py | ||
``` | ||
*This command can take some time.* | ||
|
||
Then, in the **dist** folder, you now have a ***main.exe*** file. Just run it to play the game. | ||
|
||
|
||
### IDEAS | ||
|
||
Ennemies : | ||
- flying | ||
- throwing | ||
- walking same path | ||
- try to go to player | ||
|
||
type of blocks : | ||
- portals | ||
- lava (put back to spawn point) | ||
- locked door (need a key to open it) | ||
|
||
Game over screen (need lives system) | ||
|
||
Score (need pieces to collect on the levels) | ||
|
||
Winning screen : | ||
- timer shown at the end | ||
- score shown at the end | ||
|
||
First page : | ||
- "Adventure mode" --> all levels sorted | ||
- "Level mode" --> can choose the levels | ||
|
||
New gameplay : | ||
- 1v1 : 2 players, first to the winning block win |
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,4 +1,4 @@ | ||
from game import * | ||
|
||
|
||
g = Game(fps=60, maps=[2]) | ||
g = Game(fps=60, maps=[0,1,2]) |