// ***************************************************
    // Start [Monobehavior]
    // ---------------------------------------------------
	void Start()
    {
        mInstance = this;
        Hide();

        mPivotStartPos = Pivot.position;
	}
 // ***************************************************
 // OnDestroy [Monobehavior]
 // ---------------------------------------------------
 void OnDestroy()
 {
     mInstance = null;
 }