public void Initialize(SerializedObject conversation, OnPanelLeave OnAddDialogue)
        {
            Conversation = conversation;
            SetConversationVariables();
            int depth = (int)ListDepth.counter;

            SelectedElementsPerDepth = new int[depth];
            ResetIndexesFor(ListDepth.CHARACTERS);
            this.OnAddDialogue = OnAddDialogue;
        }
Ejemplo n.º 2
0
 public DS_MainConversationPanel(OnPanelLeave OnLeave)
 {
     this.OnLeave = OnLeave;
 }
 public DS_EditableConversationPanel(OnPanelLeave OnLeave)
 {
     this.OnLeave         = OnLeave;
     dialoguesDisplay     = new CharactersDialoguesDisplay(240, 500);
     dialogueManipulation = new DialogueManipulationScroller(300, 500);
 }