Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3396 in orxonox.OLD for orxonox/trunk/src/importer/material.cc


Ignore:
Timestamp:
Feb 6, 2005, 3:58:40 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: splitted obj-loader out of the model-class: this will enable different kinds of Filetypes to be included with the importer.
Althought there is a name-field error, the Model gets loaded and unloaded as good as previously

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/importer/material.cc

    r3365 r3396  
    112112  while (searcher != NULL)
    113113    {
    114       PRINTF(2)(".");
     114      PRINT(2)(".");
    115115      if (!strcmp (searcher->getName(), mtlName))
    116116        {
    117           PRINTF(2)("found.\n");
     117          PRINT(2)("found.\n");
    118118          return searcher;
    119119        }
    120120      searcher = searcher->nextMat;
    121121    }
    122   PRINTF(2)("not found\n");
     122  PRINT(2)("not found\n");
    123123  return NULL;
    124124}
Note: See TracChangeset for help on using the changeset viewer.