miggor-StreamGraph/classes/deck/nodes/twitch/twitch_leave_chat.gd

31 lines
714 B
GDScript3
Raw Normal View History

2024-01-26 11:26:22 +01:00
# (c) 2023-present Eroax
# (c) 2023-present Yagich
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
extends DeckNode
func _init():
name = "Twitch Leave Chat"
node_type = name.to_snake_case()
2024-02-11 20:08:11 +01:00
description = "Leaves a Twitch channel."
2024-01-26 11:26:22 +01:00
props_to_serialize = []
# Adds Input port for channel name
add_input_port(DeckType.Types.STRING, "Channel", "field")
# Adds Trigger for leaving the specified channel
add_input_port(DeckType.Types.ANY, "Leave Channel", "button")
func _receive(to_input_port, _data: Variant, _extra_data: Array = []):
2024-01-26 11:26:22 +01:00
if to_input_port != 1:
return
Connections.twitch.leave_channel(await resolve_input_port_value_async(0))