diary titles are capitalized again; main page of wiki is Blessfrey

This commit is contained in:
chimchooree
2024-02-20 11:18:39 -06:00
parent 8081086c03
commit e338af4e5b
10 changed files with 71 additions and 52 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
<!---->
<h1>Godot 3 tutorial - chat room using WebSocket </h1>
<h1>Godot 3 Tutorial - Chat Room Using WebSocket </h1>
#godot #webdev <br>
<br>
<p>Follow along to make your first mini WebSocket application in GDScript (with a little JSON). The client and the server will be two separate projects. I build upon the <a href="http://web.archive.org/web/20220928131714/http://www.narwalengineering.com/2018/07/01/godot-tutorial-simple-chat-room-using-multiplayer-api/">NetworkedMultiplayerENet chat room tutorial</a>(archive link) by <a href="https://www.deeproot.dev/">Miziziziz</a> and the <a href="https://docs.godotengine.org/en/stable/tutorials/networking/websocket.html">HTML5 and WebSocket tutorial in the Godot documentation</a>. </p>
@@ -300,7 +300,7 @@ func _connected(protocol = ""):
<hr>
<h2>Writing that chat room. </h2>
<h2>Writing that Chat Room. </h2>
<h3>Writing the UI. </h3>
@@ -505,7 +505,7 @@ func _on_data_received():
<hr>
<h2>Check over the finished scripts. </h2>
<h2>Check Over the Finished Scripts. </h2>
<p>You can see the finished project on my repo: <a href="https://git.socklab.moe/chimchooree/chatserver">server</a> and <a href="https://git.socklab.moe/chimchooree/chatclient">client</a>. </p>