Releases: danqzq/unity-twitch-chat-interactions
Releases · danqzq/unity-twitch-chat-interactions
v1.32
- 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! 🙌
v1.31
v1.3
- 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.