setValue method
Implementation
@override
void setValue(ActorComponent? component, double value, double mix) {
ActorConstraint constraint = component as ActorConstraint;
constraint.strength = constraint.strength * (1.0 - mix) + value * mix;
}
@override
void setValue(ActorComponent? component, double value, double mix) {
ActorConstraint constraint = component as ActorConstraint;
constraint.strength = constraint.strength * (1.0 - mix) + value * mix;
}