mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
32 lines
594 B
C++
32 lines
594 B
C++
#ifndef OPENCS_VIEW_LIGHTING_DAY_H
|
|
#define OPENCS_VIEW_LIGHTING_DAY_H
|
|
|
|
#include "lighting.hpp"
|
|
|
|
namespace Ogre
|
|
{
|
|
class Light;
|
|
}
|
|
|
|
namespace CSVRender
|
|
{
|
|
class LightingDay : public Lighting
|
|
{
|
|
Ogre::SceneManager *mSceneManager;
|
|
Ogre::Light *mLight;
|
|
|
|
public:
|
|
|
|
LightingDay();
|
|
|
|
virtual void activate (Ogre::SceneManager *sceneManager,
|
|
const Ogre::ColourValue *defaultAmbient = 0);
|
|
|
|
virtual void deactivate();
|
|
|
|
virtual void setDefaultAmbient (const Ogre::ColourValue& colour);
|
|
};
|
|
}
|
|
|
|
#endif
|