Added tesla jumps

This commit is contained in:
2025-11-13 17:01:35 +03:00
parent aca8cb7b4f
commit 58f466d5aa
11 changed files with 41 additions and 9 deletions
+2 -2
View File
@@ -71,8 +71,8 @@ func _on_body_entered(body: Node2D) -> void:
var health_component : Health = body.find_child("Health")
if health_component and health_component.has_method("apply_damage"):
health_component.apply_damage(damage)
_process_hit_for_projectile()
_process_hit_for_projectile(body)
func _process_hit_for_projectile() -> void:
func _process_hit_for_projectile(_collided_body: Node2D) -> void:
queue_free()