Exemplo n.º 1
0
 void MakeBatch()
 {
     if (!isBatch)
     {
         batch   = new LTextureBatch(this);
         isBatch = true;
         LoadTexture();
     }
 }
Exemplo n.º 2
0
 void FreeBatch()
 {
     if (isBatch)
     {
         if (batch != null)
         {
             batch.Dispose();
             batch   = null;
             isBatch = false;
         }
     }
 }
Exemplo n.º 3
0
        void MakeBatch()
        {
            if (!isBatch)
            {

                batch = new LTextureBatch(this);
                isBatch = true;
                LoadTexture();
            }
        }
Exemplo n.º 4
0
 void FreeBatch()
 {
     if (isBatch)
     {
         if (batch != null)
         {
             batch.Dispose();
             batch = null;
             isBatch = false;
         }
     }
 }