|
@@ -67,6 +67,14 @@ func start():
|
|
player.position = Vector2(6 * 64 + 32, 8 * 64 + 32)
|
|
player.position = Vector2(6 * 64 + 32, 8 * 64 + 32)
|
|
add_child(player)
|
|
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
|
|
# TODO Timer
|
|
get_tree().call_group("players", "_on_game_start")
|
|
get_tree().call_group("players", "_on_game_start")
|
|
|
|
|