public void Init(DialogReceiverInterface e, string startTextContent, System.Object characterAnimType = null)
        {
            if (characterAnimType is CharactersWindowAppearance.CharacterAnimationType)
            {
                isCharacterCutscene = true;
                type = (CharactersWindowAppearance.CharacterAnimationType)characterAnimType;
            }

            base.Init(e, startTextContent);
        }
Exemplo n.º 2
0
 public void Init(DialogReceiverInterface e, FileType fType, CharactersWindowAppearance.CharacterAnimationType type)
 {
     animType = type;
     base.Init(e, fType);
 }