stun check
This commit is contained in:
parent
707543cf55
commit
09b2752d78
@ -11,7 +11,7 @@ pub struct JellyFish {
|
|||||||
pub stunned_timer: f64,
|
pub stunned_timer: f64,
|
||||||
|
|
||||||
#[serde(skip)]
|
#[serde(skip)]
|
||||||
pub do_stun_player: bool
|
pub do_stun_player: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl JellyFish {}
|
impl JellyFish {}
|
||||||
@ -37,22 +37,20 @@ impl EnemyBase for JellyFish {
|
|||||||
resources.jellyfish_animation_attack.draw(
|
resources.jellyfish_animation_attack.draw(
|
||||||
context_2d,
|
context_2d,
|
||||||
Vector2 {
|
Vector2 {
|
||||||
x: self.position.x
|
x: self.position.x,
|
||||||
,
|
y: self.position.y + (2.0 * v_trans as f32),
|
||||||
y: self.position.y + (2.0 * v_trans as f32)
|
|
||||||
,
|
|
||||||
},
|
},
|
||||||
0.0,
|
0.0,
|
||||||
);
|
);
|
||||||
self.do_stun_player = resources.jellyfish_animation_attack.get_current_frame_id(context_2d) == 13;
|
self.do_stun_player = resources
|
||||||
|
.jellyfish_animation_attack
|
||||||
|
.get_current_frame_id(context_2d)
|
||||||
|
== 13;
|
||||||
}
|
}
|
||||||
|
|
||||||
fn handle_logic(&mut self, player: &mut Player, dt: f64) {
|
fn handle_logic(&mut self, player: &mut Player, dt: f64) {
|
||||||
|
|
||||||
// Handle stunning the player
|
// Handle stunning the player
|
||||||
if self.do_stun_player {
|
if self.do_stun_player {}
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn handle_getting_attacked(&mut self) {
|
fn handle_getting_attacked(&mut self) {
|
||||||
|
Reference in New Issue
Block a user