Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3502 in orxonox.OLD for orxonox/trunk/src/world_entities/skysphere.h


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.h

    r3484 r3502  
    1515/* INCLUDES */
    1616#include "p_node.h"
     17#include "world_entity.h"
    1718
    1819/* FORWARD DEFINITION */
     
    2122
    2223//! A Class to handle a SkySphere
    23 class Skysphere : public PNode
     24class Skysphere : public WorldEntity
    2425{
    2526
     
    3334
    3435  void updatePosition(Vector sphereCenter);
    35   void draw();
     36
     37  virtual void draw();
     38  virtual void tick(float time);
    3639
    3740 private:
    3841  GLUquadricObj *sphereObj; //!< A Placeholder for the SkySphere.
    3942  Material *skyMaterial;    //!< A Material for the SkySphere.
     43
    4044  Vector sphereCenter;      //!< Center of the SkySphere.
    4145  float sphereRadius;       //!< Radius of the SkySphere. This should match the frustum maximum range.
Note: See TracChangeset for help on using the changeset viewer.