Is a lightweight IRC client component for use with the Unity Engine.
In order to connect to Twitch IRC, you must have three pieces of information:
- The name of channel that you want to join.
- A Twitch account.
- Oauth token from API or from a site using it: www.twitchapps.com/tmi
Enter your twitch name, oauth token and the name of the channel you want to join in the inspector of TwitchIRC. Drop a component that utilizes TwitchIRC.cs or try the TwitchChatExample.cs chat component.
Sending:
- TwitchIRC.SendMsg(string msg)
- TwitchIRC.SendCommand(string cmd)
Reading: Add a listener via:
- TwitchIRC.messageRecievedEvent.AddListener(function(string))
For an example see TwitchChatExample.cs
- Please tell me if you find any!