player interact with cola freezer, improvement in movements

This commit is contained in:
Vladimir Koshevarov
2023-02-28 19:14:01 +02:00
parent 4a0e00d862
commit ee07359c50
13 changed files with 298 additions and 137 deletions
+12
View File
@@ -0,0 +1,12 @@
using UnityEngine;
public class FoodObject : MonoBehaviour
{
[SerializeField]
private FoodObjectSO _foodObjectSO;
public FoodObjectSO GetFoodObjectSO()
{
return _foodObjectSO;
}
}