Updated OverlaySettings

Removed General Auto Connect, and replaced it with Auto Connect for
Twitch and OBS, Added OBS Host information.  Added Script Storage
variable, to store / fetch Plugin settings.
This commit is contained in:
Mario Steele 2026-02-28 02:55:16 -06:00
parent 913fa6b190
commit 491bc94c0d

View file

@ -1,4 +1,9 @@
extends Resource extends Resource
class_name OverlaySettings class_name OverlaySettings
@export var auto_connect: bool = false @export var auto_connect_twitch: bool = false
@export var auto_connect_obs: bool = false
@export var obs_host: String = "localhost"
@export var obs_port: int = 4455
@export var obs_pass: String = ""
@export var script_storage: Dictionary