|
@@ -1,7 +1,7 @@
|
|
|
extends Node2D
|
|
|
|
|
|
onready var cam = $MainCamera
|
|
|
-onready var timer = $StartTimer
|
|
|
+onready var start_timer = $StartTimer
|
|
|
|
|
|
# Used to test a level in creation
|
|
|
export (String) var levelToLoop
|
|
@@ -34,6 +34,7 @@ func _ready():
|
|
|
player.turn_right_action = playerActionsRight[k]
|
|
|
player.position = Vector2()
|
|
|
add_child(player)
|
|
|
+ start_timer.connect("timeout", player, "_on_round_start")
|
|
|
|
|
|
func load_level(name):
|
|
|
var fullName = "res://Levels/" + name + ".tscn"
|
|
@@ -81,10 +82,7 @@ func create_game():
|
|
|
p[k].spawn(levelCurrentNode, spawners[k].position, spawners[k].rotation_degrees)
|
|
|
|
|
|
# Delay start
|
|
|
- timer.start()
|
|
|
-
|
|
|
-func _on_round_start():
|
|
|
- get_tree().call_group("players", "_on_round_start")
|
|
|
+ start_timer.start()
|
|
|
|
|
|
func _on_round_end():
|
|
|
get_tree().call_group("players", "_on_round_end")
|