diff --git a/flumi/Scripts/Constants.gd b/flumi/Scripts/Constants.gd index c1fd4f4..e2aeb31 100644 --- a/flumi/Scripts/Constants.gd +++ b/flumi/Scripts/Constants.gd @@ -1569,6 +1569,219 @@ var HTML_CONTENTa = """
""".to_utf8_buffer() var HTML_CONTENT = """ +local socket = WebSocket:new(url)
socket:on('open', function() ... end)
socket:on('message', function(event) print(event.data) end)
socket:send('Hello Server!')
socket:close()
Initializing...+