19 lines
591 B
C#
Executable File
19 lines
591 B
C#
Executable File
using System.Collections.Generic;
|
|
using ModelViewer.Common;
|
|
using UnityEngine;
|
|
|
|
|
|
namespace BrewMonster.Scripts.ECModel
|
|
{
|
|
[CreateAssetMenu(fileName = "CombinedActionSO", menuName = "BrewMonster/CombinedActionSO")]
|
|
public class CombinedActionSO : ScriptableObject
|
|
{
|
|
public List<A3DCombinedAction> CombinedActionData = new();
|
|
public A3DCombinedAction GetActionByName(string name)
|
|
{
|
|
A3DCombinedAction returnValue = null;
|
|
returnValue = CombinedActionData.Find(x => x.m_strName == name);
|
|
return returnValue;
|
|
}
|
|
}
|
|
} |