You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
402 B
C++
23 lines
402 B
C++
#ifndef OPENCS_VIEW_LIGHTING_DAY_H
|
|
#define OPENCS_VIEW_LIGHTING_DAY_H
|
|
|
|
#include "lighting.hpp"
|
|
|
|
namespace CSVRender
|
|
{
|
|
class LightingDay : public Lighting
|
|
{
|
|
public:
|
|
|
|
LightingDay();
|
|
|
|
virtual void activate (osg::Group* rootNode);
|
|
|
|
virtual void deactivate();
|
|
|
|
virtual osg::Vec4f getAmbientColour(osg::Vec4f *defaultAmbient);
|
|
};
|
|
}
|
|
|
|
#endif
|