Changeset 5695 for code/trunk/src/orxonox/tools
- Timestamp:
- Aug 30, 2009, 2:22:00 AM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 3 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/resource2 (added) merged: 3373-3374,5594,5597,5610-5611,5614,5624,5641,5644-5646,5650-5664,5667-5672,5682-5684,5688-5691,5694
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/tools/CMakeLists.txt
r5693 r5695 5 5 Mesh.cc 6 6 ParticleInterface.cc 7 ResourceCollection.cc 8 ResourceLocation.cc 7 9 Shader.cc 8 10 TextureGenerator.cc -
code/trunk/src/orxonox/tools/Mesh.cc
r3280 r5695 71 71 this->entity_->setCastShadows(this->bCastShadows_); 72 72 73 #if OGRE_VERSION < 0x010600 73 74 this->entity_->setNormaliseNormals(true); 74 75 /* … … 79 80 I don't know exactly what this means, but I put this here if there will be problems with shaders. 80 81 */ 82 #endif 81 83 } 82 84 catch (...) -
code/trunk/src/orxonox/tools/ResourceCollection.h
r5694 r5695 30 30 #define _ResourceCollection_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "tools/ToolsPrereqs.h" 33 33 34 34 #include <string> … … 40 40 class ResourceLocation; 41 41 42 class _ OrxonoxExport ResourceCollection : public BaseObject42 class _ToolsExport ResourceCollection : public BaseObject 43 43 { 44 44 public: -
code/trunk/src/orxonox/tools/ResourceLocation.h
r5694 r5695 30 30 #define _ResourceLocation_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "tools/ToolsPrereqs.h" 33 33 34 34 #include <string> … … 37 37 namespace orxonox 38 38 { 39 class _ OrxonoxExport ResourceLocation : public BaseObject39 class _ToolsExport ResourceLocation : public BaseObject 40 40 { 41 41 // for load/unload
Note: See TracChangeset
for help on using the changeset viewer.