From eb64045e41b428c4244edd89e4698c1f1ac6ec5b Mon Sep 17 00:00:00 2001 From: Mario Steele Date: Tue, 10 Mar 2026 10:31:16 -0500 Subject: [PATCH] Updated OverlayPlugin Added send_message() function, more functionality to be implemented. --- lib/scripting/overlay_plugin.gd | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/scripting/overlay_plugin.gd b/lib/scripting/overlay_plugin.gd index 44512ac7..237c6f7d 100644 --- a/lib/scripting/overlay_plugin.gd +++ b/lib/scripting/overlay_plugin.gd @@ -19,6 +19,9 @@ func _get_script_name() -> String: return self.get_script().get_global_name() #endregion +func send_message(msg: String) -> void: + _twitch.send_message(msg) + func send_notification(message: String) -> void: EventManager.test_notification(message)