twitch addon

This commit is contained in:
Tabby 2025-04-21 00:17:07 +10:00
parent 2cd7af98a1
commit 07de7179c9
254 changed files with 18420 additions and 1 deletions

6
example/ChatMessage.gd Normal file
View file

@ -0,0 +1,6 @@
class_name VSTChatMessage extends HBoxContainer
func set_chatter_msg(badges: String, chatter: VSTChatter):
$RichTextLabel.text = "%02d:%02d" %[chatter.date_time_dict["hour"], chatter.date_time_dict["minute"]] + " " + badges + " [b][color="+ chatter.tags.color_hex + "]" +chatter.tags.display_name +"[/color][/b]: " + chatter.message
queue_sort()