I added the code as shown, but when I go back into Unity and right click, State isn’t an option.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(menuName = “State”)]
public class State : ScriptableObject
{
[SerializeField] string storyText;
}