Re: Problem with adding new quests
Posted: Wed Feb 05, 2025 5:44 am
I was able to repro that on fresh project.
I sent the project to you (on support e-mail address)
I sent the project to you (on support e-mail address)

Support and discussion forum for Pixel Crushers products
https://www.pixelcrushers.com:443/phpbb/
https://www.pixelcrushers.com:443/phpbb/viewtopic.php?t=8904
Code: Select all
public override void Start()
{
base.Start();
StartCoroutine(GiveAllCoroutine()); // Wait until save data has been applied.
}
private IEnumerator GiveAllCoroutine()
{
yield return null; // Assumes Frames To Wait Before Apply Data is 0. If not, wait more frames.
m_journal = FindFirstObjectByType<QuestJournal>();
GiveAllQuestsToQuester(m_journal);
}