forked from teamnwah/openmw-tes3coop
30 lines
537 B
C++
30 lines
537 B
C++
#ifndef OPENCS_VIEW_LIGHTING_BRIGHT_H
|
|
#define OPENCS_VIEW_LIGHTING_BRIGHT_H
|
|
|
|
#include "lighting.hpp"
|
|
|
|
namespace Ogre
|
|
{
|
|
class Light;
|
|
}
|
|
|
|
namespace CSVRender
|
|
{
|
|
class LightingBright : public Lighting
|
|
{
|
|
osgViewer::View* mView;
|
|
|
|
public:
|
|
|
|
LightingBright();
|
|
|
|
virtual void activate (osgViewer::View* view,
|
|
const osg::Vec4f *defaultAmbient = 0);
|
|
|
|
virtual void deactivate();
|
|
|
|
virtual void setDefaultAmbient (const osg::Vec4f& colour);
|
|
};
|
|
}
|
|
|
|
#endif
|