mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 04:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			474 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			474 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef OPENCS_VIEW_LIGHTING_BRIGHT_H
 | 
						|
#define OPENCS_VIEW_LIGHTING_BRIGHT_H
 | 
						|
 | 
						|
#include "lighting.hpp"
 | 
						|
 | 
						|
#include <osg/Vec4f>
 | 
						|
 | 
						|
namespace osg
 | 
						|
{
 | 
						|
    class Group;
 | 
						|
}
 | 
						|
 | 
						|
namespace CSVRender
 | 
						|
{
 | 
						|
    class LightingBright : public Lighting
 | 
						|
    {
 | 
						|
    public:
 | 
						|
        LightingBright();
 | 
						|
 | 
						|
        void activate(osg::Group* rootNode, bool /*isExterior*/) override;
 | 
						|
 | 
						|
        void deactivate() override;
 | 
						|
 | 
						|
        osg::Vec4f getAmbientColour(osg::Vec4f* defaultAmbient) override;
 | 
						|
    };
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |