[QuestPopup] variable not working in List<CustomClass>
Posted: Wed Feb 15, 2023 8:53 am
Hi Tony,
I'm trying to create a to access custom information for my quests. Unfortunately, the QuestEntryPopup doesn't seem to work in a custom class as it seems it can't find any quest variable. It is working though if the quest variable is outside of the class (in the main class).
Any idea on how I could make it work?
I'm trying to create a
Code: Select all
List<QuestProperties>()
Code: Select all
[Serializable]
public class QuestProperties
{
[QuestPopup]
public string quest;
[QuestEntryPopup]
public int questEntry;
[QuestState]
public QuestState questState;
}