18 lines
473 B
GDScript
18 lines
473 B
GDScript
extends Area3D
|
|
|
|
@export var damage_multiplexer: float = 2.0
|
|
|
|
signal body_part_hit(damage: int)
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
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
|
|
|
|
func hit(base_damage: int):
|
|
var final_damage = round(base_damage * damage_multiplexer)
|
|
emit_signal("body_part_hit", final_damage)
|