1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-04 21:40:03 +00:00
OpenMW/apps/opencs/view/render/lightingday.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
462 B
C++
Raw Normal View History

2014-03-26 17:47:56 +01:00
#ifndef OPENCS_VIEW_LIGHTING_DAY_H
#define OPENCS_VIEW_LIGHTING_DAY_H
#include "lighting.hpp"
2022-10-10 13:41:36 +02:00
#include <osg/Vec4f>
2022-10-19 19:02:00 +02:00
namespace osg
{
class Group;
}
2014-03-26 17:47:56 +01:00
namespace CSVRender
{
class LightingDay : public Lighting
{
public:
LightingDay();
void activate(osg::Group* rootNode, bool /*isExterior*/) override;
void deactivate() override;
2014-03-26 17:47:56 +01:00
osg::Vec4f getAmbientColour(osg::Vec4f* defaultAmbient) override;
2014-03-26 17:47:56 +01:00
};
}
#endif