added the game

This commit is contained in:
JHDev2006
2025-09-13 16:30:32 +01:00
parent 5ef689109b
commit 3773bdaf64
3616 changed files with 263702 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
extends Node2D
var can_kill := false
func _ready() -> void:
await get_tree().create_timer(0.5, false).timeout
can_kill = true
func _physics_process(delta: float) -> void:
global_position.y -= 32 * delta
if global_position.y < -176:
queue_free()
elif $WaterDetection.get_overlapping_bodies().is_empty() and can_kill:
queue_free()