コード例 #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
ファイル: LTexture.cs プロジェクト: hellogithubtesting/LGame
        void MakeBatch()
        {
            if (!isBatch)
            {

                batch = new LTextureBatch(this);
                isBatch = true;
                LoadTexture();
            }
        }
コード例 #4
0
ファイル: LTexture.cs プロジェクト: hellogithubtesting/LGame
 void FreeBatch()
 {
     if (isBatch)
     {
         if (batch != null)
         {
             batch.Dispose();
             batch = null;
             isBatch = false;
         }
     }
 }