- Timestamp:
- Oct 29, 2008, 11:37:19 AM (16 years ago)
- Location:
- code/branches/objecthierarchy/src/orxonox/objects/worldentities
- Files:
-
- 6 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/orxonox/objects/worldentities/Backlight.h
r2027 r2044 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include " WorldEntity.h"34 #include "PositionableEntity.h" 35 35 #include "tools/BillboardSet.h" 36 36 37 37 namespace orxonox 38 38 { 39 class _OrxonoxExport Backlight : public WorldEntity39 class _OrxonoxExport Backlight : public PositionableEntity 40 40 { 41 41 public: -
code/branches/objecthierarchy/src/orxonox/objects/worldentities/Model.h
r2040 r2044 47 47 virtual void changedVisibility(); 48 48 49 inline const Mesh& getMesh() const 50 { return this->mesh_; } 51 49 52 inline void setMeshSource(const std::string& meshname) 50 53 { this->meshSrc_ = meshname; this->changedMesh(); } 51 54 inline const std::string& getMeshSource() const 52 55 { return this->meshSrc_; } 53 inline const Mesh& getMesh() const54 { return this->mesh_; }55 56 56 57 inline void setCastShadows(bool bCastShadows) -
code/branches/objecthierarchy/src/orxonox/objects/worldentities/ParticleSpawner.h
r2027 r2044 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include " WorldEntity.h"34 #include "PositionableEntity.h" 35 35 #include "tools/Timer.h" 36 36 37 37 namespace orxonox 38 38 { 39 class _OrxonoxExport ParticleSpawner : public WorldEntity39 class _OrxonoxExport ParticleSpawner : public PositionableEntity 40 40 { 41 41 public:
Note: See TracChangeset
for help on using the changeset viewer.