Skip to content

Commit

Permalink
test addind game project
Browse files Browse the repository at this point in the history
  • Loading branch information
amgno committed Jan 11, 2024
1 parent 544ab0b commit 177c958
Show file tree
Hide file tree
Showing 85 changed files with 6,166 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
Empty file added README.md
Empty file.
Binary file added game-project/.DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions game-project/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
Binary file added game-project/assets/.DS_Store
Binary file not shown.
Binary file added game-project/assets/images/.DS_Store
Binary file not shown.
Binary file added game-project/assets/images/background 2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
716 changes: 716 additions & 0 deletions game-project/assets/images/background.ai

Large diffs are not rendered by default.

Binary file added game-project/assets/images/background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/background2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/imgtest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/oldmenu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/oldplatform.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/oldsprite.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/placeholderplayer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/gigante.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/plat1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/plat10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/plat11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/plat12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/plat13.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/plat14.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/plat15.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/plat2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/plat3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/plat4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/plat5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/plat6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/plat7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/plat8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/plat9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added game-project/assets/images/plat/porta.png
Binary file added game-project/assets/images/platform.png
Binary file added game-project/assets/images/provadim.png
Binary file added game-project/assets/images/rain.png
Binary file added game-project/assets/images/sprite.png
Binary file added game-project/assets/images/spritesheet.png
Binary file added game-project/assets/images/spritetest.png
Binary file added game-project/assets/images/vecchia.png
Binary file added game-project/backup1.zip
Binary file not shown.
Binary file added game-project/backup1/.DS_Store
Binary file not shown.
Binary file added game-project/backup1/assets/images/platform.png
Binary file added game-project/backup1/assets/images/rain.png
21 changes: 21 additions & 0 deletions game-project/backup1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!doctype html>
<html>
<head>
<title>My first game!</title>
<script src="lib/phaser.min.js"></script> <!--L'ordine è importante, va prima inizializzato phaser e poi la nostra versione custom-->
<script src="lib/poliphaser.js"></script>

<!--Scene vanno messe prima del main-->
<script src="src/scenes/scene1.js" type="module"></script>

<script src="src/player.js"></script>
<script src="src/platform.js"></script>
<script src="src/mushroom.js"></script>
<script src="src/rain.js"></script>
<script defer src="src/main.js"></script> <!--defer fa si che si carichi solo dopo che ha caricato tutto il resto-->

</head>
<body>
<div id="game_area" style="text-align: center;"></div>
</body>
</html>
1 change: 1 addition & 0 deletions game-project/backup1/lib/phaser.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 177c958

Please sign in to comment.