FebGame/febfabgame/Scripts/gamecontroller.gd

26 lines
526 B
GDScript3
Raw Normal View History

2025-02-25 02:10:45 +00:00
extends Node2D
# Game Data
var totalCrates = 4
var cratesDestroyed = 0
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass
func _on_trigger_area_trigger(body) -> void:
print("game controller knows about crate destruction")
cratesDestroyed +=1
totalCrates -=1
#kill em
body.queue_free()
if totalCrates <=0:
print("win")