unity-twitch-chat-interactions

A Unity tool that will allow you to easily implement Twitch chat commands into your game!

MIT License

Stars
23
Committers
4

Bot releases are visible (Hide)

unity-twitch-chat-interactions - v1.32 Latest Release

Published by danqzq 10 months ago

  • Fixed commands without arguments not working [Issue #10]
  • Fixed Mac Support issue on Application.OpenURL [Issue #11]
  • Added a warning for suggesting to add ports in case of http://localhost/ being occupied [Issue #12]
  • Added an error message to show up when "/" is not appended at the end the redirect URI

Kudos to EliJArmstrong for finding issues and contributing! 🙌

unity-twitch-chat-interactions - v1.31

Published by danqzq about 1 year ago

  • Fixed TwitchUser not showing up as a valid argument in the command list window
  • Fixed Twitch Client ID help box not going away when filling up the Client ID field
unity-twitch-chat-interactions - v1.3

Published by danqzq about 1 year ago

  • Added a way to send messages to the chat from the client:
TwitchManager.SendChatMessage(message)
  • You can now access which user is calling a command by setting the first parameter of type TwitchUser for your command function:
[TwitchCommand("test")]
public void Test(TwitchUser user, string msg)
{
    Debug.Log($"{user.displayname} says {msg}");
}
  • The TwitchUser struct has been updated (fixed some values not changing like the user id and room id)
  • Fixed a bug where changes applied to the Twitch Settings were not getting saved.
unity-twitch-chat-interactions - v1.2

Published by danqzq over 1 year ago

  • Integrated keep alive (PONG response on PING) [by Hoier]
unity-twitch-chat-interactions - v1.1

Published by danqzq over 2 years ago

  • Added the ability to optionally change the redirect URI for the authorization page.
  • Fixed a bug with aliases not calling their appropriate commands.
unity-twitch-chat-interactions - v1.0

Published by danqzq over 2 years ago

Initial release!