scaled method
Wraps this particle with a ScaledParticle.
Allows for changing the size of this particle and/or its children.
Implementation
Particle scaled(double scale) {
return ScaledParticle(scale: scale, child: this, lifespan: _lifespan);
}
Wraps this particle with a ScaledParticle.
Allows for changing the size of this particle and/or its children.
Particle scaled(double scale) {
return ScaledParticle(scale: scale, child: this, lifespan: _lifespan);
}