Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 28, 2008, 7:15:55 PM (15 years ago)
Author:
rgrieder
Message:
  • Renamed TransformSpace::Space to TransformSpace::Enum
  • Small changes and adjustments WorldEntity (Revealed while commenting…)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation/src/orxonox/objects/Scene.cc

    r2491 r2535  
    208208                it != this->physicalObjects_.end(); ++it)
    209209            {
    210                 this->physicalWorld_->removeRigidBody((*it)->getPhysicalBody());
     210                this->physicalWorld_->removeRigidBody((*it)->physicalBody_);
    211211                this->physicalObjectQueue_.insert(*it);
    212212            }
     
    243243                    it != this->physicalObjectQueue_.end(); ++it)
    244244                {
    245                     this->physicalWorld_->addRigidBody((*it)->getPhysicalBody());
     245                    this->physicalWorld_->addRigidBody((*it)->physicalBody_);
    246246                    this->physicalObjects_.insert(*it);
    247247                }
     
    330330
    331331        if (this->hasPhysics())
    332             this->physicalWorld_->removeRigidBody(object->getPhysicalBody());
     332            this->physicalWorld_->removeRigidBody(object->physicalBody_);
    333333    }
    334334
Note: See TracChangeset for help on using the changeset viewer.