JanGodotGame/scripts/gameController.gd

39 lines
836 B
GDScript3
Raw Normal View History

2025-01-07 01:34:02 +00:00
extends Node2D
2025-01-20 02:04:07 +00:00
var boxTotal = 3
2025-01-07 01:51:49 +00:00
var timer:= Timer.new()
@export var secondCount= 15
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.
func _process(delta: float) -> void:
pass
func _on_trigger(effect: Variant, body) -> void:
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")
2025-01-07 01:51:49 +00:00
boxTotal -= 1
2025-01-07 01:34:02 +00:00
body.queue_free()
2025-01-07 01:51:49 +00:00
if boxTotal <=0:
print("A winner is you")
get_tree().reload_current_scene()