Ejemplo n.º 1
0
 private void OnTutorialOpen(TutorialOpen T)
 {
     if (T.Tutorial == gameObject)
     {
         StartCoroutine(Open());
     }
 }
Ejemplo n.º 2
0
    private void Awake()
    {
        if (instance == null)
        {
            instance = this;
        }
        else if (instance != this)
        {
            Destroy(gameObject);
        }

        scriptTuto = ScriptTutoObject.GetComponent <PauseTuto>();
    }
Ejemplo n.º 3
0
 private void OnTutorialOpen(TutorialOpen T)
 {
     ShowTutorial = true;
     Freeze();
 }