2025-01-10 20:42:10 +00:00
|
|
|
extends Node2D
|
|
|
|
var totalBoxes = 3
|
|
|
|
var timer:= Timer.new()
|
|
|
|
var countdown = 10
|
2025-01-21 01:44:30 +00:00
|
|
|
var totalCrates = 0
|
|
|
|
|
|
|
|
signal destroyBox(body)
|
|
|
|
|
2025-01-10 20:42:10 +00:00
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
func _ready():
|
|
|
|
add_child(timer)
|
|
|
|
timer.wait_time = 1
|
|
|
|
timer.one_shot = false
|
|
|
|
timer.connect("timeout", secondCounter)
|
2025-01-14 00:30:20 +00:00
|
|
|
# timer.start()
|
2025-01-10 20:42:10 +00:00
|
|
|
|
|
|
|
func secondCounter():
|
|
|
|
countdown -=1
|
|
|
|
if countdown <=0:
|
|
|
|
print("you lose")
|
|
|
|
get_tree().reload_current_scene()
|
|
|
|
|
|
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
|
|
func _process(delta):
|
|
|
|
pass
|
|
|
|
|
|
|
|
func _on_trigger_alert(body):
|
|
|
|
totalBoxes -=1
|
|
|
|
body.queue_free()
|
|
|
|
if totalBoxes <=0:
|
|
|
|
print("you won")
|
|
|
|
get_tree().reload_current_scene()
|
2025-01-14 01:58:52 +00:00
|
|
|
|
|
|
|
func bulletHit(body):
|
|
|
|
print("game controller knows bullet hit something")
|
|
|
|
if body.is_in_group("destructable"):
|
2025-01-21 01:44:30 +00:00
|
|
|
destroyBox.emit(body)
|
|
|
|
|
|
|
|
func coutnCrates(value):
|
|
|
|
totalCrates = value
|