Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9869 in orxonox.OLD for trunk/src/world_entities/skydome.cc


Ignore:
Timestamp:
Oct 3, 2006, 12:19:30 AM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: merged the new_class_id branche back to the trunk.
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/new_class_id trunk -r9683:HEAD
no conflicts… puh..

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/skydome.cc

    r9406 r9869  
    2323#include "network_game_manager.h"
    2424#include "converter.h"
    25 #include "util/loading/resource_manager.h"
     25
     26#include "debug.h"
    2627
    2728#define DTOR (PI/180.0f)
     
    3031
    3132
     33ObjectListDefinition(Skydome);
    3234
    3335/**
     
    4244void Skydome::init()
    4345{
    44   PRINTF(0)("Skydome init\n");
    45 
    46   this->setClassID(CL_SKYDOME, "Skydome");
     46  PRINTF(4)("Skydome init\n");
     47
     48  this->registerObject(this, Skydome::_objectList);
    4749  this->toList(OM_BACKGROUND);
    4850  this->toReflectionList();
     
    6163Skydome::~Skydome()
    6264{
    63   PRINTF(0)("Deleting Skydome\n");
     65  PRINTF(4)("Deleting Skydome\n");
    6466
    6567  if (glIsTexture(texture))
     
    119121  glEnd();
    120122
    121   WorldEntity::draw(); 
     123  WorldEntity::draw();
    122124
    123125  glPopMatrix();
Note: See TracChangeset for help on using the changeset viewer.