void LoadEffectDisappear(string commandObject) { if (commandObject == "배경") { Effect = () => { dd.RemoveBackgroundSprite(); }; } else if (commandObject == "일러") { Effect = () => { dd.RemoveIllustSprite(); }; } else if (commandObject == "배경음") { Effect = () => { SoundManager.Instance.EndBGM(); }; } else if (commandObject == "떨림") { Effect = () => { dd.StopQuivering(); }; } }