Table of Contents

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
Object
Component
Behaviour
MonoBehaviour
TwitchIntegration
Inherited Members

Fields

DebugMode

Enables detailed logging

[Header("General Settings")]
[Space]
[SerializeField]
public bool DebugMode

Field Value

bool

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

string

twitchIRCHostWebSocket

The Websocket-Server-URL used to connect to Chat in WebGL mode

[SerializeField]
public string twitchIRCHostWebSocket

Field Value

string

twitchIRCPortNative

The port of twitch's IRC

[SerializeField]
public int twitchIRCPortNative

Field Value

int

twitchPubSubAddress

The wss address to use to connect to Twitch's PubSub Edge

[Header("PubSub System")]
[Space]
[SerializeField]
public string twitchPubSubAddress

Field Value

string

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

TwitchChat

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; }

Property Value

TwitchPubSub