Merge branch 'develop' of http://gitea.capers.co.kr:3000/iwnc2020/ProjectDDD into feature/cook_ui
# Conflicts: # Assets/_DDD/_Scripts/Restaurant/Event/RestaurantInteractionComponent.cs
This commit is contained in:
commit
3720adfd78
BIN
Assets/_DDD/_Addressables/AI/Customer/Subtree/CustomerDefault.asset
(Stored with Git LFS)
BIN
Assets/_DDD/_Addressables/AI/Customer/Subtree/CustomerDefault.asset
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/_DDD/_Addressables/AI/Customer/Subtree/OrderSubtree.asset
(Stored with Git LFS)
BIN
Assets/_DDD/_Addressables/AI/Customer/Subtree/OrderSubtree.asset
(Stored with Git LFS)
Binary file not shown.
@ -1210,9 +1210,6 @@ PrefabInstance:
|
||||
- targetCorrespondingSourceObject: {fileID: 7462519206451630147, guid: ceeea618d8ee23642a0e56b3f963448c, type: 3}
|
||||
insertIndex: -1
|
||||
addedObject: {fileID: 3825874317044733320}
|
||||
- targetCorrespondingSourceObject: {fileID: 7462519206451630147, guid: ceeea618d8ee23642a0e56b3f963448c, type: 3}
|
||||
insertIndex: -1
|
||||
addedObject: {fileID: 1122074513716966771}
|
||||
m_SourcePrefab: {fileID: 100100000, guid: ceeea618d8ee23642a0e56b3f963448c, type: 3}
|
||||
--- !u!1 &4266090516809920735 stripped
|
||||
GameObject:
|
||||
@ -1255,23 +1252,3 @@ MonoBehaviour:
|
||||
m_Script: {fileID: 11500000, guid: af69e82818254bfa9cabb2dbf9430850, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
--- !u!114 &1122074513716966771
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 4266090516809920735}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 201f9e6d7ca7404baa9945950292a392, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
_interactionType: 4
|
||||
_executionParameters:
|
||||
_holdTime: 0
|
||||
_displayParameters:
|
||||
_messageKey:
|
||||
_interactionAvailableFlows: 2
|
||||
_aiInteractionPoints: []
|
||||
autoInitialize: 1
|
||||
|
@ -427,6 +427,7 @@ MonoBehaviour:
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
_availableInteractions: 13
|
||||
_availableInteractions: 7
|
||||
_nearColliders:
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
|
@ -9,7 +9,7 @@ namespace DDD
|
||||
/// </summary>
|
||||
public interface IAISharedBlackboard
|
||||
{
|
||||
void SetCurrentInteractionTarget(GameObject targetGameObject);
|
||||
GameObject GetCurrentInteractionTarget();
|
||||
void SetBlackboardGameObject(string key, GameObject inGameObject);
|
||||
GameObject GetBlackboardGameObject(string key);
|
||||
}
|
||||
}
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
public class DataSo<T> : ScriptableObject where T : IId
|
||||
public class DataAsset<T> : ScriptableObject where T : IId
|
||||
{
|
||||
[FormerlySerializedAs("Datas")] [SerializeField] protected List<T> _datas = new();
|
||||
|
@ -10,7 +10,6 @@ public enum InteractionType : uint
|
||||
None = 0u,
|
||||
RestaurantManagement = 1u << 0,
|
||||
RestaurantOrder = 1u << 1,
|
||||
RestaurantMeal = 1u << 2,
|
||||
RestaurantCook = 1u << 3,
|
||||
All = 0xFFFFFFFFu
|
||||
}
|
||||
|
@ -18,6 +18,6 @@ public InventoryItemData(string id, int quantity)
|
||||
Quantity = quantity;
|
||||
}
|
||||
|
||||
public ItemData ItemData => InventoryManager.Instance.GetItemDataByIdOrNull(Id);
|
||||
public ItemDataEntry ItemDataEntry => InventoryManager.Instance.GetItemDataByIdOrNull(Id);
|
||||
}
|
||||
}
|
@ -19,7 +19,7 @@ public class InventoryManager : Singleton<InventoryManager>, IManager
|
||||
{
|
||||
[Title("아이템 전체 목록")]
|
||||
[ShowInInspector, ReadOnly]
|
||||
private Dictionary<string, ItemData> _allItemDataLookup;
|
||||
private Dictionary<string, ItemDataEntry> _allItemDataLookup;
|
||||
|
||||
[Title("아이템 보유 목록")]
|
||||
[ShowInInspector, ReadOnly]
|
||||
@ -48,7 +48,7 @@ public void PostInit()
|
||||
|
||||
private void InitializeItemData()
|
||||
{
|
||||
var itemDataSo = DataManager.Instance.GetDataSo<ItemDataSo>();
|
||||
var itemDataSo = DataManager.Instance.GetDataSo<ItemDataAsset>();
|
||||
Debug.Assert(itemDataSo != null, "itemDataSo != null");
|
||||
|
||||
_allItemDataLookup = itemDataSo.GetDataList()
|
||||
@ -129,12 +129,12 @@ public bool RemoveItem(string id, int quantity = 1)
|
||||
return true;
|
||||
}
|
||||
|
||||
public IReadOnlyDictionary<string, ItemData> AllItemDataLookup => _allItemDataLookup;
|
||||
public IReadOnlyDictionary<string, ItemDataEntry> AllItemDataLookup => _allItemDataLookup;
|
||||
public IReadOnlyDictionary<string, InventoryItemData> InventoryItems => _inventoryItemDatas;
|
||||
public bool ContainInventoryItem(string id) => _inventoryItemDatas.ContainsKey(id);
|
||||
public bool TryGetInventoryItemData(string id, out InventoryItemData inventoryItemData) => _inventoryItemDatas.TryGetValue(id, out inventoryItemData);
|
||||
public int GetItemCount(string id) => _inventoryItemDatas.TryGetValue(id, out var itemData) ? itemData.Quantity : 0;
|
||||
public ItemData GetItemDataByIdOrNull(string id)
|
||||
public ItemDataEntry GetItemDataByIdOrNull(string id)
|
||||
{
|
||||
_allItemDataLookup.TryGetValue(id, out var itemData);
|
||||
return itemData;
|
||||
|
@ -28,14 +28,14 @@ private IEnumerable<string> GetAllItemIds()
|
||||
.Select(d => d.Id);
|
||||
}
|
||||
|
||||
private ItemDataSo LoadItemDataSo()
|
||||
private ItemDataAsset LoadItemDataSo()
|
||||
{
|
||||
// 경로는 프로젝트에 맞게 조정 필요
|
||||
string[] guids = AssetDatabase.FindAssets("t:ItemDataSo");
|
||||
string[] guids = AssetDatabase.FindAssets("t:ItemDataAsset");
|
||||
if (guids.Length == 0) return null;
|
||||
|
||||
string path = AssetDatabase.GUIDToAssetPath(guids[0]);
|
||||
return AssetDatabase.LoadAssetAtPath<ItemDataSo>(path);
|
||||
return AssetDatabase.LoadAssetAtPath<ItemDataAsset>(path);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -47,10 +47,10 @@ private void RemoveItem()
|
||||
|
||||
private IEnumerable<string> GetItemIds()
|
||||
{
|
||||
if (!Application.isPlaying || DataManager.Instance?.GetDataSo<ItemDataSo>() == null)
|
||||
if (!Application.isPlaying || DataManager.Instance?.GetDataSo<ItemDataAsset>() == null)
|
||||
return Enumerable.Empty<string>();
|
||||
|
||||
return DataManager.Instance.GetDataSo<ItemDataSo>().GetDataList()
|
||||
return DataManager.Instance.GetDataSo<ItemDataAsset>().GetDataList()
|
||||
.Select(data => data.Id)
|
||||
.Where(id => !string.IsNullOrEmpty(id));
|
||||
}
|
||||
|
@ -104,7 +104,7 @@ private object GetPropertyValue(string propertyPath)
|
||||
{
|
||||
if (_dataContext == null) return null;
|
||||
|
||||
// 중첩 속성 지원 (예: "ItemData.Name")
|
||||
// 중첩 속성 지원 (예: "ItemDataEntry.Name")
|
||||
var properties = propertyPath.Split('.');
|
||||
object current = _dataContext;
|
||||
|
||||
|
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/CookwareDataAsset.asset
(Stored with Git LFS)
Normal file
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/CookwareDataAsset.asset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/CustomerDataAsset.asset
(Stored with Git LFS)
Normal file
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/CustomerDataAsset.asset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/CustomerPoolDataAsset.asset
(Stored with Git LFS)
Normal file
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/CustomerPoolDataAsset.asset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/DrinkDataAsset.asset
(Stored with Git LFS)
Normal file
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/DrinkDataAsset.asset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/EnvironmentDataAsset.asset
(Stored with Git LFS)
Normal file
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/EnvironmentDataAsset.asset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/FoodDataAsset.asset
(Stored with Git LFS)
Normal file
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/FoodDataAsset.asset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/IngredientDataAsset.asset
(Stored with Git LFS)
Normal file
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/IngredientDataAsset.asset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/ItemDataAsset.asset
(Stored with Git LFS)
Normal file
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/ItemDataAsset.asset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/LevelDataAsset.asset
(Stored with Git LFS)
Normal file
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/LevelDataAsset.asset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/RecipeDataAsset.asset
(Stored with Git LFS)
Normal file
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/RecipeDataAsset.asset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/TasteDataAsset.asset
(Stored with Git LFS)
Normal file
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Assets/TasteDataAsset.asset
(Stored with Git LFS)
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 90984e9ede7c85d45b0883295d7cff8a
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -0,0 +1,23 @@
|
||||
// <auto-generated> File: CookwareDataAsset.cs
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "CookwareDataAsset", menuName = "GoogleSheet/CookwareDataAsset")]
|
||||
public class CookwareDataAsset : DataAsset<CookwareDataEntry>
|
||||
{
|
||||
public bool TryGetValueByCookwareType(CookwareType cookwareType, out CookwareDataEntry cookwareDataEntry)
|
||||
{
|
||||
if (_datas == null)
|
||||
{
|
||||
cookwareDataEntry = null;
|
||||
return false;
|
||||
}
|
||||
|
||||
cookwareDataEntry = _datas.FirstOrDefault(data => data != null && data.CookwareType == cookwareType);
|
||||
return cookwareDataEntry != null;
|
||||
}
|
||||
}
|
||||
}
|
@ -18,7 +18,7 @@ public enum CookwareType
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class CookwareData : IId
|
||||
public class CookwareDataEntry : IId
|
||||
{
|
||||
/// <summary>식별ID</summary>
|
||||
[Tooltip("식별ID")]
|
@ -1,23 +0,0 @@
|
||||
// <auto-generated> File: CookwareDataSo.cs
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "CookwareDataSo", menuName = "GoogleSheet/CookwareDataSo")]
|
||||
public class CookwareDataSo : DataSo<CookwareData>
|
||||
{
|
||||
public bool TryGetValueByCookwareType(CookwareType cookwareType, out CookwareData cookwareData)
|
||||
{
|
||||
if (_datas == null)
|
||||
{
|
||||
cookwareData = null;
|
||||
return false;
|
||||
}
|
||||
|
||||
cookwareData = _datas.FirstOrDefault(data => data != null && data.CookwareType == cookwareType);
|
||||
return cookwareData != null;
|
||||
}
|
||||
}
|
||||
}
|
@ -3,8 +3,8 @@
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "CustomerDataSo", menuName = "GoogleSheet/CustomerDataSo")]
|
||||
public class CustomerDataSo : DataSo<CustomerData>
|
||||
[CreateAssetMenu(fileName = "CustomerDataAsset", menuName = "GoogleSheet/CustomerDataAsset")]
|
||||
public class CustomerDataAsset : DataAsset<CustomerDataEntry>
|
||||
{
|
||||
protected override void Initialize()
|
||||
{
|
@ -15,7 +15,7 @@ public enum CustomerType
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class CustomerData : IId
|
||||
public class CustomerDataEntry : IId
|
||||
{
|
||||
/// <summary>식별번호</summary>
|
||||
[Tooltip("식별번호")]
|
@ -3,8 +3,8 @@
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "CustomerPoolDataSo", menuName = "GoogleSheet/CustomerPoolDataSo")]
|
||||
public class CustomerPoolDataSo : DataSo<CustomerPoolData>
|
||||
[CreateAssetMenu(fileName = "CustomerPoolDataAsset", menuName = "GoogleSheet/CustomerPoolDataAsset")]
|
||||
public class CustomerPoolDataAsset : DataAsset<CustomerPoolDataEntry>
|
||||
{
|
||||
protected override void Initialize()
|
||||
{
|
@ -7,7 +7,7 @@
|
||||
namespace DDD
|
||||
{
|
||||
[Serializable]
|
||||
public class CustomerPoolData : IId
|
||||
public class CustomerPoolDataEntry : IId
|
||||
{
|
||||
/// <summary>식별번호</summary>
|
||||
[Tooltip("식별번호")]
|
@ -0,0 +1,9 @@
|
||||
// <auto-generated> File: DrinkDataAsset.cs
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "DrinkDataAsset", menuName = "GoogleSheet/DrinkDataAsset")]
|
||||
public class DrinkDataAsset : DataAsset<DrinkDataEntry> { }
|
||||
}
|
@ -5,7 +5,7 @@
|
||||
namespace DDD
|
||||
{
|
||||
[Serializable]
|
||||
public class FoodData : IId
|
||||
public class DrinkDataEntry : IId
|
||||
{
|
||||
/// <summary>식별ID</summary>
|
||||
[Tooltip("식별ID")]
|
@ -1,9 +0,0 @@
|
||||
// <auto-generated> File: DrinkDataSo.cs
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "DrinkDataSo", menuName = "GoogleSheet/DrinkDataSo")]
|
||||
public class DrinkDataSo : DataSo<DrinkData> { }
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
// <auto-generated> File: EnvironmentDataAsset.cs
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "EnvironmentDataAsset", menuName = "GoogleSheet/EnvironmentDataAsset")]
|
||||
public class EnvironmentDataAsset : DataAsset<EnvironmentDataEntry> { }
|
||||
}
|
@ -12,7 +12,7 @@ public enum RendererType
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class EnvironmentData : IId
|
||||
public class EnvironmentDataEntry : IId
|
||||
{
|
||||
/// <summary>식별번호</summary>
|
||||
[Tooltip("식별번호")]
|
@ -1,9 +0,0 @@
|
||||
// <auto-generated> File: EnvironmentDataSo.cs
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "EnvironmentDataSo", menuName = "GoogleSheet/EnvironmentDataSo")]
|
||||
public class EnvironmentDataSo : DataSo<EnvironmentData> { }
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
// <auto-generated> File: FoodDataAsset.cs
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "FoodDataAsset", menuName = "GoogleSheet/FoodDataAsset")]
|
||||
public class FoodDataAsset : DataAsset<FoodDataEntry> { }
|
||||
}
|
@ -5,7 +5,7 @@
|
||||
namespace DDD
|
||||
{
|
||||
[Serializable]
|
||||
public class DrinkData : IId
|
||||
public class FoodDataEntry : IId
|
||||
{
|
||||
/// <summary>식별ID</summary>
|
||||
[Tooltip("식별ID")]
|
@ -1,9 +0,0 @@
|
||||
// <auto-generated> File: FoodDataSo.cs
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "FoodDataSo", menuName = "GoogleSheet/FoodDataSo")]
|
||||
public class FoodDataSo : DataSo<FoodData> { }
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
// <auto-generated>
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "IngredientDataAsset", menuName = "GoogleSheet/IngredientDataAsset")]
|
||||
public class IngredientDataAsset : DataAsset<IngredientDataEntry> { }
|
||||
}
|
@ -5,7 +5,7 @@
|
||||
namespace DDD
|
||||
{
|
||||
[Serializable]
|
||||
public class IngredientData : IId
|
||||
public class IngredientDataEntry : IId
|
||||
{
|
||||
/// <summary>식별ID</summary>
|
||||
[Tooltip("식별ID")]
|
@ -1,8 +0,0 @@
|
||||
// <auto-generated>
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "IngredientDataSo", menuName = "GoogleSheet/IngredientDataSo")]
|
||||
public class IngredientDataSo : DataSo<IngredientData> { }
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
// <auto-generated> File: ItemDataAsset.cs
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "ItemDataAsset", menuName = "GoogleSheet/ItemDataAsset")]
|
||||
public class ItemDataAsset : DataAsset<ItemDataEntry> { }
|
||||
}
|
@ -15,7 +15,7 @@ public enum ItemType
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class ItemData : IId
|
||||
public class ItemDataEntry : IId
|
||||
{
|
||||
/// <summary>식별번호</summary>
|
||||
[Tooltip("식별번호")]
|
@ -1,9 +0,0 @@
|
||||
// <auto-generated> File: ItemDataSo.cs
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "ItemDataSo", menuName = "GoogleSheet/ItemDataSo")]
|
||||
public class ItemDataSo : DataSo<ItemData> { }
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
// <auto-generated>
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "LevelDataAsset", menuName = "GoogleSheet/LevelDataAsset")]
|
||||
public class LevelDataAsset : DataAsset<LevelDataEntry> { }
|
||||
}
|
@ -12,7 +12,7 @@ public enum SpawnType
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class LevelData : IId
|
||||
public class LevelDataEntry : IId
|
||||
{
|
||||
/// <summary>식별번호</summary>
|
||||
[Tooltip("식별번호")]
|
@ -1,8 +0,0 @@
|
||||
// <auto-generated>
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "LevelDataSo", menuName = "GoogleSheet/LevelDataSo")]
|
||||
public class LevelDataSo : DataSo<LevelData> { }
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
// <auto-generated> File: RecipeDataAsset.cs
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "RecipeDataAsset", menuName = "GoogleSheet/RecipeDataAsset")]
|
||||
public class RecipeDataAsset : DataAsset<RecipeDataEntry> { }
|
||||
}
|
@ -12,7 +12,7 @@ public enum RecipeType
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class RecipeData : IId
|
||||
public class RecipeDataEntry : IId
|
||||
{
|
||||
/// <summary>식별ID</summary>
|
||||
[Tooltip("식별ID")]
|
@ -1,9 +0,0 @@
|
||||
// <auto-generated> File: RecipeDataSo.cs
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "RecipeDataSo", menuName = "GoogleSheet/RecipeDataSo")]
|
||||
public class RecipeDataSo : DataSo<RecipeData> { }
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
// <auto-generated> File: TasteDataAsset.cs
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "TasteDataAsset", menuName = "GoogleSheet/TasteDataAsset")]
|
||||
public class TasteDataAsset : DataAsset<TasteDataEntry> { }
|
||||
}
|
@ -28,7 +28,7 @@ public enum TasteType
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class TasteData : IId
|
||||
public class TasteDataEntry : IId
|
||||
{
|
||||
/// <summary>식별ID</summary>
|
||||
[Tooltip("식별ID")]
|
@ -1,9 +0,0 @@
|
||||
// <auto-generated> File: TasteDataSo.cs
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace DDD
|
||||
{
|
||||
[CreateAssetMenu(fileName = "TasteDataSo", menuName = "GoogleSheet/TasteDataSo")]
|
||||
public class TasteDataSo : DataSo<TasteData> { }
|
||||
}
|
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Logs/GoogleSheetChangeLog.asset
(Stored with Git LFS)
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Logs/GoogleSheetChangeLog.asset
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/CookwareDataSo.asset
(Stored with Git LFS)
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/CookwareDataSo.asset
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/CustomerDataSo.asset
(Stored with Git LFS)
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/CustomerDataSo.asset
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/CustomerPoolDataSo.asset
(Stored with Git LFS)
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/CustomerPoolDataSo.asset
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/DrinkDataSo.asset
(Stored with Git LFS)
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/DrinkDataSo.asset
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/EnvironmentDataSo.asset
(Stored with Git LFS)
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/EnvironmentDataSo.asset
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/FoodDataSo.asset
(Stored with Git LFS)
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/FoodDataSo.asset
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/IngredientDataSo.asset
(Stored with Git LFS)
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/IngredientDataSo.asset
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/ItemDataSo.asset
(Stored with Git LFS)
BIN
Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/So/ItemDataSo.asset
(Stored with Git LFS)
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user