示例#1
0
    //****************************************************************************************************
    //
    //****************************************************************************************************

    private void Awake()
    {
        if (m_instance == null)
        {
            m_instance = this;
        }
    }
示例#2
0
    //****************************************************************************************************
    //
    //****************************************************************************************************

    private void OnDestroy()
    {
        if (m_instance == this)
        {
            m_instance = null;
        }

        Cancel();
    }