Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3439 in orxonox.OLD


Ignore:
Timestamp:
Mar 1, 2005, 8:38:20 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: evil-color-deflator (and a small patch, so debug.h does what it should)

Location:
orxonox/trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/debug.h

    r3433 r3439  
    2727#define INFORMATION     3
    2828#define DEBUGING        4
     29
     30#if HAVE_CONFIG_H
     31#include <config.h>
     32#endif
    2933
    3034#include <stdio.h>
  • orxonox/trunk/src/world.cc

    r3438 r3439  
    878878      this->localCamera->timeSlice(dt);
    879879      this->trackManager->tick(dt);
     880      this->light->setPosition(10*cos((double)currentFrame/1000),10, 10*sin((double)currentFrame/1000));
     881      this->light->setDiffuseColor(.5-.5*cos((double)currentFrame/1000), .5+sin((double)currentFrame/1000), .5+sin((double)currentFrame/1000));
     882      this->light->setSpecularColor(.5-.5*sin((double)currentFrame/1000), .5+sin((double)currentFrame/1000), .5+cos((double)currentFrame/1000));
    880883    }
    881884  this->lastFrame = currentFrame;
Note: See TracChangeset for help on using the changeset viewer.