twitch integration addon

This commit is contained in:
Clevertop 2024-05-18 12:40:43 +10:00
parent 558d01b6aa
commit e5a055c667
21 changed files with 1116 additions and 0 deletions

6
example/LineEdit.gd Normal file
View file

@ -0,0 +1,6 @@
extends LineEdit
func _input(event : InputEvent):
if (event is InputEventKey):
if (event.pressed && event.keycode == KEY_ENTER):
%Button._pressed()