- Timestamp:
- Dec 22, 2008, 10:23:29 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation/src/orxonox/objects/collisionshapes/CollisionShape.cc
r2515 r2527 62 62 // Detach from parent 63 63 if (this->isInitialized() && this->parent_) 64 this->parent_-> removeChildShape(this);64 this->parent_->detach(this); 65 65 } 66 66 … … 87 87 CompoundCollisionShape* parent = dynamic_cast<CompoundCollisionShape*>(Synchronisable::getSynchronisable(this->parentID_)); 88 88 if (parent) 89 parent->a ddChildShape(this);89 parent->attach(this); 90 90 } 91 91 … … 93 93 { 94 94 if (this->parent_) 95 this->parent_->update ChildShape(this);95 this->parent_->updateAttachedShape(this); 96 96 } 97 97
Note: See TracChangeset
for help on using the changeset viewer.