GodotCourse/week1/GodotSpeedRun/scripts/gamecontroller.gd

36 lines
963 B
GDScript3
Raw Normal View History

2024-07-15 17:09:25 +00:00
extends Node2D
2025-02-24 19:16:36 +00:00
var totalCrates = 2 #This will be updated in the future, see SceneManager
var cratesDestroyed = 0
2025-02-24 16:07:59 +00:00
var timeLimit = 10
var timer:= Timer.new()
2024-07-15 17:09:25 +00:00
# Called when the node enters the scene tree for the first time.
func _ready():
2025-02-24 16:07:59 +00:00
add_child(timer)
timer.wait_time = 1
timer.one_shot = false
timer.connect("timeout", secondCounter)
timer.start()
2024-07-15 17:09:25 +00:00
2025-02-24 16:07:59 +00:00
func secondCounter():
timeLimit -= 1
if timeLimit <=0:
print("You lose baby!")
get_tree().reload_current_scene()
2024-07-15 17:09:25 +00:00
2025-02-24 16:07:59 +00:00
func _on_area_2d_areatrigger(effect, body):
2025-02-24 19:16:36 +00:00
# check to ensure the collision is with the crates (RigidBodies)
# A CharacterBody2D should not trigger a reaction to the collision
2025-02-24 16:07:59 +00:00
if body is RigidBody2D:
2025-02-24 19:16:36 +00:00
# crate entered trigger
# handle effects
match effect:
"destroy":
cratesDestroyed +=1
body.queue_free() # destroy the crate - again will move to SceneManager
if cratesDestroyed>=totalCrates:
print("You win baby!")
get_tree().reload_current_scene()