mirror of
https://udrimavric.com/MAVRIC/Stratasys-450mc-VR.git
synced 2025-01-23 15:48:33 -05:00
13 lines
327 B
C#
Executable File
13 lines
327 B
C#
Executable File
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace SO
|
|
{
|
|
[CreateAssetMenu(menuName = "Definitions/GuideObjectsSO")]
|
|
public class GuideObjectsSO : ScriptableObject
|
|
{
|
|
[SerializeField] public AnimationClip animationClip;
|
|
[SerializeField] public GameObject guideObjects;
|
|
}
|
|
}
|