28 lines
525 B
GDScript
28 lines
525 B
GDScript
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_areatrigger(body) -> void:
|
|
print("game conroller knows about crate destruction")
|
|
cratesdestroyed +=1
|
|
totalcrates -=1
|
|
#kill
|
|
body.queue_free()
|
|
if totalcrates <=0:
|
|
print("you won")
|
|
|