Ejemplo n.º 1
0
    /// <summary>
    ///
    /// </summary>
    private void Awake()
    {
        if (instance != null && instance != this)
        {
            Destroy(this.gameObject);
        }
        else
        {
            instance = this;
        }

        m_requestManager = GetComponent <PathRequestManagerMB>();
    }
Ejemplo n.º 2
0
 void Awake()
 {
     instance    = this;
     pathfinding = GetComponent <PathFinderMB>();
 }