浏览代码

Add a third player

DricomDragon 5 年之前
父节点
当前提交
8685ae007d
共有 1 个文件被更改,包括 8 次插入0 次删除
  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")