Initial commit
This commit is contained in:
10
client/Client.gd
Normal file
10
client/Client.gd
Normal file
@ -0,0 +1,10 @@
|
||||
extends Node
|
||||
|
||||
const PLAYER = preload("res://player/Player.tscn")
|
||||
var udp := PacketPeerUDP.new()
|
||||
|
||||
func _ready():
|
||||
udp.connect_to_host("127.0.0.1", 4242)
|
||||
var player = PLAYER.instantiate()
|
||||
add_child(player)
|
||||
print("Ready.")
|
Reference in New Issue
Block a user