fish??
This commit is contained in:
parent
b1a1b2e105
commit
67d76dab08
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
@ -159,13 +159,14 @@ impl FishEntity {
|
|||||||
pub fn render(&mut self, context_2d: &mut RaylibMode2D<RaylibDrawHandle>, resources: &mut GlobalResources) {
|
pub fn render(&mut self, context_2d: &mut RaylibMode2D<RaylibDrawHandle>, resources: &mut GlobalResources) {
|
||||||
// Direction
|
// Direction
|
||||||
let 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;
|
self.animation_counter += 1;
|
||||||
|
|
||||||
// swimming
|
// swimming
|
||||||
if self.following_player {
|
if !self.following_player {
|
||||||
if self.animation_counter % 3 == 0 {
|
if self.animation_counter % 3 == 0 {
|
||||||
|
self.current_frame += 1;
|
||||||
if self.current_frame == 8 {
|
if self.current_frame == 8 {
|
||||||
self.current_frame = 0;
|
self.current_frame = 0;
|
||||||
}
|
}
|
||||||
|
@ -83,11 +83,11 @@ impl GlobalResources {
|
|||||||
fish_animation_idle: FrameAnimationWrapper::new(
|
fish_animation_idle: FrameAnimationWrapper::new(
|
||||||
raylib.load_texture_from_image(
|
raylib.load_texture_from_image(
|
||||||
&thread,
|
&thread,
|
||||||
&Image::load_image("./assets/img/map/fishIdle.png")?,
|
&Image::load_image("./assets/img/map/fishStill.png")?,
|
||||||
)?,
|
)?,
|
||||||
Vector2 { x: 13.0, y: 9.0 },
|
Vector2 { x: 13.0, y: 9.0 },
|
||||||
14,
|
14,
|
||||||
4,
|
30,
|
||||||
),
|
),
|
||||||
fish_animation_swim: FrameAnimationWrapper::new(
|
fish_animation_swim: FrameAnimationWrapper::new(
|
||||||
raylib.load_texture_from_image(
|
raylib.load_texture_from_image(
|
||||||
|
Reference in New Issue
Block a user