Example #1
0
        public void Draw(Transform2 parentTransform)
        {
            _playerView.Draw(parentTransform);
            _characterView.Draw(parentTransform);

            if (_shouldShowDialogueControls)
            {
                DrawConversationControls(parentTransform);
            }

            if (_isPresentingToUser)
            {
                _reader.Draw();
            }

            _subView.Draw(parentTransform);
            _tutorial.Draw(parentTransform);
        }