Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipBuresh authored Nov 3, 2023
1 parent 60a3043 commit 74cd3fa
Show file tree
Hide file tree
Showing 17 changed files with 245 additions and 83 deletions.
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
# Leap-and-Run
<b>[Play!](https://philipburesh.github.io/Leap-and-Run/)</b><br>

Last Update:
- Přidání ORBŮ, které umožňují DOUBLE JUMP
- Locknutá hra na 60 fps (pokud tvůj PC s monitorem mají méně jak 60hz, tak budeš pomalejší)
- Přidání funkce níčení blocků SPACEBAREM

![player1_right](https://github.com/PhilipBuresh/Leap-and-Run/assets/114904886/abea0c94-f2dd-4bc8-8135-0d14c29947a9)
Základní fyzika hry
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div id="container">
<div id="text">Leap&Run</div>
<div id="wasd">Play with: WASD and Space</div>
<canvas id="cnv" width="1024" height="576"></canvas>
<canvas id="cnv" width="1024" height="576" style="background: url('./res/img/wall.png')"></canvas>
</div>
<script src="./res/js/script.js"></script>
</body>
Expand Down
1 change: 0 additions & 1 deletion res/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ body {
background-color: black;
}
canvas {
background-color: white;
position: absolute;
top: 50%;
left: 50%;
Expand Down
Binary file added res/img/player.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 res/img/player1.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 res/img/player_crouch.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 res/img/player_fall_left.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 res/img/player_fall_right.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 res/img/player_jump.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 res/img/player_jump_left.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 res/img/player_jump_right.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 res/img/player_run.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 res/img/player_run_left.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 res/img/player_sprite.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 res/img/player_sprite_left.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 res/img/wall.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
317 changes: 243 additions & 74 deletions res/js/script.js

Large diffs are not rendered by default.

0 comments on commit 74cd3fa

Please sign in to comment.