Changeset 6489 for code/branches/pickup3/src
- Timestamp:
- Mar 8, 2010, 8:09:17 AM (15 years ago)
- Location:
- code/branches/pickup3/src/orxonox/worldentities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pickup3/src/orxonox/worldentities/WorldEntity.cc
r6485 r6489 81 81 this->node_->setPosition(Vector3::ZERO); 82 82 this->node_->setOrientation(Quaternion::IDENTITY); 83 84 // Activity and visibility memory. 85 this->bActiveMem_ = true; 86 this->bVisibleMem_ = true; 83 87 84 88 … … 212 216 for (std::set<WorldEntity*>::const_iterator it = this->getAttachedObjects().begin(); it != this->getAttachedObjects().end(); it++) 213 217 { 214 (*it)->setActive(this->isActive()); 218 if(!this->isActive()) 219 { 220 (*it)->bActiveMem_ = (*it)->isActive(); 221 (*it)->setActive(this->isActive()); 222 } 223 else 224 { 225 (*it)->setActive((*it)->bActiveMem_); 226 } 215 227 } 216 228 } … … 226 238 for (std::set<WorldEntity*>::const_iterator it = this->getAttachedObjects().begin(); it != this->getAttachedObjects().end(); it++) 227 239 { 228 (*it)->setVisible(this->isVisible()); 240 if(!this->isVisible()) 241 { 242 (*it)->bVisibleMem_ = (*it)->isVisible(); 243 (*it)->setVisible(this->isVisible()); 244 } 245 else 246 { 247 (*it)->setVisible((*it)->bVisibleMem_); 248 } 229 249 } 230 250 } -
code/branches/pickup3/src/orxonox/worldentities/WorldEntity.h
r6485 r6489 235 235 std::set<WorldEntity*> children_; 236 236 bool bDeleteWithParent_; 237 238 bool bActiveMem_; 239 bool bVisibleMem_; 237 240 238 241
Note: See TracChangeset
for help on using the changeset viewer.