Ejemplo n.º 1
0
	void Awake () {
		if(!j){
			j = this;
			DontDestroyOnLoad(gameObject.transform.parent.transform.parent.gameObject);
		}
		else {
			if (gameObject.transform.parent.gameObject != null)
				Destroy (gameObject.transform.parent.transform.parent.gameObject);
		}
	}
Ejemplo n.º 2
0
    void Awake()
    {
        if (Instance != null)
        {
            Destroy(gameObject);
        }

        else
        {
            Instance = this;
        }

        DisableTextBox();
    }
Ejemplo n.º 3
0
 void Awake()
 {
     if (!j)
     {
         j = this;
         DontDestroyOnLoad(gameObject.transform.parent.transform.parent.gameObject);
     }
     else
     {
         if (gameObject.transform.parent.gameObject != null)
         {
             Destroy(gameObject.transform.parent.transform.parent.gameObject);
         }
     }
 }
Ejemplo n.º 4
0
 RegisterAll(journal, sourcedTypes);