Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 11, 2008, 1:54:35 PM (15 years ago)
Author:
rgrieder
Message:
  • Removed debug output
  • Fixed a bug with parentID_ in CollisionShape
  • Reactivated overwrite mechanism in ControllableEntity
  • Build fix in WE for last commit.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/physics/src/orxonox/objects/collisionshapes/CompoundCollisionShape.cc

    r2403 r2407  
    7272    }
    7373
    74     void CompoundCollisionShape::addChildShape(CollisionShape* shape)
     74    void CompoundCollisionShape::addChildShape(CollisionShape* shape, bool bWorldEntityRoot)
    7575    {
    7676        if (!shape)
     
    9797
    9898        // network synchro
    99         shape->setParent(this, this->getObjectID());
     99        if (!bWorldEntityRoot)
     100            shape->setParent(this, this->getObjectID());
    100101    }
    101102
Note: See TracChangeset for help on using the changeset viewer.