Advertisement
Guest User

Untitled

a guest
Oct 18th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public DialogueDatabase db;
  2.  
  3. void Start()
  4. {
  5. foreach(PixelCrushers.DialogueSystem.Conversation conversation in db.conversations)
  6. {
  7. foreach(PixelCrushers.DialogueSystem.DialogueEntry entry in conversation.dialogueEntries)
  8. {
  9. print(entry.conditionsString);
  10. }
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement