Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 11, 2005, 6:22:15 PM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: changed Skysphere to WorldEntity

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/world_entities/skysphere.cc

    r3484 r3502  
    106106void Skysphere::updatePosition(Vector sphereCenter)
    107107{
    108   this->sphereCenter = sphereCenter;
     108  //this->sphereCenter = sphereCenter; /* absolete */
     109  this->absCoordinate = sphereCenter;
    109110}
    110111
     112
     113void Skysphere::tick(float time)
     114{}
    111115
    112116/**
     
    120124  skyMaterial->select();
    121125  glPushMatrix();
    122   glTranslatef(this->sphereCenter.x,this->sphereCenter.y,this->sphereCenter.z);
     126  //glTranslatef(this->sphereCenter.x,this->sphereCenter.y,this->sphereCenter.z); /* absolete */
    123127 
     128  glTranslatef(this->absCoordinate.x,
     129               this->absCoordinate.y,
     130               this->absCoordinate.z);
     131   
     132
    124133  glRotatef(-30, 1, 0, 0);
    125134  glRotatef(95.0f, 0.0f, 0.0f, 1.0f);
Note: See TracChangeset for help on using the changeset viewer.