Ejemplo n.º 1
0
 private void ScanForMixamo()
 {
     foreach (string pathsWithExtension in ValidatorData.GetPathsWithExtensions(new string[] { ".fbx" }, null))
     {
         if (!ValidatorUtils.IsMixamoFbx(pathsWithExtension))
         {
             continue;
         }
         this.mixamoCheck.AddPath(pathsWithExtension);
     }
 }
Ejemplo n.º 2
0
        private void ScanForMixamo()
        {
            List <string> pathsWithExtensions = ValidatorData.GetPathsWithExtensions(new string[]
            {
                ".fbx"
            }, null);

            foreach (string text in pathsWithExtensions)
            {
                bool flag = ValidatorUtils.IsMixamoFbx(text);
                if (flag)
                {
                    this.mixamoCheck.AddPath(text);
                }
            }
        }