Exemplo n.º 1
0
 private void InitializePanels()
 {
     leftPanel.characterIsTalking  = true;
     rightPanel.characterIsTalking = false;
     leftPanel.Configure(currentEvent.dialogues[stepIndex]);
     rightPanel.Configure(currentEvent.dialogues[stepIndex + 1]);
     StartCoroutine(MasterManager.animationManager.IntroAnimation());
     stepIndex++;
 }
Exemplo n.º 2
0
    private void InitializePanels()
    {
        StartCoroutine(MasterManager.AnimationManager.IntroAnimation());

        leftPanel.CharacterIsTalking  = true;
        rightPanel.CharacterIsTalking = false;
        _leftCharacterActive          = !_leftCharacterActive;

        leftPanel.Configure(_currentEvent.dialogues[_stepIndex]);
        rightPanel.Configure(_currentEvent.dialogues[_stepIndex + 1]);

        _stepIndex++;
    }