Initial commit

This commit is contained in:
2020-10-01 19:53:08 +02:00
parent dea479a784
commit ace4593b46
82 changed files with 2570 additions and 0 deletions

11
client.gd Normal file
View File

@@ -0,0 +1,11 @@
extends Node
func _on_Create_pressed():
print(get_tree().network_peer)
if(get_tree().get_network_peer() == null):
Networking.start_server()
func _on_Join_pressed():
if(get_tree().get_network_peer() == null):
Networking.connect_to_server()