Changeset 1586 for code/branches/core3/src/orxonox/objects
- Timestamp:
- Jun 10, 2008, 3:35:50 PM (17 years ago)
- Location:
- code/branches/core3/src/orxonox/objects
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core3/src/orxonox/objects/Ambient.cc
r1505 r1586 39 39 #include "util/Convert.h" 40 40 #include "util/Math.h" 41 #include " core/Debug.h"41 #include "util/Debug.h" 42 42 #include "core/CoreIncludes.h" 43 #include "GraphicsEngine.h"44 43 #include "core/XMLPort.h" 45 44 #include "core/ConsoleCommand.h" 45 #include "GraphicsEngine.h" 46 46 47 47 namespace orxonox … … 68 68 return Synchronisable::create(); 69 69 } 70 70 71 71 void Ambient::registerAllVariables(){ 72 72 registerVar(&ambientLight_, sizeof(ColourValue), network::DATA); 73 73 74 74 } 75 75 76 76 void Ambient::loadParams(TiXmlElement* xmlElem) 77 77 { … … 94 94 { 95 95 GraphicsEngine::getSingleton().getSceneManager()->setAmbientLight(colour); 96 ambientLight_=colour; 96 ambientLight_=colour; 97 97 } 98 98 -
code/branches/core3/src/orxonox/objects/Camera.cc
r1505 r1586 42 42 #include "util/Convert.h" 43 43 #include "util/Math.h" 44 #include " core/Debug.h"44 #include "util/Debug.h" 45 45 #include "core/CoreIncludes.h" 46 46 #include "GraphicsEngine.h" -
code/branches/core3/src/orxonox/objects/Skybox.cc
r1558 r1586 37 37 #include "GraphicsEngine.h" 38 38 #include "core/CoreIncludes.h" 39 #include "core/Debug.h"40 39 #include "core/XMLPort.h" 40 #include "util/Debug.h" 41 41 42 42 namespace orxonox -
code/branches/core3/src/orxonox/objects/SpaceShip.cc
r1574 r1586 38 38 #include "util/Convert.h" 39 39 #include "util/Math.h" 40 #include "util/Debug.h" 40 41 #include "core/CoreIncludes.h" 41 42 #include "core/ConfigValueIncludes.h" 42 #include "core/Debug.h"43 #include "GraphicsEngine.h"44 43 #include "core/input/InputManager.h" 44 #include "core/XMLPort.h" 45 #include "core/ConsoleCommand.h" 45 46 #include "tools/ParticleInterface.h" 47 #include "network/Client.h" 48 #include "hud/HUD.h" 46 49 #include "RotatingProjectile.h" 47 50 #include "ParticleProjectile.h" 48 #include "core/XMLPort.h" 49 #include "core/ConsoleCommand.h" 50 #include "network/Client.h" 51 #include "hud/HUD.h" 51 #include "GraphicsEngine.h" 52 52 53 53 namespace orxonox
Note: See TracChangeset
for help on using the changeset viewer.