Class TwitchIntegration
- Namespace
- Firesplash.UnityAssets.TwitchIntegration
- Assembly
- Firesplash.UnityAssets.TwitchIntegration.dll
This is the main behavior used to communicate with twitch
[DisallowMultipleComponent]
[AddComponentMenu("Firesplash Entertainment/Twitch Integration/Twitch Integration Manager")]
public class TwitchIntegration : MonoBehaviour
- Inheritance
-
ObjectComponentBehaviourMonoBehaviourTwitchIntegration
- Inherited Members
Fields
DebugMode
Enables detailed logging
[Header("General Settings")]
[Space]
[SerializeField]
public bool DebugMode
Field Value
twitchIRCHostNative
The host name to connect to IRC in native mode (FQDN)
[Header("IRC System")]
[Space]
[Space]
[Header("changing these values using scripts.")]
[Header("Read the documentation before")]
[Header("WARNING:")]
[SerializeField]
public string twitchIRCHostNative
Field Value
twitchIRCHostWebSocket
The Websocket-Server-URL used to connect to Chat in WebGL mode
[SerializeField]
public string twitchIRCHostWebSocket
Field Value
twitchIRCPortNative
The port of twitch's IRC
[SerializeField]
public int twitchIRCPortNative
Field Value
twitchPubSubAddress
The wss address to use to connect to Twitch's PubSub Edge
[Header("PubSub System")]
[Space]
[SerializeField]
public string twitchPubSubAddress
Field Value
Properties
Chat
Access the Chat integration Warning: First use creates a connection to twitch. You can not alter the Connect-Parameters after connecting.
public TwitchChat Chat { get; }
Property Value
PubSub
Access the Chat integration Warning: First use creates a connection to twitch. You can not alter the Connect-Parameters after connecting.
public TwitchPubSub PubSub { get; }