| 584 | } |
| 585 | |
| 586 | void EffectChain::SetUpFromSaveData() |
| 587 | { |
| 588 | SetTarget(TheSynth->FindModule(mModuleSaveData.GetString("target"))); |
| 589 | SetWideCount(mModuleSaveData.GetInt("widecount")); |
| 590 | mShowSpawnList = mModuleSaveData.GetBool("showspawnlist"); |
| 591 | |
| 592 | for (int i = 0; i < mEffects.size(); ++i) |
| 593 | mEffects[i]->SetUpFromSaveDataBase(); |
| 594 | } |
| 595 | |
| 596 | void EffectChain::SaveLayout(ofxJSONElement& moduleInfo) |
| 597 | { |
nothing calls this directly
no test coverage detected