Changeset 10398 in orxonox.OLD for trunk/src/world_entities/cameraman.cc
- Timestamp:
- Jan 26, 2007, 10:33:28 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/cameraman.cc
r10396 r10398 69 69 void CameraMan::createCam(const TiXmlElement* root) 70 70 { 71 printf("create Camera\n");72 71 //Camera* newCamera=new Camera(root); 73 72 this->cameras.push_back(new Camera(root)); … … 95 94 BaseObject* object = ObjectListBase::getBaseObject("Camera", camName); 96 95 97 printf("Setting Camera to: %s \n", camName.c_str());98 96 if(object != NULL) 99 97 { … … 108 106 this->fadeToBlack->setParent(this->currentCam); 109 107 this->fadeToBlack->setRelCoor(3., 0., 0.); 110 111 } 112 108 return; 109 } 110 printf("ERROR CAMERAMANAGER: Couldn't set camera : %s \n", camName.c_str()); 111 113 112 } 114 113
Note: See TracChangeset
for help on using the changeset viewer.