未実装カテゴリをコメントアウト

This commit is contained in:
kimura 2022-05-13 10:40:18 +09:00
parent 43d3e54598
commit 28bb000dff
3 changed files with 5 additions and 5 deletions

View File

@ -35,8 +35,8 @@ namespace MyGame.Scenes.marketing.Scripts
return stockTarget; return stockTarget;
case ShopCustomizeCategory.Category5: case ShopCustomizeCategory.Category5:
return decoration2Target; return decoration2Target;
case ShopCustomizeCategory.Category6: // case ShopCustomizeCategory.Category6:
return category6Target; // return category6Target;
default: default:
throw new ArgumentOutOfRangeException(); throw new ArgumentOutOfRangeException();
} }

View File

@ -31,8 +31,8 @@ namespace MyGame.Scenes.marketing.Scripts
return Stock; return Stock;
case ShopCustomizeCategory.Category5: case ShopCustomizeCategory.Category5:
return Decoration2; return Decoration2;
case ShopCustomizeCategory.Category6: // case ShopCustomizeCategory.Category6:
return 0; // return 0;
default: default:
throw new ArgumentOutOfRangeException(nameof(category), category, null); throw new ArgumentOutOfRangeException(nameof(category), category, null);
} }

View File

@ -150,7 +150,7 @@ public enum ShopCustomizeCategory
Category3 = 3, // 店本体 Category3 = 3, // 店本体
Category4 = 4, // 在庫メーター Category4 = 4, // 在庫メーター
Category5 = 5, // 立て看板 Category5 = 5, // 立て看板
Category6 = 6, // 背景 // Category6 = 6, // 背景
} }
public enum ShopCustomizeBonusCategory public enum ShopCustomizeBonusCategory