Merge pull request #52 from Ewpratten/new_player

New player animation
This commit is contained in:
Evan Pratten 2021-10-03 11:30:39 -07:00 committed by GitHub
commit 18799b6ffd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 138 KiB

After

Width:  |  Height:  |  Size: 46 KiB

View File

@ -49,5 +49,5 @@
188 188
] ]
}, },
"animation_fps": 15 "animation_fps": 23
} }

View File

@ -40,13 +40,13 @@ impl MainCharacter {
movement_force: Vector2::zero(), movement_force: Vector2::zero(),
velocity: Vector2::zero(), velocity: Vector2::zero(),
base_velocity: Vector2::new(0.0, GRAVITY_PPS), base_velocity: Vector2::new(0.0, GRAVITY_PPS),
size: Vector2::new(60.0, 100.0), size: Vector2::new(85.0, 100.0),
sprite_sheet: AnimatedSpriteSheet::new( sprite_sheet: AnimatedSpriteSheet::new(
sprite_sheet, sprite_sheet,
Vector2::new(300.0, 300.0), Vector2::new(258.0, 277.0),
3, 4,
8, 15,
6, 0,
), ),
current_state: CharacterState::default(), current_state: CharacterState::default(),
state_set_timestamp: Utc::now(), state_set_timestamp: Utc::now(),

View File

@ -22,7 +22,7 @@ pub fn render_character_in_camera_space(
// Calculate the frame ID to render // Calculate the frame ID to render
let frame_id = match player.current_state { let frame_id = match player.current_state {
crate::character::CharacterState::Jumping => 4, crate::character::CharacterState::Jumping => 6,
_ => (frames_since_state_change % player.sprite_sheet.sprite_count as f32).floor() as usize, _ => (frames_since_state_change % player.sprite_sheet.sprite_count as f32).floor() as usize,
}; };