public virtual void SetupTutorialPanel()
        {
            tutorialPanel.Show();
            tutorialPanel.ToggleHand(showHand);
            if (showHand)
            {
                tutorialPanel.SetHandTransform(handLocalPosition, handLocalRotation, handLocalScale);
            }
            if (showText)
            {
                tutorialPanel.SetTextTransform(textLocalPosition, textLocalRotation, textSize);
            }
            tutorialPanel.SetText(text, textColor, fontSize, alignment);

            SetupBackgroundMask();
        }