overlap.gd 504 B

123456789101112131415161718192021
  1. extends Area2D
  2. # Called when the node enters the scene tree for the first time.
  3. func _ready():
  4. pass # Replace with function body.
  5. # Called every frame. 'delta' is the elapsed time since the previous frame.
  6. func _process(delta):
  7. pass
  8. func _unhandled_input(event: InputEvent) -> void:
  9. if event is InputEventMouseMotion:
  10. var mouseMotion = event as InputEventMouseMotion
  11. position = mouseMotion.position
  12. func _on_body_entered(body: Node2D) -> void:
  13. print(body.get_name(), " overlaps with me")