Browse Source

Remove extra start callback in Game script

Directly connect timer to players.
DricomDragon 4 years ago
parent
commit
9ba244b146
2 changed files with 3 additions and 6 deletions
  1. 3 5
      Game.gd
  2. 0 1
      Game.tscn

+ 3 - 5
Game.gd

@@ -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")

+ 0 - 1
Game.tscn

@@ -26,4 +26,3 @@ align = 1
 __meta__ = {
 "_edit_use_anchors_": false
 }
-[connection signal="timeout" from="StartTimer" to="." method="_on_round_start"]