示例#1
0
 void MakeBatch()
 {
     if (!isBatch)
     {
         batch   = new LTextureBatch(this);
         isBatch = true;
         LoadTexture();
     }
 }
示例#2
0
文件: LTexture.cs 项目: vb0067/LGame
 void FreeBatch()
 {
     if (isBatch)
     {
         if (batch != null)
         {
             batch.Dispose();
             batch   = null;
             isBatch = false;
         }
     }
 }
示例#3
0
        void MakeBatch()
        {
            if (!isBatch)
            {

                batch = new LTextureBatch(this);
                isBatch = true;
                LoadTexture();
            }
        }
示例#4
0
 void FreeBatch()
 {
     if (isBatch)
     {
         if (batch != null)
         {
             batch.Dispose();
             batch = null;
             isBatch = false;
         }
     }
 }