frameSizeMultiplier property
double
get
frameSizeMultiplier
Нow many percent increase the size of the animation relative to the size of the first frame.
Implementation
double get frameSizeMultiplier => _frameSizeMultiplier ?? 0.0;
set
frameSizeMultiplier
(double value)
Implementation
set frameSizeMultiplier(double value) {
if (_frameSizeMultiplier == value) {
return;
}
_frameSizeMultiplier = value;
if (_skeleton != null) {
bounds = _calculateBounds();
}
}