diff --git a/assets/img/map/fishIdle.json b/assets/img/map/fishStill.json similarity index 100% rename from assets/img/map/fishIdle.json rename to assets/img/map/fishStill.json diff --git a/assets/img/map/fishIdle.png b/assets/img/map/fishStill.png similarity index 100% rename from assets/img/map/fishIdle.png rename to assets/img/map/fishStill.png diff --git a/src/entities/fish.rs b/src/entities/fish.rs index 4cc266e..7c2aef4 100644 --- a/src/entities/fish.rs +++ b/src/entities/fish.rs @@ -159,13 +159,14 @@ impl FishEntity { pub fn render(&mut self, context_2d: &mut RaylibMode2D, resources: &mut GlobalResources) { // Direction let direction = - Vector2::zero().angle_to(self.direction.normalized()) + (90.0 as f32).to_radians(); + (Vector2::zero().angle_to(self.direction.normalized())).to_degrees(); self.animation_counter += 1; // swimming - if self.following_player { + if !self.following_player { if self.animation_counter % 3 == 0 { + self.current_frame += 1; if self.current_frame == 8 { self.current_frame = 0; } diff --git a/src/resources.rs b/src/resources.rs index cee06c9..ee128e5 100644 --- a/src/resources.rs +++ b/src/resources.rs @@ -87,11 +87,11 @@ impl GlobalResources { fish_animation_idle: FrameAnimationWrapper::new( raylib.load_texture_from_image( &thread, - &Image::load_image("./assets/img/map/fishIdle.png")?, + &Image::load_image("./assets/img/map/fishStill.png")?, )?, Vector2 { x: 13.0, y: 9.0 }, 14, - 4, + 30, ), fish_animation_swim: FrameAnimationWrapper::new( raylib.load_texture_from_image(