First pass on the image drawing
This commit is contained in:
@@ -36,10 +36,14 @@ namespace Dialogue
|
||||
public RuntimeDialogueNodeType nodeType;
|
||||
public string nextNodeID;
|
||||
|
||||
// Basic dialogue
|
||||
// Basic dialogue - legacy text-only field
|
||||
[HideInInspector]
|
||||
public List<string> dialogueLines = new List<string>();
|
||||
public bool loopThroughLines;
|
||||
|
||||
// New mixed content field that supports both text and images
|
||||
public List<DialogueContent> dialogueContent = new List<DialogueContent>();
|
||||
|
||||
// Conditional nodes
|
||||
public string puzzleStepID; // For WaitOnPuzzleStep
|
||||
public string pickupItemID; // For WaitOnPickup
|
||||
@@ -47,9 +51,14 @@ namespace Dialogue
|
||||
public string combinationResultItemID; // For WaitOnCombination
|
||||
|
||||
// For WaitOnSlot - different responses
|
||||
[HideInInspector]
|
||||
public List<string> incorrectItemLines = new List<string>();
|
||||
public bool loopThroughIncorrectLines;
|
||||
public List<DialogueContent> incorrectItemContent = new List<DialogueContent>();
|
||||
|
||||
[HideInInspector]
|
||||
public List<string> forbiddenItemLines = new List<string>();
|
||||
public bool loopThroughForbiddenLines;
|
||||
public List<DialogueContent> forbiddenItemContent = new List<DialogueContent>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user