Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 17, 2007, 11:34:02 AM (19 years ago)
Author:
patrick
Message:

mount point loading is working

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/mount_points/src/world_entities/world_entity.cc

    r10243 r10248  
    294294  for( ; it != mpList.end(); it++)
    295295  {
     296    // create the mount points world entity
    296297    MountPoint* mp = new MountPoint( (*it).up, (*it).forward, (*it).center, (*it).name);
     298    // parent it to this WE
     299    mp->setParent( this);
     300    // now add to the right group
     301    mp->toList( (OM_LIST)(this->getOMListNumber()+1));
    297302    // now get the number and add the mount point to the slot
    298303    std::string nrStr = (*it).name.substr(3, 2);
Note: See TracChangeset for help on using the changeset viewer.