DEG-165 [Style] 주석 정리

This commit is contained in:
99jamin 2025-05-14 17:10:20 +09:00
parent f900b17f1f
commit 1ba94c4044
4 changed files with 2 additions and 6 deletions

View File

@ -46,9 +46,6 @@ public class SaveManager : Singleton<SaveManager>
backupSave = LoadBackup(); backupSave = LoadBackup();
saveDataController.ApplySaveData(mainSave); saveDataController.ApplySaveData(mainSave);
Debug.Log("메인 로드" + mainSave.homeSave.reputation); //임시 코드
Debug.Log("백업 로드" + backupSave.homeSave.reputation); //임시 코드
} }
private void UpdateSaveInfo() private void UpdateSaveInfo()

View File

@ -223,7 +223,7 @@ public class UpgradeManager : Singleton<UpgradeManager>
if (canvasGroup == null && image == null) if (canvasGroup == null && image == null)
{ {
Debug.LogError("CanvasGroup도 Image도 없습니다!"); Debug.LogError("CanvasGroup, Image가 없음");
yield break; yield break;
} }

View File

@ -87,7 +87,6 @@ public class UpgradeStat : MonoBehaviour, ISaveable
/// <returns></returns> /// <returns></returns>
public Save ExtractSaveData() public Save ExtractSaveData()
{ {
Debug.Log("UpgradeStat extracting save data");
return new Save return new Save
{ {
dungeonSave = new DungeonSave dungeonSave = new DungeonSave

View File

@ -111,7 +111,7 @@ public class InteractionAnimationPanelController : MonoBehaviour
if (actionType == ActionType.Housework) if (actionType == ActionType.Housework)
{ {
var chance = 0.7f; // 30% 확률 var chance = 0.7f;
if (Random.value < chance) if (Random.value < chance)
{ {