Spreadsheet設定修正

This commit is contained in:
kimura 2021-09-10 09:00:42 +09:00
parent eaee18ed40
commit 42c4b83da6
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ using System.Collections.Generic;
public class DataDownloader {
private static readonly string WebServiceUrl = "https://script.google.com/macros/s/AKfycbyenMGJNEy3M_P37lWZavGe0gwLMI91qiew12XE6kmnsLdcwAI/exec";
private static readonly string SpreadsheetId = "15ReD1nkGL60QdvJdGOYbjwRXMPIBclhXD5vCWOmbmew";
private static readonly string SpreadsheetId = "1z3jzHxHo9FPthm2K_cuL3lCZDfwTnbEjI0tG1D4YPPc";
private static readonly string LangSpreadsheetId = "1Eq7VNB2MqzdotBwaf71dqZ1MIU_HrEjPxIfNBeFlTr8";
private static readonly string Password = "hogehogehogeo";
private static readonly string DirectoryPath = "Assets/MyGame/Resources/Data";

View File

@ -12,8 +12,8 @@ public enum ItemCategory
public enum ShopItemType
{
Consumable,
NonConsumable,
Consumable = 1,
NonConsumable = 2,
}
[Serializable]