online multiplayer chess game (note server currently down)
1
2
3
4
5
6
7
8
9
10
11
12
|
extends LineEdit
class_name Restrict
func _on_text_changed(new_text: String):
var pos = caret_position
text = new_text.strip_edges().strip_escapes()
caret_position = pos
func _ready():
connect("text_changed", self, "_on_text_changed")
|