Stratasys-450mc-VR/Assets/Scripts/SO/GuideObjectsSO.cs

13 lines
327 B
C#
Raw Normal View History

2023-11-01 10:51:29 -04:00
using System.Collections.Generic;
using UnityEngine;
namespace SO
{
[CreateAssetMenu(menuName = "Definitions/GuideObjectsSO")]
public class GuideObjectsSO : ScriptableObject
{
[SerializeField] public AnimationClip animationClip;
[SerializeField] public GameObject guideObjects;
}
}