1
0
Fork 0
mirror of https://github.com/doukutsu-rs/doukutsu-rs synced 2024-12-04 10:52:48 +00:00

Compare commits

...

2 commits

Author SHA1 Message Date
Alula 084b1f09e2
reduce space width to fix textbox centering 2020-12-08 01:18:06 +01:00
Alula 71b1b79ea4
fix balrog cutscene fly out animation 2020-12-08 01:01:25 +01:00
2 changed files with 2 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 90 KiB

View file

@ -266,7 +266,7 @@ impl NPC {
self.vel_x = 0;
}
if self.vel_y < 0 {
if self.y < 0 {
self.npc_type = 0;
state.sound_manager.play_sfx(26);
state.quake_counter = 30;
@ -508,6 +508,7 @@ impl NPC {
}
}
println!("y: {}", self.y as f64 / 512.0);
if self.y < -32 * 0x200 {
self.npc_type = 0;
state.quake_counter = 30;