Ajout de l'addon twitch

This commit is contained in:
2026-06-23 23:28:12 +02:00
parent a7dcd6d725
commit 24d19310b5
47 changed files with 1892 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
class_name VSTEmoteLocation
extends RefCounted
var id : String
var start : int
var end : int
func _init(emote_id, start_idx, end_idx):
self.id = emote_id
self.start = start_idx
self.end = end_idx
static func smaller(a: VSTEmoteLocation, b: VSTEmoteLocation):
return a.start < b.start