Fix kiwi hitbox/item slot changing after jumping

main
Olivier 'reivilibre' 2023-01-08 23:33:49 +00:00
parent 1585a2d7b3
commit e528126fd2
1 changed files with 2 additions and 2 deletions

View File

@ -100,8 +100,8 @@ func _crush_jump():
if is_crush_jumping:
return
is_crush_jumping = true
$Tween.interpolate_property($AnimatedSprite, "position:y", 0, -72, 0.3, Tween.TRANS_QUAD, Tween.EASE_OUT)
$Tween.interpolate_property($AnimatedSprite, "position:y", -72, 0, 0.3, Tween.TRANS_QUAD, Tween.EASE_IN, 0.3)
$Tween.interpolate_property($AnimatedSprite, "position:y", -17, -72, 0.3, Tween.TRANS_QUAD, Tween.EASE_OUT)
$Tween.interpolate_property($AnimatedSprite, "position:y", -72, -17, 0.3, Tween.TRANS_QUAD, Tween.EASE_IN, 0.3)
$Tween.start()