Esempio n. 1
0
 void StopDot()
 {
     if (mDotManager != null)
     {
         mDotManager.Dispose();
         mDotManager = null;
     }
 }
Esempio n. 2
0
        void StartDot()
        {
            if (mDotManager != null)
            {
                StopDot();
            }

            mDotManager = new glGreenDot();
        }