Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 11, 2008, 1:54:35 PM (15 years ago)
Author:
rgrieder
Message:
  • Removed debug output
  • Fixed a bug with parentID_ in CollisionShape
  • Reactivated overwrite mechanism in ControllableEntity
  • Build fix in WE for last commit.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/physics/src/orxonox/objects/worldentities/LinearEntity.cc

    r2374 r2407  
    8080    void LinearEntity::overwritePosition()
    8181    {
    82         //COUT(0) << "Setting position on client: " << this->overwrite_position_ << std::endl;
    8382        this->setPosition(this->overwrite_position_);
    8483    }
     
    8685    void LinearEntity::overwriteOrientation()
    8786    {
    88         //COUT(0) << "Setting orientation on client: " << this->overwrite_orientation_ << std::endl;
    8987        this->setOrientation(this->overwrite_orientation_);
    9088    }
     
    109107    {
    110108        if (!bContinuous)
    111         {
    112             //if (Core::isMaster())
    113             //    COUT(0) << "Setting position on server: " << this->getPosition() << std::endl;
    114109            this->overwrite_position_ = this->getPosition();
    115         }
    116110    }
    117111
     
    119113    {
    120114        if (!bContinuous)
    121         {
    122             //if (Core::isMaster())
    123             //    COUT(0) << "Setting orientation on server: " << this->getOrientation() << std::endl;
    124115            this->overwrite_orientation_ = this->getOrientation();
    125         }
    126116    }
    127117}
Note: See TracChangeset for help on using the changeset viewer.