Skip to content

Commit 4f1819a

Browse files
Update README.md
1 parent 00339dc commit 4f1819a

File tree

7 files changed

+5
-1
lines changed

7 files changed

+5
-1
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
<img src="misc/menu.png">
66
<img src="misc/dead.png">
7+
<img src="misc/gameplay-1.png">
8+
<img src="misc/gameplay-2.png">
9+
Call of Ferris also comes with super hot slow motion for great bullet time and accurecy
710

811
## Thanks
912
- @s-mv for almost all of the assets!

misc/dead.png

3.15 KB
Loading

misc/gameplay-1.png

29.1 KB
Loading

misc/gameplay-2.png

32.2 KB
Loading

misc/menu.png

671 KB
Loading

src/components/player.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub struct Player {
2323

2424
gravity: f32,
2525
velocity: f32,
26-
going_boom: bool,
26+
pub going_boom: bool,
2727
lerp_to: Option<f32>,
2828
direction: Direction,
2929
}

src/game.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ impl Game {
152152
let mut player = player.expect("No player found!");
153153

154154
player.pos_y += 40.;
155+
player.going_boom = true;
155156

156157
camera.move_to(Vec2::new(player.pos_x, player.pos_y));
157158

0 commit comments

Comments
 (0)