Player put items in basket with UI indication

This commit is contained in:
Vladimir Koshevarov
2023-03-05 17:21:00 +02:00
parent d7d0d8754b
commit 901e500d0e
21 changed files with 1223 additions and 618 deletions
@@ -3,7 +3,8 @@ using UnityEngine;
[CreateAssetMenu()]
public class SellableItemSO : ScriptableObject
{
public Transform prefab;
public string objectName;
public float objectPrice;
public Transform Prefab;
public string ItemName;
public float Price;
public Sprite Icon;
}