예제 #1
0
 public bool CompareBump(RenderItem other)
 {
     if (material.baseTexture == other.material.baseTexture)
     {
         if (material.Bumpmap == other.material.Bumpmap)
         {
             if (material.bumpmapTexture == other.material.bumpmapTexture)
             {
                 return true;
             }
         }
     }
     return false;
 }
예제 #2
0
 public bool CompareBase(RenderItem other)
 {
     if (material.baseTexture == other.material.baseTexture)
     {
         return true;
     }
     return false;
 }