Adding some new effects to button generator

This commit is contained in:
Dan 2026-01-22 07:08:32 +00:00
parent d0c65a71ad
commit f980d65c86
7 changed files with 1023 additions and 1 deletions

View file

@ -151,8 +151,10 @@ export class StandardTextEffect extends ButtonEffect {
const rainbowActive = controlValues[`animate-text-rainbow${suffix}`];
const spinActive = controlValues[`animate-text-spin${suffix}`];
const tickerActive = controlValues[`animate-text-ticker${suffix}`];
const bounceActive = controlValues[`animate-text-bounce${suffix}`];
const glowActive = controlValues[`animate-text-glow${suffix}`];
return text && text.trim() !== "" && !waveActive && !rainbowActive && !spinActive && !tickerActive;
return text && text.trim() !== "" && !waveActive && !rainbowActive && !spinActive && !tickerActive && !bounceActive && !glowActive;
}
apply(context, controlValues, animState, renderData) {