Program Listing for File spot_light.h

Return to documentation for file (rootex/core/renderer/spot_light.h)

#pragma once

#include "common/common.h"

struct SpotLight
{
    float attConst;
    float attLin;
    float attQuad;
    float range;
    float diffuseIntensity;
    Color diffuseColor;
    Color ambientColor;
    float spot;
    float angleRange;
};