Changeset 793 for code/branches/core/src/orxonox/objects
- Timestamp:
- Feb 9, 2008, 10:55:17 PM (17 years ago)
- Location:
- code/branches/core/src/orxonox/objects
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core/src/orxonox/objects/Model.cc
r790 r793 71 71 72 72 void Model::registerAllVariables(){ 73 registerVar(&meshSrc_, meshSrc_.length() + 1, network::STRING);73 // registerVar(&meshSrc_, meshSrc_.length() + 1, network::STRING); 74 74 } 75 75 } -
code/branches/core/src/orxonox/objects/WorldEntity.cc
r790 r793 163 163 void WorldEntity::registerAllVariables() 164 164 { 165 // register coordinates165 /* // register coordinates 166 166 registerVar( (void*) &(this->getPosition().x), sizeof(this->getPosition().x), network::DATA); 167 167 registerVar( (void*) &(this->getPosition().y), sizeof(this->getPosition().y), network::DATA); … … 171 171 registerVar( (void*) &(this->getOrientation().x), sizeof(this->getOrientation().x), network::DATA); 172 172 registerVar( (void*) &(this->getOrientation().y), sizeof(this->getOrientation().y), network::DATA); 173 registerVar( (void*) &(this->getOrientation().z), sizeof(this->getOrientation().z), network::DATA); 173 registerVar( (void*) &(this->getOrientation().z), sizeof(this->getOrientation().z), network::DATA);*/ 174 174 // not needed at the moment, because we don't have prediction yet 175 175 /*// register velocity_ -
code/branches/core/src/orxonox/objects/WorldEntity.h
r790 r793 17 17 namespace orxonox 18 18 { 19 class _OrxonoxExport WorldEntity : public BaseObject, public Tickable , public network::Synchronisable19 class _OrxonoxExport WorldEntity : public BaseObject, public Tickable//, public network::Synchronisable 20 20 { 21 21 public: -
code/branches/core/src/orxonox/objects/test3.cc
r790 r793 51 51 SetConfigValue(value_bool_, 1); 52 52 SetConfigValue(value_string_, "This is a test"); 53 SetConfigValue(value_constchar_, "This is another test");53 // SetConfigValue(value_constchar_, "This is another test"); 54 54 SetConfigValue(value_vector2_, Vector2(101, 202)); 55 55 SetConfigValue(value_vector3_, Vector3(13, 26, 39));
Note: See TracChangeset
for help on using the changeset viewer.