Parcourir la source

Add a third player

DricomDragon il y a 5 ans
Parent
commit
8685ae007d
1 fichiers modifiés avec 8 ajouts et 0 suppressions
  1. 8 0
      Game.gd

+ 8 - 0
Game.gd

@@ -67,6 +67,14 @@ func start():
 	player.position = Vector2(6 * 64 + 32, 8 * 64 + 32)
 	add_child(player)
 
+	# Player 3
+	player = playerScene.instance()
+	player.grid = levelCurrentNode
+	player.turn_left_action = "p3_left"
+	player.turn_right_action = "p3_right"
+	player.position = Vector2(8 * 64 + 32, 8 * 64 + 32)
+	add_child(player)
+
 	# TODO Timer
 	get_tree().call_group("players", "_on_game_start")