2025-01-26 09:59:59 +00:00
|
|
|
extends Area3D
|
|
|
|
|
2025-01-28 09:51:45 +00:00
|
|
|
@export var damage_multiplexer: float = 2.0
|
2025-01-26 09:59:59 +00:00
|
|
|
|
2025-01-28 09:51:45 +00:00
|
|
|
signal body_part_hit(damage: int)
|
2025-01-26 09:59:59 +00:00
|
|
|
# Called when the node enters the scene tree for the first time.
|
2025-01-26 13:39:11 +00:00
|
|
|
|
2025-01-26 09:59:59 +00:00
|
|
|
func _ready() -> void:
|
|
|
|
pass # Replace with function body.
|
|
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
|
|
func _process(delta: float) -> void:
|
|
|
|
pass
|
|
|
|
|
2025-01-28 09:51:45 +00:00
|
|
|
func hit(base_damage: int):
|
|
|
|
var final_damage = round(base_damage * damage_multiplexer)
|
|
|
|
emit_signal("body_part_hit", final_damage)
|