Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 1, 2010, 4:20:47 PM (14 years ago)
Author:
gionc
Message:

First version of SkyboxGenerator

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/skybox2/src/modules/designtools/SkyboxGenerator.h

    r6619 r6673  
    3030#include "core/OrxonoxClass.h"
    3131#include "util/Singleton.h"
     32#include "tools/interfaces/Tickable.h"
    3233 
    3334 
    3435namespace orxonox
    3536{
    36     class SkyboxGenerator : public virtual OrxonoxClass, public Singleton<SkyboxGenerator>
     37    class SkyboxGenerator : public virtual OrxonoxClass, public Singleton<SkyboxGenerator>, public Tickable
    3738    {
    3839        friend class Singleton<SkyboxGenerator>;
     
    4142            SkyboxGenerator();
    4243            virtual ~SkyboxGenerator();
    43             void createSkybox( );
     44            static void createSkybox( );
    4445            void setConfigValues( );
     46            void tick(float dt);
    4547
    4648        private:
    4749            static SkyboxGenerator* singletonPtr_s;
    48             std::string skyboxPrefix_;           
     50            std::string skyboxPrefix_;
     51            bool takeScreenshot_;
     52            int iterateOverDirections_;       
    4953       
    5054    };
Note: See TracChangeset for help on using the changeset viewer.