DEG-181 [Fix] 추가 오류 해결

This commit is contained in:
Sehyeon 2025-05-15 16:41:50 +09:00
parent 72e3455eb9
commit ae9c12a109
2 changed files with 4 additions and 7 deletions

View File

@ -177,8 +177,5 @@ public class SaveManager : Singleton<SaveManager>
backupSave = fresh.InitSave();
SaveMain();
SaveBackup();
saveDataController.ApplySaveData(mainSave);
}
}

View File

@ -29,13 +29,13 @@ public class SliderButton : MonoBehaviour
{
if (IsActive)
{
handle.transform.DOLocalMoveX(_offXLocation, 0.2f);
backgroundImage.DOColor(_offColor, 0.2f);
handle.transform.DOLocalMoveX(_offXLocation, 0.2f).SetUpdate(true);
backgroundImage.DOColor(_offColor, 0.2f).SetUpdate(true);
}
else
{
handle.transform.DOLocalMoveX(_onXLocation, 0.2f);
backgroundImage.DOColor(_onColor, 0.2f);
handle.transform.DOLocalMoveX(_onXLocation, 0.2f).SetUpdate(true);
backgroundImage.DOColor(_onColor, 0.2f).SetUpdate(true);
}
IsActive = !IsActive;
}