Changeset 8096 in orxonox.OLD for branches/network/src/world_entities
- Timestamp:
- Jun 1, 2006, 6:36:55 PM (18 years ago)
- Location:
- branches/network/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/world_entities/playable.cc
r8055 r8096 79 79 // this->setPlayer(NULL); 80 80 // IN ITS DESTRUCTOR. 81 detachCamera(); 81 82 assert(this->currentPlayer == NULL); 82 83 } … … 281 282 */ 282 283 void Playable::detachCamera() 283 {} 284 { 285 PRINTF(0)("detach camera\n"); 286 if ( (PNode*)(State::getCameraTarget()) == this ) 287 { 288 PRINTF(0)("lookAt nullParent\n"); 289 290 State::getCameraNode()->setParentSoft(PNode::getNullParent()); 291 State::getCameraTargetNode()->setParentSoft(PNode::getNullParent()); 292 293 State::getCamera()->lookAt( PNode::getNullParent() ); 294 } 295 } 284 296 285 297 -
branches/network/src/world_entities/player.cc
r7868 r8096 81 81 return true; 82 82 } 83 84 if ( playable == NULL ) 85 this->playable = NULL; 83 86 84 87 return true;
Note: See TracChangeset
for help on using the changeset viewer.