- Timestamp:
- Dec 12, 2008, 12:05:03 PM (16 years ago)
- Location:
- code/branches/presentation
- Files:
-
- 12 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation
- Property svn:mergeinfo changed
/code/branches/lodfinal (added) merged: 2372,2380,2388,2394-2395,2402,2411
- Property svn:mergeinfo changed
-
code/branches/presentation/src/orxonox/objects/worldentities/Backlight.cc
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/Backlight.h
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/CMakeLists.txt
r2131 r2420 13 13 ParticleEmitter.cc 14 14 ParticleSpawner.cc 15 Planet.cc 15 16 # Backlight.cc 16 17 ) -
code/branches/presentation/src/orxonox/objects/worldentities/Camera.cc
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/Camera.h
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/ParticleSpawner.cc
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/ParticleSpawner.h
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/Planet.cc
r2412 r2420 77 77 { 78 78 Real distance = this->getPosition().distance( activeCamera->getWorldPosition() ); 79 COUT(2) << distance << std::endl;79 // COUT(2) << distance << std::endl; 80 80 Real planetRadius = this->getScale(); 81 81 … … 119 119 void Planet::changedMesh() 120 120 { 121 COUT(0) << "changedMesh callback -===================" << endl;122 121 if (this->mesh_.getEntity()) 123 122 this->getNode()->detachObject(this->mesh_.getEntity()); … … 158 157 159 158 void Planet::registerVariables(){ 160 REGISTERSTRING(this->atmosphere_, direction::toclient);161 REGISTERSTRING(this->meshSrc_, direction::toclient, new NetworkCallback<Planet>(this, &Planet::changedMesh));162 REGISTERDATA(this->bCastShadows_, direction::toclient, new NetworkCallback<Planet>(this, &Planet::changedShadows));163 REGISTERDATA(this->atmosphereSize, direction::toclient);164 REGISTERDATA(this->imageSize, direction::toclient);159 registerVariable(this->atmosphere_, variableDirection::toclient); 160 registerVariable(this->meshSrc_, variableDirection::toclient, new NetworkCallback<Planet>(this, &Planet::changedMesh)); 161 registerVariable(this->bCastShadows_, variableDirection::toclient, new NetworkCallback<Planet>(this, &Planet::changedShadows)); 162 registerVariable(this->atmosphereSize, variableDirection::toclient); 163 registerVariable(this->imageSize, variableDirection::toclient); 165 164 } 166 165 -
code/branches/presentation/src/orxonox/objects/worldentities/triggers/DistanceTrigger.cc
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/triggers/DistanceTrigger.h
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/triggers/Trigger.cc
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/presentation/src/orxonox/objects/worldentities/triggers/Trigger.h
- Property svn:mergeinfo changed (with no actual effect on merging)
Note: See TracChangeset
for help on using the changeset viewer.