40 lines
966 B
GDScript
40 lines
966 B
GDScript
class_name GameController 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(effect, body) -> void:
|
|
print("Do effect "+effect)
|
|
match effect:
|
|
"destroy":
|
|
#write code to destroy
|
|
if body is Crate:
|
|
%SceneManager.destroy(body)
|
|
cratesDestroyed +=1
|
|
"powerup":
|
|
if body is Player:
|
|
print("power up the player")
|
|
|
|
func bulletHit(body):
|
|
print("Gamecontroller knows bullet hit")
|
|
if body is Crate:
|
|
print("You hit a crate")
|
|
cratesDestroyed +=1
|
|
%SceneManager.destroy(body)
|
|
print("Crates Remaining :: "+str(totalCrates - cratesDestroyed))
|
|
|
|
func numberOfCrates(value):
|
|
totalCrates = value
|
|
print("Game Controller knows crates "+str(totalCrates) )
|