1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2024-11-21 15:44:23 +00:00

Remove debug logging from CursorDetector

This commit is contained in:
Steffo 2024-04-19 01:55:25 +02:00
parent 3d5bb824b7
commit ed6047834a
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -20,9 +20,5 @@ func _on_body_exited(body: Node2D) -> void:
mouse_inside = true
cursor_exited.emit(body)
func _on_cursor_entered(cursor: Cursor) -> void:
Log.p(self, "Cursor entered: %s" % cursor)
func _on_cursor_exited(cursor: Cursor) -> void:
Log.p(self, "Cursor exited: %s" % cursor)
func log_cursor(cursor: Cursor) -> void:
Log.p(self, "Cursor: %s" % cursor)