Ajout de l'intégration twitch

This commit is contained in:
2026-06-23 23:38:20 +02:00
parent 4f93f7acaf
commit fcf8bfaa45
12 changed files with 305 additions and 16 deletions

View File

@@ -10,6 +10,7 @@ signal sound_changed(settings : SettingsData)
signal video_changed(settings : SettingsData)
signal game_changed(settings : SettingsData)
signal fov_changed(value : float)
signal twitch_changed(settings : SettingsData)
#region ------------------ Language ------------------
@@ -97,4 +98,16 @@ func close_help_container(help_container_name : String):
func open_help_container(help_container_name : String):
if help_container_name in closed_help_containers:
closed_help_containers.erase(help_container_name)
game_changed.emit(self)
game_changed.emit(self)
#region ------------------ Twitch ------------------
@export var activate_twitch_integration := false :
set(v):
activate_twitch_integration = v
twitch_changed.emit(self)
@export var twitch_channel := "" :
set(v):
twitch_channel = v
twitch_changed.emit(self)