Godot upload

This commit is contained in:
csd4ni3l
2026-02-28 13:55:12 +01:00
commit 738a94093a
94 changed files with 1902 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
extends Timer
func _on_timeout() -> void:
Globals.last_fish_per_second = Globals.fish_per_second
Globals.fish_per_second = 0
if Globals.all_hit > 0:
Globals.last_hit_percent = min((float(Globals.successful_hit) / float(Globals.all_hit)) * 100, 100.0)
else:
Globals.last_hit_percent = 0
Globals.successful_hit = 0
Globals.all_hit = 0