Hey guys,
I don’t know if I should post it here but I found a problem and I don’t know what to do with it.
Here is the code:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(menuName = "theFrefly/newAnswer")]
public class Answer : ScriptableObjects
{
[TextArea]
public string description;
public string answerName;
}
The problem:
I just don’t see the ,theFrefly" selection in Create tab.
Anyone know what to do with this?
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(fileName = "Answer", menuName = "Answers/NewAnswer", order = 100)]
public class Answer : ScriptableObject
{
[TextArea]
private string description;
private string answerName;
}