From d469680850e05aac565db4146acfee25c9ff76e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Sun, 11 Feb 2024 22:08:11 +0300 Subject: [PATCH] improve twitch node descriptions --- classes/deck/nodes/twitch/twitch_account_info.gd | 2 +- classes/deck/nodes/twitch/twitch_add_eventsub_subscription.gd | 2 +- classes/deck/nodes/twitch/twitch_eventsub_event.gd | 2 +- classes/deck/nodes/twitch/twitch_join_chat.gd | 4 ++-- classes/deck/nodes/twitch/twitch_leave_chat.gd | 2 +- .../deck/nodes/twitch/twitch_remove_eventsub_subscription.gd | 2 +- classes/deck/nodes/twitch/twitch_request_user_info.gd | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/classes/deck/nodes/twitch/twitch_account_info.gd b/classes/deck/nodes/twitch/twitch_account_info.gd index 9478d03..f002c88 100644 --- a/classes/deck/nodes/twitch/twitch_account_info.gd +++ b/classes/deck/nodes/twitch/twitch_account_info.gd @@ -7,7 +7,7 @@ extends DeckNode func _init(): name = "Twitch Connected Account Info" node_type = name.to_snake_case() - description = "Accesses the Cached data for the Connected Account" + description = "Returns the data for the connected Twitch account." props_to_serialize = [] diff --git a/classes/deck/nodes/twitch/twitch_add_eventsub_subscription.gd b/classes/deck/nodes/twitch/twitch_add_eventsub_subscription.gd index 04b1732..7258f0f 100644 --- a/classes/deck/nodes/twitch/twitch_add_eventsub_subscription.gd +++ b/classes/deck/nodes/twitch/twitch_add_eventsub_subscription.gd @@ -9,7 +9,7 @@ var subscription_data : Twitch_Connection.EventSub_Subscription func _init(): name = "Twitch Add EventSub Subscription" node_type = name.to_snake_case() - description = "Adds a subscription to a specific Twitch EventSub Event with the given dictionary 'condition' for the data needed." + description = "Subscribes to a Twitch EventSub Event with the given dictionary 'condition' for the data needed." props_to_serialize = [] diff --git a/classes/deck/nodes/twitch/twitch_eventsub_event.gd b/classes/deck/nodes/twitch/twitch_eventsub_event.gd index 4b04f0e..b06fb3e 100644 --- a/classes/deck/nodes/twitch/twitch_eventsub_event.gd +++ b/classes/deck/nodes/twitch/twitch_eventsub_event.gd @@ -8,7 +8,7 @@ var cached_event_data : Dictionary func _init(): name = "Twitch EventSub Event" node_type = name.to_snake_case() - description = "Listens for a specific Event from Twitch EventSub" + description = "Listens for a specific Event from Twitch EventSub." props_to_serialize = [] diff --git a/classes/deck/nodes/twitch/twitch_join_chat.gd b/classes/deck/nodes/twitch/twitch_join_chat.gd index a162f22..ee45d30 100644 --- a/classes/deck/nodes/twitch/twitch_join_chat.gd +++ b/classes/deck/nodes/twitch/twitch_join_chat.gd @@ -7,7 +7,7 @@ extends DeckNode func _init(): name = "Twitch Join Chat" node_type = name.to_snake_case() - description = "Simple node to send a premade 'join' message to Twitch IRC allowing you to Join the given Channel and receive messages from it." + description = "Joins a Twitch channel." props_to_serialize = [] @@ -15,7 +15,7 @@ func _init(): add_input_port(DeckType.Types.STRING, "Channel", "field") # Adds Trigger for leaving the specified channel - add_input_port(DeckType.Types.ANY, "Leave Channel", "button") + add_input_port(DeckType.Types.ANY, "Join Channel", "button") diff --git a/classes/deck/nodes/twitch/twitch_leave_chat.gd b/classes/deck/nodes/twitch/twitch_leave_chat.gd index 58c663e..c053ab6 100644 --- a/classes/deck/nodes/twitch/twitch_leave_chat.gd +++ b/classes/deck/nodes/twitch/twitch_leave_chat.gd @@ -7,7 +7,7 @@ extends DeckNode func _init(): name = "Twitch Leave Chat" node_type = name.to_snake_case() - description = "Simple node to send a premade 'leave' message to Twitch IRC. Allowing you to leave the specified channel and stop receiving from it." + description = "Leaves a Twitch channel." props_to_serialize = [] diff --git a/classes/deck/nodes/twitch/twitch_remove_eventsub_subscription.gd b/classes/deck/nodes/twitch/twitch_remove_eventsub_subscription.gd index 03f17ba..c927e55 100644 --- a/classes/deck/nodes/twitch/twitch_remove_eventsub_subscription.gd +++ b/classes/deck/nodes/twitch/twitch_remove_eventsub_subscription.gd @@ -7,7 +7,7 @@ extends DeckNode func _init(): name = "Twitch Remove EventSub Subscription" node_type = name.to_snake_case() - description = "Removes the given EventSub Subscription by it's Type." + description = "Removes an EventSub Subscription by it's type." props_to_serialize = [] diff --git a/classes/deck/nodes/twitch/twitch_request_user_info.gd b/classes/deck/nodes/twitch/twitch_request_user_info.gd index b99e856..cd1319f 100644 --- a/classes/deck/nodes/twitch/twitch_request_user_info.gd +++ b/classes/deck/nodes/twitch/twitch_request_user_info.gd @@ -7,7 +7,7 @@ extends DeckNode func _init(): name = "Twitch Request User Info" node_type = name.to_snake_case() - description = "Requests to the Twitch API for the User info for the supplied Login or ID" + description = "Requests a Twitch User's information from the Twitch API." props_to_serialize = []