2016-02-13 05:16:39 +00:00
|
|
|
#include "CLight.hpp"
|
|
|
|
|
2016-02-13 09:02:47 +00:00
|
|
|
namespace pshag
|
2016-02-13 05:16:39 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
CLight CLight::BuildDirectional(const Zeus::CVector3f& dir, const Zeus::CColor& color)
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
CLight CLight::BuildSpot(const Zeus::CVector3f& pos, const Zeus::CVector3f& dir,
|
|
|
|
const Zeus::CColor& color, float angle)
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
CLight CLight::BuildCustom(const Zeus::CVector3f& pos, const Zeus::CVector3f& dir,
|
|
|
|
const Zeus::CColor& color, float constAtt, float linearAtt, float quadAtt,
|
|
|
|
float intensity, float, float)
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|