Number of scenarios
-
- Posts: 5
- Joined: Fri Mar 09, 2018 3:38 pm
Number of scenarios
Hi, I would like to ask how I am able to know the number of scenarios my database has via code?
Re: Number of scenarios
Hi,
Do you mean quests, conversations, or something else?
To check the number of quests:
To check the number of conversations:
Do you mean quests, conversations, or something else?
To check the number of quests:
Code: Select all
using PixelCrushers.DialogueSystem;
...
int numberOfQuests = DialogueManager.MasterDatabase.quests.Count;
Code: Select all
int numberOfConversations = DialogueManager.MasterDatabase.conversations.Count;
-
- Posts: 5
- Joined: Fri Mar 09, 2018 3:38 pm
Re: Number of scenarios
Hi, it is the number of conversations, thank you so much!