1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 16:38:31 +00:00
**Note**: This update does not add proper support for the 'Message Effects' power-up. I still need to investigate how to best implement that, since Twitch's implementation uses a canvas and custom rendering logic.

* Added: Support for the "Gigantify an Emote" power-up.
* Added: Support for "Gigantifing" an emote using a community points reward. Just set up a custom reward that lets a user enter a message, and have the exact string `FFZ:GE` somewhere in the reward's title or description. Only appears as giant for users with FrankerFaceZ. This was added because the native power-up does not support emotes from add-ons.
* Added: Option to disable "Gigantifying" emotes.
* Fixed: Use the correct currency when displaying a community redemption that cost bits rather than points.
* Fixed: The emote menu not appearing correctly when choosing an emote for the "Gigantify an Emote" and "On-Screen Celebration" power-ups.
This commit is contained in:
SirStendec 2024-06-14 14:27:26 -04:00
parent 340551dc83
commit f79f1ba21d
22 changed files with 176 additions and 31 deletions

View file

@ -520,6 +520,16 @@ export default class Emotes extends Module {
}
});
this.settings.add('chat.emotes.allow-gigantify', {
default: true,
ui: {
path: 'Chat > Appearance >> Emotes',
title: 'Allow "Gigantify an Emote" Power-Up',
description: 'How big is too big? Giant? Disable this and the emotes will be displayed normally.',
component: 'setting-check-box'
}
});
this.settings.add('chat.fix-bad-emotes', {
default: true,
ui: {