Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 11, 2012, 6:35:15 PM (12 years ago)
Author:
jo
Message:

Camera works.

Location:
code/branches/pCuts/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pCuts/src/modules/tetris/TetrisBrick.cc

    r9082 r9083  
    5353        RegisterObject(TetrisBrick);
    5454
    55         this->shapeIndex_ = 6; //<! TODO: random number between 0 and 7
     55        this->shapeIndex_ = 3; //<! TODO: random number between 0 and 7
    5656        this->stonesPerBrick_ = 4; //<! most tetris bricks is formed by 4 stones
    5757        this->delay_ = false;
  • code/branches/pCuts/src/orxonox/worldentities/ControllableEntity.cc

    r9016 r9083  
    177177    {
    178178        if (this->cameraPositions_.size() <= 0)
    179             return 0;
     179            {orxout()<< "camareapositions_size == 0"<<endl ; return 0;}
    180180
    181181        unsigned int counter = 0;
     
    196196        if(this->camera_ != NULL && this->cameraPositions_.size() > 0)
    197197        {
     198        orxout()<< "Cameraposition is set."<<endl;
    198199            if(index >= this->cameraPositions_.size())
    199200                index = 0;
Note: See TracChangeset for help on using the changeset viewer.