mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
improve twitch node descriptions
This commit is contained in:
parent
34966d4bcf
commit
d469680850
7 changed files with 8 additions and 8 deletions
|
@ -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 = []
|
||||
|
||||
|
|
|
@ -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 = []
|
||||
|
||||
|
|
|
@ -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 = []
|
||||
|
||||
|
|
|
@ -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")
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -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 = []
|
||||
|
||||
|
|
|
@ -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 = []
|
||||
|
||||
|
|
|
@ -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 = []
|
||||
|
||||
|
|
Loading…
Reference in a new issue