cool progress

This commit is contained in:
Tabby 2025-04-21 01:11:27 +10:00
parent 07de7179c9
commit 341c91742c
14 changed files with 52 additions and 16 deletions

View file

@ -1 +1,11 @@
extends Node
func _ready() -> void:
VerySimpleTwitch.get_token_and_login_chat()
VerySimpleTwitch.chat_message_received.connect(print_chatter_message)
func _process(delta: float) -> void:
pass
func print_chatter_message(chatter: VSTChatter):
print("Message received from %s: %s" % [chatter.tags.display_name, chatter.message])