Exemple #1
0
    void Awake()
    {
        if (!m_oInstance)
        {
            m_oInstance = this;
        }
        else
        {
            Debug.DebugBreak();          // There should not be more than one of this in the scene!
        }
        m_lCheck     = new List <DFD_Grid>();
        m_lSelection = new List <DFD_Grid>();

        m_anTextureIndex = new int[m_GridTextures.Length];
        for (int i = 0; i < m_anTextureIndex.Length; ++i)
        {
            m_anTextureIndex[i] = i;
        }
    }
Exemple #2
0
    void OnDestroy()
    {
        DFD_Grid.m_bGridActive = false;

        m_oInstance = null;
    }
Exemple #3
0
    void Awake()
    {
        if ( !m_oInstance )	m_oInstance = this;
        else Debug.DebugBreak(); // There should not be more than one of this in the scene!

        m_lCheck = new List<DFD_Grid>();
        m_lSelection = new List<DFD_Grid>();

        m_anTextureIndex = new int[m_GridTextures.Length];
        for ( int i = 0; i < m_anTextureIndex.Length; ++i )
            m_anTextureIndex[i] = i;
    }
Exemple #4
0
    void OnDestroy()
    {
        DFD_Grid.m_bGridActive = false;

        m_oInstance = null;
    }