7 lines
165 B
GDScript3
Raw Normal View History

2024-02-13 10:38:26 +01:00
extends Area3D
func on_body_entered(body: Node3D):
var health := body.get_node_or_null("Health") as HealthComponent
if health:
2024-02-13 23:49:58 +01:00
health.take_damage(Hit.new(100))