weight property

double get weight

Blend weight in [0, 1], used by AnimationPlayer to mix this clip with other concurrently playing clips on the same node.

Assignments are clamped to the valid range.

Implementation

double get weight => _weight;
set weight (double value)

Implementation

set weight(double value) {
  _weight = clampDouble(value, 0, 1);
}