2025-01-07 01:34:02 +00:00
|
|
|
extends Node2D
|
|
|
|
|
2025-01-07 01:51:49 +00:00
|
|
|
var timer:= Timer.new()
|
2025-01-28 19:51:19 +00:00
|
|
|
@export var secondCount= 99999999
|
2025-01-21 01:44:35 +00:00
|
|
|
|
|
|
|
var totalCrates := 0
|
|
|
|
|
|
|
|
signal destroyBox
|
2025-01-07 01:34:02 +00:00
|
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
func _ready() -> void:
|
2025-01-07 01:51:49 +00:00
|
|
|
add_child(timer)
|
|
|
|
timer.wait_time = 1
|
|
|
|
timer.one_shot = false
|
|
|
|
timer.connect("timeout", secondCounter)
|
|
|
|
timer.start()
|
2025-01-07 01:34:02 +00:00
|
|
|
|
2025-01-07 01:51:49 +00:00
|
|
|
func secondCounter():
|
|
|
|
print("time left: ", secondCount)
|
|
|
|
secondCount -=1
|
|
|
|
if secondCount <= 0:
|
|
|
|
print("A loser is you")
|
|
|
|
get_tree().reload_current_scene()
|
2025-01-07 01:34:02 +00:00
|
|
|
|
2025-01-07 01:51:49 +00:00
|
|
|
|
2025-01-07 01:34:02 +00:00
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
2025-01-21 01:44:35 +00:00
|
|
|
func _process(_delta: float) -> void:
|
2025-01-07 01:34:02 +00:00
|
|
|
pass
|
|
|
|
|
2025-01-21 01:44:35 +00:00
|
|
|
func _on_trigger(_effect: Variant, body) -> void:
|
2025-01-07 01:34:02 +00:00
|
|
|
print("they were triggered!")
|
2025-01-07 01:51:49 +00:00
|
|
|
if body is RigidBody2D:
|
2025-01-07 01:34:02 +00:00
|
|
|
print("crate spotted")
|
|
|
|
body.queue_free()
|
2025-01-21 01:44:35 +00:00
|
|
|
|
2025-01-07 01:51:49 +00:00
|
|
|
|
2025-01-21 01:44:35 +00:00
|
|
|
func bulletHit(body):
|
|
|
|
print("Game controller knows bullet hit something")
|
|
|
|
if body.is_in_group("destructables"):
|
|
|
|
|
|
|
|
destroyBox.emit(body)
|
2025-01-07 01:51:49 +00:00
|
|
|
|
2025-01-21 01:44:35 +00:00
|
|
|
func countCrates(value):
|
|
|
|
totalCrates = value
|