Create frying recipes
This commit is contained in:
parent
895bc4e17c
commit
44d3bb1a03
21 changed files with 786 additions and 6 deletions
8
Assets/Scripts/Counters/StoveCounter.cs
Normal file
8
Assets/Scripts/Counters/StoveCounter.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class StoveCounter : BaseCounter
|
||||
{
|
||||
|
||||
}
|
11
Assets/Scripts/Counters/StoveCounter.cs.meta
Normal file
11
Assets/Scripts/Counters/StoveCounter.cs.meta
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 97b430ad528743b4c820a9ec73b4ae32
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
13
Assets/Scripts/ScriptableObjects/FryingRecipeSO.cs
Normal file
13
Assets/Scripts/ScriptableObjects/FryingRecipeSO.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
[CreateAssetMenu()]
|
||||
public class FryingRecipeSO : ScriptableObject
|
||||
{
|
||||
|
||||
public KitchenObjectSO input;
|
||||
public KitchenObjectSO output;
|
||||
public float fryingTimerMax;
|
||||
|
||||
}
|
11
Assets/Scripts/ScriptableObjects/FryingRecipeSO.cs.meta
Normal file
11
Assets/Scripts/ScriptableObjects/FryingRecipeSO.cs.meta
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: d80159ab9685c4f4fadd0af33fe30e0f
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Reference in a new issue