Correctly change end state in CombinedEffect

This commit is contained in:
Lukas Klingsbo
2020-11-07 14:29:10 +01:00
parent 0d7a2a5c12
commit b9285c9b4d
6 changed files with 19 additions and 13 deletions

View File

@ -95,7 +95,7 @@ class SequenceEffect extends PositionComponentEffect {
void reset() {
super.reset();
effects.forEach((e) => e.reset());
if(component != null) {
if (component != null) {
initialize(component);
}
}