Merge remote-tracking branch 'origin/assets' into fish_fix

This commit is contained in:
Evan Pratten 2021-04-25 13:30:17 -04:00
commit e7cd020666
4 changed files with 5 additions and 4 deletions

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -159,13 +159,14 @@ impl FishEntity {
pub fn render(&mut self, context_2d: &mut RaylibMode2D<RaylibDrawHandle>, 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;
}

View File

@ -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(