|
@@ -39,6 +39,7 @@ func _on_connect_pressed():
|
|
|
multiplayer.multiplayer_peer = peer
|
|
|
start_game()
|
|
|
|
|
|
+
|
|
|
func start_game():
|
|
|
# Hide the UI and unpause to start the game.
|
|
|
$UI.hide()
|
|
@@ -46,7 +47,7 @@ func start_game():
|
|
|
# Only change level on the server.
|
|
|
# Clients will instantiate the level via the spawner.
|
|
|
if multiplayer.is_server():
|
|
|
- change_level.call_deferred(load("res://level.tscn"))
|
|
|
+ change_level.call_deferred(load("res://run/levels/flatland/level.tscn"))
|
|
|
|
|
|
|
|
|
# Call this function deferred and only on the main authority (server).
|
|
@@ -59,9 +60,10 @@ func change_level(scene: PackedScene):
|
|
|
# Add new level.
|
|
|
level.add_child(scene.instantiate())
|
|
|
|
|
|
+
|
|
|
# The server can restart the level by pressing HOME.
|
|
|
func _input(event):
|
|
|
if not multiplayer.is_server():
|
|
|
return
|
|
|
if event.is_action("ui_home") and Input.is_action_just_pressed("ui_home"):
|
|
|
- change_level.call_deferred(load("res://level.tscn"))
|
|
|
+ change_level.call_deferred(load("res://run/levels/flatland/level.tscn"))
|