commit
18799b6ffd
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 |
@ -49,5 +49,5 @@
|
|||||||
188
|
188
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"animation_fps": 15
|
"animation_fps": 23
|
||||||
}
|
}
|
||||||
|
@ -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(),
|
||||||
|
@ -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,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user