apply method
Implementation
void apply(double time, List<ActorComponent?> components, double mix) {
for (final PropertyAnimation? propertyAnimation in _properties) {
if (propertyAnimation != null) {
propertyAnimation.apply(time, components[_componentIndex], mix);
}
}
}