We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The scalar Option of the shapeFromText has no Effect.
shapeFromText
e.g. If you want to create Confetti which consists out of circles and emojis, you can not set the scale of Emojis idependent.
var unicorn = confetti.shapeFromText({ text: '🦄', scalar: 8 }); // This Scalar Option is useless function shoot() { confetti({ spread: 360, ticks: 60, gravity: 0, decay: 0.96, startVelocity: 20, particleCount: 15, scalar: 1, shapes: ['circle', unicorn] }); } setTimeout(shoot, 0);
In this Example Circles and Unicorns would be scaled to 1.
Expectaion: Circles scaled to 1 and Unicorns Scaled to 8. or No Scale Option for shapeFromText
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The scalar Option of the
shapeFromText
has no Effect.e.g. If you want to create Confetti which consists out of circles and emojis, you can not set the scale of Emojis idependent.
In this Example Circles and Unicorns would be scaled to 1.
Expectaion:
Circles scaled to 1 and Unicorns Scaled to 8.
or
No Scale Option for
shapeFromText
The text was updated successfully, but these errors were encountered: