Kitchen object creation and spawning

This commit is contained in:
BuyMyMojo 2023-02-28 05:25:39 +11:00
parent 989648c00b
commit 1729ddf5c6
22 changed files with 462 additions and 3 deletions

View file

@ -0,0 +1,13 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu()]
public class KitchenObjectSO : ScriptableObject
{
public Transform prefab;
public Sprite sprite;
public string objectName;
}