Ejemplo n.º 1
0
    private void Awake()
    {
        if (Instance != null && Instance != this)
        {
            GameObject.DestroyImmediate(gameObject);
            return;
        }

        Instance = this;
    }
Ejemplo n.º 2
0
    void Start()
    {
        m_Image = this.GetComponent <Image>();

        if (Instance != null && Instance != this)
        {
            GameObject.DestroyImmediate(gameObject);
            return;
        }

        Instance = this;
    }
Ejemplo n.º 3
0
 private void Start()
 {
     fadeBlack = GetComponent <FadeBlack>();
 }