oh-my-git/test.gd

13 lines
138 B
GDScript3
Raw Normal View History

2020-09-15 09:30:19 +02:00
extends Node
func _ready():
pass
func data(s):
print(s)
func send(new_text):
print("sending "+new_text)
$TCPServer.send(new_text)