Esempio n. 1
0
 public void CreateGridFromCode()
 {
     foreach (FieldType temp in level.levelCode)
     {
         foreach (GridTemplate GT in ListGrid)
         {
             if (GT.FieldType == 0)
             {
                 //Debug.Log($"{GT} field type {GT.FieldType} is changing to {temp}");
                 GT.FieldType = temp;
                 GT.AdaptByFieldType();
                 break;
             }
         }
     }
 }