Changeset 9638 for code/branches/core6/src/orxonox/graphics
- Timestamp:
- Aug 11, 2013, 5:52:29 PM (11 years ago)
- Location:
- code/branches/core6/src/orxonox/graphics
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/orxonox/graphics/AnimatedModel.cc
r9629 r9638 39 39 namespace orxonox 40 40 { 41 CreateFactory(AnimatedModel);41 RegisterClass(AnimatedModel); 42 42 43 43 AnimatedModel::AnimatedModel(Context* context) : Model(context) -
code/branches/core6/src/orxonox/graphics/Backlight.cc
r9629 r9638 45 45 namespace orxonox 46 46 { 47 CreateFactory(Backlight);47 RegisterClass(Backlight); 48 48 49 49 Backlight::Backlight(Context* context) : FadingBillboard(context) -
code/branches/core6/src/orxonox/graphics/Billboard.cc
r9629 r9638 38 38 namespace orxonox 39 39 { 40 CreateFactory(Billboard);40 RegisterClass(Billboard); 41 41 42 42 Billboard::Billboard(Context* context) : StaticEntity(context) -
code/branches/core6/src/orxonox/graphics/BlinkingBillboard.cc
r9629 r9638 35 35 namespace orxonox 36 36 { 37 CreateFactory(BlinkingBillboard);37 RegisterClass(BlinkingBillboard); 38 38 39 39 BlinkingBillboard::BlinkingBillboard(Context* context) : Billboard(context) -
code/branches/core6/src/orxonox/graphics/Camera.cc
r9629 r9638 46 46 namespace orxonox 47 47 { 48 CreateFactory(Camera);48 RegisterClass(Camera); 49 49 50 50 Camera::Camera(Context* context) : StaticEntity(context) -
code/branches/core6/src/orxonox/graphics/FadingBillboard.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(FadingBillboard);36 RegisterClass(FadingBillboard); 37 37 38 38 FadingBillboard::FadingBillboard(Context* context) : Billboard(context) -
code/branches/core6/src/orxonox/graphics/GlobalShader.cc
r9629 r9638 36 36 namespace orxonox 37 37 { 38 CreateFactory(GlobalShader);38 RegisterClass(GlobalShader); 39 39 40 40 GlobalShader::GlobalShader(Context* context) : BaseObject(context), Synchronisable(context) -
code/branches/core6/src/orxonox/graphics/Light.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(Light);44 RegisterClass(Light); 45 45 46 46 // Be sure we don't do bad conversions -
code/branches/core6/src/orxonox/graphics/MeshLodInformation.cc
r9629 r9638 38 38 namespace orxonox 39 39 { 40 CreateFactory(MeshLodInformation);40 RegisterClass(MeshLodInformation); 41 41 42 42 MeshLodInformation::MeshLodInformation(Context* context) -
code/branches/core6/src/orxonox/graphics/Model.cc
r9629 r9638 41 41 namespace orxonox 42 42 { 43 CreateFactory(Model);43 RegisterClass(Model); 44 44 45 45 Model::Model(Context* context) : -
code/branches/core6/src/orxonox/graphics/ParticleEmitter.cc
r9629 r9638 43 43 namespace orxonox 44 44 { 45 CreateFactory(ParticleEmitter);45 RegisterClass(ParticleEmitter); 46 46 47 47 ParticleEmitter::ParticleEmitter(Context* context) : StaticEntity(context) -
code/branches/core6/src/orxonox/graphics/ParticleSpawner.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(ParticleSpawner);39 RegisterClass(ParticleSpawner); 40 40 41 41 ParticleSpawner::ParticleSpawner(Context* context) : ParticleEmitter(context)
Note: See TracChangeset
for help on using the changeset viewer.