Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8590 in orxonox.OLD for branches/bsp_model/src/world_entities


Ignore:
Timestamp:
Jun 19, 2006, 10:48:45 PM (18 years ago)
Author:
patrick
Message:

bsp: md3 integrated to the resource manager

Location:
branches/bsp_model/src/world_entities
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/bsp_model/src/world_entities/npcs/generic_npc.cc

    r8516 r8590  
    127127 * @param coordinate: coordinate to go to
    128128 */
    129 bool GenericNPC::walkTo(const Vector& coordinate)
     129bool GenericNPC::walkTo(const Vector& coordinate, float time)
     130{
     131
     132  return true;
     133}
     134
     135
     136/**
     137 * walt to
     138 * @param coordinate: coordinate to go to
     139 */
     140bool GenericNPC::walkTo(float x, float y, float z, float time)
    130141{
    131142
  • branches/bsp_model/src/world_entities/world_entity.cc

    r8511 r8590  
    204204        this->buildObbTree(obbTreeDepth);
    205205    }
    206     else if(fileName.find(".md3") != std::string::npos)
     206    else /*if(fileName.find(".md3") != std::string::npos)*/
    207207    {
    208208      PRINTF(4)("fetching MD3 file: %s\n", fileName.c_str());
Note: See TracChangeset for help on using the changeset viewer.